Skip to content

Commit 494ac9b

Browse files
committed
bump pyproject version
1 parent 102be7d commit 494ac9b

File tree

4 files changed

+4
-18
lines changed

4 files changed

+4
-18
lines changed

examples/mistral/agents/async_conversation_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from mistralai.extra.run.context import RunContext
77
from mistralai.types import BaseModel
88

9-
MODEL = "mistral-medium-latest"
9+
MODEL = "mistral-medium-2505"
1010

1111

1212
def math_question_generator(question_num: int):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mistralai"
3-
version = "1.11.1"
3+
version = "1.12.0"
44
description = "Python Client SDK for the Mistral AI API."
55
authors = [{ name = "Mistral" }]
66
requires-python = ">=3.10"

scripts/run_examples.sh

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,8 @@ RETRY_COUNT=3
66
# Parse command line arguments
77
while [[ $# -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-
5743
failed=0
5844

5945
echo "Skipping scripts"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)