We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 747341e commit cd381caCopy full SHA for cd381ca
scripts/run_examples.sh
@@ -49,6 +49,7 @@ if [ "$NO_EXTRA_DEP" = true ]; then
49
"examples/mistral/agents/async_conversation_run_mcp_remote.py"
50
"examples/mistral/agents/async_conversation_run_stream.py"
51
"examples/mistral/agents/async_conversation_run.py"
52
+ "examples/mistral/agents/async_multi_turn_conversation"
53
)
54
fi
55
@@ -64,8 +65,8 @@ run_test_with_retries() {
64
65
echo "Running $file (attempt $attempt/$RETRY_COUNT)"
66
67
# Run the script and capture both exit status and error output
- local current_output=$(python3 "$file" 2>&1)
68
- local exit_code=$?
+ current_output=$(python3 "$file" 2>&1)
69
+ exit_code=$?
70
71
if [ $exit_code -eq 0 ]; then
72
echo "Success"
0 commit comments