File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11[project ]
22name = " mistralai"
3- version = " 1.11.1 "
3+ version = " 1.12.0 "
44description = " Python Client SDK for the Mistral AI API."
55authors = [{ name = " Mistral" }]
66requires-python = " >=3.10"
Original file line number Diff line number Diff line change @@ -6,12 +6,8 @@ RETRY_COUNT=3
66# Parse command line arguments
77while [[ $# -gt 0 ]]; do
88 case $1 in
9- --no-extra-dep)
10- NO_EXTRA_DEP=true
11- shift
12- ;;
139 --retry-count)
14- RETRY_COUNT=" $2 "
10+ RETRY_COUNT=" $1 "
1511 shift 2
1612 ;;
1713 --help)
@@ -44,16 +40,6 @@ exclude_files=(
4440 " examples/mistral/audio/async_realtime_transcription_stream.py"
4541)
4642
47- # Check if the no-extra-dep flag is set
48- if [ " $NO_EXTRA_DEP " = true ]; then
49- # Add more files to the exclude list
50- exclude_files+=(
51- " examples/mistral/agents/async_conversation_run_stream.py"
52- " examples/mistral/agents/async_conversation_run.py"
53- " examples/mistral/agents/async_multi_turn_conversation.py"
54- )
55- fi
56-
5743failed=0
5844
5945echo " Skipping scripts"
You can’t perform that action at this time.
0 commit comments