mistralai 1.9.11__py3-none-any.whl → 1.10.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mistralai/_hooks/registration.py +5 -0
- mistralai/_hooks/tracing.py +50 -0
- mistralai/_version.py +2 -2
- mistralai/accesses.py +8 -8
- mistralai/agents.py +29 -17
- mistralai/chat.py +41 -29
- mistralai/conversations.py +294 -62
- mistralai/documents.py +19 -3
- mistralai/embeddings.py +6 -6
- mistralai/extra/observability/__init__.py +15 -0
- mistralai/extra/observability/otel.py +393 -0
- mistralai/extra/run/tools.py +28 -16
- mistralai/files.py +6 -0
- mistralai/fim.py +17 -5
- mistralai/mistral_agents.py +229 -1
- mistralai/mistral_jobs.py +10 -10
- mistralai/models/__init__.py +69 -2
- mistralai/models/agent.py +15 -2
- mistralai/models/agentconversation.py +11 -3
- mistralai/models/agentcreationrequest.py +6 -2
- mistralai/models/agents_api_v1_agents_deleteop.py +16 -0
- mistralai/models/agents_api_v1_agents_getop.py +40 -3
- mistralai/models/agents_api_v1_agents_listop.py +72 -2
- mistralai/models/agents_api_v1_conversations_deleteop.py +18 -0
- mistralai/models/agents_api_v1_conversations_listop.py +39 -2
- mistralai/models/agentscompletionrequest.py +21 -6
- mistralai/models/agentscompletionstreamrequest.py +21 -6
- mistralai/models/agentupdaterequest.py +18 -2
- mistralai/models/audiotranscriptionrequest.py +2 -0
- mistralai/models/batchjobin.py +10 -0
- mistralai/models/chatcompletionrequest.py +22 -5
- mistralai/models/chatcompletionstreamrequest.py +22 -5
- mistralai/models/conversationrequest.py +15 -4
- mistralai/models/conversationrestartrequest.py +50 -2
- mistralai/models/conversationrestartstreamrequest.py +50 -2
- mistralai/models/conversationstreamrequest.py +15 -4
- mistralai/models/documentout.py +26 -10
- mistralai/models/documentupdatein.py +24 -3
- mistralai/models/embeddingrequest.py +8 -8
- mistralai/models/files_api_routes_list_filesop.py +7 -0
- mistralai/models/fimcompletionrequest.py +8 -9
- mistralai/models/fimcompletionstreamrequest.py +8 -9
- mistralai/models/libraries_documents_list_v1op.py +15 -2
- mistralai/models/libraryout.py +10 -7
- mistralai/models/listfilesout.py +35 -4
- mistralai/models/modelcapabilities.py +13 -4
- mistralai/models/modelconversation.py +8 -2
- mistralai/models/ocrpageobject.py +26 -5
- mistralai/models/ocrrequest.py +17 -1
- mistralai/models/ocrtableobject.py +31 -0
- mistralai/models/prediction.py +4 -0
- mistralai/models/requestsource.py +7 -0
- mistralai/models/responseformat.py +4 -2
- mistralai/models/responseformats.py +0 -1
- mistralai/models/sharingdelete.py +36 -5
- mistralai/models/sharingin.py +36 -5
- mistralai/models/sharingout.py +3 -3
- mistralai/models/toolexecutiondeltaevent.py +13 -4
- mistralai/models/toolexecutiondoneevent.py +13 -4
- mistralai/models/toolexecutionentry.py +9 -4
- mistralai/models/toolexecutionstartedevent.py +13 -4
- mistralai/models_.py +2 -14
- mistralai/ocr.py +18 -0
- mistralai/transcriptions.py +4 -4
- {mistralai-1.9.11.dist-info → mistralai-1.10.0.dist-info}/METADATA +30 -12
- {mistralai-1.9.11.dist-info → mistralai-1.10.0.dist-info}/RECORD +68 -61
- {mistralai-1.9.11.dist-info → mistralai-1.10.0.dist-info}/WHEEL +0 -0
- {mistralai-1.9.11.dist-info → mistralai-1.10.0.dist-info}/licenses/LICENSE +0 -0
mistralai/ocr.py
CHANGED
|
@@ -28,6 +28,9 @@ class Ocr(BaseSDK):
|
|
|
28
28
|
document_annotation_format: OptionalNullable[
|
|
29
29
|
Union[models.ResponseFormat, models.ResponseFormatTypedDict]
|
|
30
30
|
] = UNSET,
|
|
31
|
+
table_format: OptionalNullable[models.TableFormat] = UNSET,
|
|
32
|
+
extract_header: Optional[bool] = None,
|
|
33
|
+
extract_footer: Optional[bool] = None,
|
|
31
34
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
32
35
|
server_url: Optional[str] = None,
|
|
33
36
|
timeout_ms: Optional[int] = None,
|
|
@@ -44,6 +47,9 @@ class Ocr(BaseSDK):
|
|
|
44
47
|
:param image_min_size: Minimum height and width of image to extract
|
|
45
48
|
:param bbox_annotation_format: Structured output class for extracting useful information from each extracted bounding box / image from document. Only json_schema is valid for this field
|
|
46
49
|
:param document_annotation_format: Structured output class for extracting useful information from the entire document. Only json_schema is valid for this field
|
|
50
|
+
:param table_format:
|
|
51
|
+
:param extract_header:
|
|
52
|
+
:param extract_footer:
|
|
47
53
|
:param retries: Override the default retry configuration for this method
|
|
48
54
|
:param server_url: Override the default server URL for this method
|
|
49
55
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -73,6 +79,9 @@ class Ocr(BaseSDK):
|
|
|
73
79
|
document_annotation_format=utils.get_pydantic_model(
|
|
74
80
|
document_annotation_format, OptionalNullable[models.ResponseFormat]
|
|
75
81
|
),
|
|
82
|
+
table_format=table_format,
|
|
83
|
+
extract_header=extract_header,
|
|
84
|
+
extract_footer=extract_footer,
|
|
76
85
|
)
|
|
77
86
|
|
|
78
87
|
req = self._build_request(
|
|
@@ -150,6 +159,9 @@ class Ocr(BaseSDK):
|
|
|
150
159
|
document_annotation_format: OptionalNullable[
|
|
151
160
|
Union[models.ResponseFormat, models.ResponseFormatTypedDict]
|
|
152
161
|
] = UNSET,
|
|
162
|
+
table_format: OptionalNullable[models.TableFormat] = UNSET,
|
|
163
|
+
extract_header: Optional[bool] = None,
|
|
164
|
+
extract_footer: Optional[bool] = None,
|
|
153
165
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
154
166
|
server_url: Optional[str] = None,
|
|
155
167
|
timeout_ms: Optional[int] = None,
|
|
@@ -166,6 +178,9 @@ class Ocr(BaseSDK):
|
|
|
166
178
|
:param image_min_size: Minimum height and width of image to extract
|
|
167
179
|
:param bbox_annotation_format: Structured output class for extracting useful information from each extracted bounding box / image from document. Only json_schema is valid for this field
|
|
168
180
|
:param document_annotation_format: Structured output class for extracting useful information from the entire document. Only json_schema is valid for this field
|
|
181
|
+
:param table_format:
|
|
182
|
+
:param extract_header:
|
|
183
|
+
:param extract_footer:
|
|
169
184
|
:param retries: Override the default retry configuration for this method
|
|
170
185
|
:param server_url: Override the default server URL for this method
|
|
171
186
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -195,6 +210,9 @@ class Ocr(BaseSDK):
|
|
|
195
210
|
document_annotation_format=utils.get_pydantic_model(
|
|
196
211
|
document_annotation_format, OptionalNullable[models.ResponseFormat]
|
|
197
212
|
),
|
|
213
|
+
table_format=table_format,
|
|
214
|
+
extract_header=extract_header,
|
|
215
|
+
extract_footer=extract_footer,
|
|
198
216
|
)
|
|
199
217
|
|
|
200
218
|
req = self._build_request_async(
|
mistralai/transcriptions.py
CHANGED
|
@@ -29,7 +29,7 @@ class Transcriptions(BaseSDK):
|
|
|
29
29
|
) -> models.TranscriptionResponse:
|
|
30
30
|
r"""Create Transcription
|
|
31
31
|
|
|
32
|
-
:param model:
|
|
32
|
+
:param model: ID of the model to be used.
|
|
33
33
|
:param file:
|
|
34
34
|
:param file_url: Url of a file to be transcribed
|
|
35
35
|
:param file_id: ID of a file uploaded to /v1/files
|
|
@@ -131,7 +131,7 @@ class Transcriptions(BaseSDK):
|
|
|
131
131
|
) -> models.TranscriptionResponse:
|
|
132
132
|
r"""Create Transcription
|
|
133
133
|
|
|
134
|
-
:param model:
|
|
134
|
+
:param model: ID of the model to be used.
|
|
135
135
|
:param file:
|
|
136
136
|
:param file_url: Url of a file to be transcribed
|
|
137
137
|
:param file_id: ID of a file uploaded to /v1/files
|
|
@@ -231,7 +231,7 @@ class Transcriptions(BaseSDK):
|
|
|
231
231
|
timeout_ms: Optional[int] = None,
|
|
232
232
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
233
233
|
) -> eventstreaming.EventStream[models.TranscriptionStreamEvents]:
|
|
234
|
-
r"""Create
|
|
234
|
+
r"""Create Streaming Transcription (SSE)
|
|
235
235
|
|
|
236
236
|
:param model:
|
|
237
237
|
:param file:
|
|
@@ -343,7 +343,7 @@ class Transcriptions(BaseSDK):
|
|
|
343
343
|
timeout_ms: Optional[int] = None,
|
|
344
344
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
345
345
|
) -> eventstreaming.EventStreamAsync[models.TranscriptionStreamEvents]:
|
|
346
|
-
r"""Create
|
|
346
|
+
r"""Create Streaming Transcription (SSE)
|
|
347
347
|
|
|
348
348
|
:param model:
|
|
349
349
|
:param file:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mistralai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.10.0
|
|
4
4
|
Summary: Python Client SDK for the Mistral AI API.
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Author: Mistral
|
|
@@ -21,6 +21,10 @@ Requires-Dist: griffe (>=1.7.3,<2.0) ; extra == "agents"
|
|
|
21
21
|
Requires-Dist: httpx (>=0.28.1)
|
|
22
22
|
Requires-Dist: invoke (>=2.2.0,<3.0.0)
|
|
23
23
|
Requires-Dist: mcp (>=1.0,<2.0) ; (python_version >= "3.10") and (extra == "agents")
|
|
24
|
+
Requires-Dist: opentelemetry-api (>=1.33.1,<2.0.0)
|
|
25
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http (>=1.37.0,<2.0.0)
|
|
26
|
+
Requires-Dist: opentelemetry-sdk (>=1.33.1,<2.0.0)
|
|
27
|
+
Requires-Dist: opentelemetry-semantic-conventions (>=0.59b0,<0.60)
|
|
24
28
|
Requires-Dist: pydantic (>=2.10.3)
|
|
25
29
|
Requires-Dist: python-dateutil (>=2.8.2)
|
|
26
30
|
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
|
@@ -176,12 +180,14 @@ with Mistral(
|
|
|
176
180
|
api_key=os.getenv("MISTRAL_API_KEY", ""),
|
|
177
181
|
) as mistral:
|
|
178
182
|
|
|
179
|
-
res = mistral.chat.complete(model="mistral-
|
|
183
|
+
res = mistral.chat.complete(model="mistral-large-latest", messages=[
|
|
180
184
|
{
|
|
181
185
|
"content": "Who is the best French painter? Answer in one short sentence.",
|
|
182
186
|
"role": "user",
|
|
183
187
|
},
|
|
184
|
-
], stream=False
|
|
188
|
+
], stream=False, response_format={
|
|
189
|
+
"type": "text",
|
|
190
|
+
})
|
|
185
191
|
|
|
186
192
|
# Handle response
|
|
187
193
|
print(res)
|
|
@@ -202,12 +208,14 @@ async def main():
|
|
|
202
208
|
api_key=os.getenv("MISTRAL_API_KEY", ""),
|
|
203
209
|
) as mistral:
|
|
204
210
|
|
|
205
|
-
res = await mistral.chat.complete_async(model="mistral-
|
|
211
|
+
res = await mistral.chat.complete_async(model="mistral-large-latest", messages=[
|
|
206
212
|
{
|
|
207
213
|
"content": "Who is the best French painter? Answer in one short sentence.",
|
|
208
214
|
"role": "user",
|
|
209
215
|
},
|
|
210
|
-
], stream=False
|
|
216
|
+
], stream=False, response_format={
|
|
217
|
+
"type": "text",
|
|
218
|
+
})
|
|
211
219
|
|
|
212
220
|
# Handle response
|
|
213
221
|
print(res)
|
|
@@ -283,7 +291,9 @@ with Mistral(
|
|
|
283
291
|
"content": "Who is the best French painter? Answer in one short sentence.",
|
|
284
292
|
"role": "user",
|
|
285
293
|
},
|
|
286
|
-
], agent_id="<id>", stream=False
|
|
294
|
+
], agent_id="<id>", stream=False, response_format={
|
|
295
|
+
"type": "text",
|
|
296
|
+
})
|
|
287
297
|
|
|
288
298
|
# Handle response
|
|
289
299
|
print(res)
|
|
@@ -309,7 +319,9 @@ async def main():
|
|
|
309
319
|
"content": "Who is the best French painter? Answer in one short sentence.",
|
|
310
320
|
"role": "user",
|
|
311
321
|
},
|
|
312
|
-
], agent_id="<id>", stream=False
|
|
322
|
+
], agent_id="<id>", stream=False, response_format={
|
|
323
|
+
"type": "text",
|
|
324
|
+
})
|
|
313
325
|
|
|
314
326
|
# Handle response
|
|
315
327
|
print(res)
|
|
@@ -479,7 +491,7 @@ The documentation for the GCP SDK is available [here](https://github.com/mistral
|
|
|
479
491
|
#### [audio.transcriptions](https://github.com/mistralai/client-python/blob/master/docs/sdks/transcriptions/README.md)
|
|
480
492
|
|
|
481
493
|
* [complete](https://github.com/mistralai/client-python/blob/master/docs/sdks/transcriptions/README.md#complete) - Create Transcription
|
|
482
|
-
* [stream](https://github.com/mistralai/client-python/blob/master/docs/sdks/transcriptions/README.md#stream) - Create
|
|
494
|
+
* [stream](https://github.com/mistralai/client-python/blob/master/docs/sdks/transcriptions/README.md#stream) - Create Streaming Transcription (SSE)
|
|
483
495
|
|
|
484
496
|
### [batch](https://github.com/mistralai/client-python/blob/master/docs/sdks/batch/README.md)
|
|
485
497
|
|
|
@@ -500,6 +512,7 @@ The documentation for the GCP SDK is available [here](https://github.com/mistral
|
|
|
500
512
|
* [list](https://github.com/mistralai/client-python/blob/master/docs/sdks/mistralagents/README.md#list) - List agent entities.
|
|
501
513
|
* [get](https://github.com/mistralai/client-python/blob/master/docs/sdks/mistralagents/README.md#get) - Retrieve an agent entity.
|
|
502
514
|
* [update](https://github.com/mistralai/client-python/blob/master/docs/sdks/mistralagents/README.md#update) - Update an agent entity.
|
|
515
|
+
* [delete](https://github.com/mistralai/client-python/blob/master/docs/sdks/mistralagents/README.md#delete) - Delete an agent entity.
|
|
503
516
|
* [update_version](https://github.com/mistralai/client-python/blob/master/docs/sdks/mistralagents/README.md#update_version) - Update an agent version.
|
|
504
517
|
|
|
505
518
|
#### [beta.conversations](https://github.com/mistralai/client-python/blob/master/docs/sdks/conversations/README.md)
|
|
@@ -507,6 +520,7 @@ The documentation for the GCP SDK is available [here](https://github.com/mistral
|
|
|
507
520
|
* [start](https://github.com/mistralai/client-python/blob/master/docs/sdks/conversations/README.md#start) - Create a conversation and append entries to it.
|
|
508
521
|
* [list](https://github.com/mistralai/client-python/blob/master/docs/sdks/conversations/README.md#list) - List all created conversations.
|
|
509
522
|
* [get](https://github.com/mistralai/client-python/blob/master/docs/sdks/conversations/README.md#get) - Retrieve a conversation information.
|
|
523
|
+
* [delete](https://github.com/mistralai/client-python/blob/master/docs/sdks/conversations/README.md#delete) - Delete a conversation.
|
|
510
524
|
* [append](https://github.com/mistralai/client-python/blob/master/docs/sdks/conversations/README.md#append) - Append new entries to an existing conversation.
|
|
511
525
|
* [get_history](https://github.com/mistralai/client-python/blob/master/docs/sdks/conversations/README.md#get_history) - Retrieve all entries in a conversation.
|
|
512
526
|
* [get_messages](https://github.com/mistralai/client-python/blob/master/docs/sdks/conversations/README.md#get_messages) - Retrieve all messages in a conversation.
|
|
@@ -531,7 +545,7 @@ The documentation for the GCP SDK is available [here](https://github.com/mistral
|
|
|
531
545
|
|
|
532
546
|
#### [beta.libraries.documents](https://github.com/mistralai/client-python/blob/master/docs/sdks/documents/README.md)
|
|
533
547
|
|
|
534
|
-
* [list](https://github.com/mistralai/client-python/blob/master/docs/sdks/documents/README.md#list) - List
|
|
548
|
+
* [list](https://github.com/mistralai/client-python/blob/master/docs/sdks/documents/README.md#list) - List documents in a given library.
|
|
535
549
|
* [upload](https://github.com/mistralai/client-python/blob/master/docs/sdks/documents/README.md#upload) - Upload a new document.
|
|
536
550
|
* [get](https://github.com/mistralai/client-python/blob/master/docs/sdks/documents/README.md#get) - Retrieve the metadata of a specific document.
|
|
537
551
|
* [update](https://github.com/mistralai/client-python/blob/master/docs/sdks/documents/README.md#update) - Update the metadata of a specific document.
|
|
@@ -628,7 +642,11 @@ with Mistral(
|
|
|
628
642
|
"tool_call_id": "<id>",
|
|
629
643
|
"result": "<value>",
|
|
630
644
|
},
|
|
631
|
-
], stream=True
|
|
645
|
+
], stream=True, completion_args={
|
|
646
|
+
"response_format": {
|
|
647
|
+
"type": "text",
|
|
648
|
+
},
|
|
649
|
+
})
|
|
632
650
|
|
|
633
651
|
with res as event_stream:
|
|
634
652
|
for event in event_stream:
|
|
@@ -743,7 +761,7 @@ with Mistral(
|
|
|
743
761
|
res = None
|
|
744
762
|
try:
|
|
745
763
|
|
|
746
|
-
res = mistral.models.
|
|
764
|
+
res = mistral.models.retrieve(model_id="ft:open-mistral-7b:587a6b29:20240514:7e773925")
|
|
747
765
|
|
|
748
766
|
# Handle response
|
|
749
767
|
print(res)
|
|
@@ -777,7 +795,7 @@ with Mistral(
|
|
|
777
795
|
|
|
778
796
|
|
|
779
797
|
**Inherit from [`MistralError`](https://github.com/mistralai/client-python/blob/master/./src/mistralai/models/mistralerror.py)**:
|
|
780
|
-
* [`HTTPValidationError`](https://github.com/mistralai/client-python/blob/master/./src/mistralai/models/httpvalidationerror.py): Validation Error. Status code `422`. Applicable to
|
|
798
|
+
* [`HTTPValidationError`](https://github.com/mistralai/client-python/blob/master/./src/mistralai/models/httpvalidationerror.py): Validation Error. Status code `422`. Applicable to 48 of 70 methods.*
|
|
781
799
|
* [`ResponseValidationError`](https://github.com/mistralai/client-python/blob/master/./src/mistralai/models/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
|
|
782
800
|
|
|
783
801
|
</details>
|
|
@@ -147,23 +147,24 @@ mistralai/__init__.py,sha256=Tz5Y5FzbIUT1AmaYiTwJI56XTmuldo9AalaAm4h_FdE,423
|
|
|
147
147
|
mistralai/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
|
|
148
148
|
mistralai/_hooks/custom_user_agent.py,sha256=cHfp43RcsNvHusq8WVxWrCS3w-pmzJ8uNuvaMZKdtJ8,661
|
|
149
149
|
mistralai/_hooks/deprecation_warning.py,sha256=eyEOf7-o9uqqNWJnufD2RXp3dYrGV4in9q76yLC1zog,921
|
|
150
|
-
mistralai/_hooks/registration.py,sha256=
|
|
150
|
+
mistralai/_hooks/registration.py,sha256=6S3ZNnJqb8hUUrA-3V2ym44SyoXgV6b5aU4lUkCXaPA,1082
|
|
151
151
|
mistralai/_hooks/sdkhooks.py,sha256=s-orhdvnV89TmI3QiPC2LWQtYeM9RrsG1CTll-fYZmQ,2559
|
|
152
|
+
mistralai/_hooks/tracing.py,sha256=SuIswcQpsuhSmSC6kKYSCZzDN_i4R3QKTPVgWXOuV-w,1881
|
|
152
153
|
mistralai/_hooks/types.py,sha256=70IiFr5bfsJYafuDkXQWVfl6nY4dQkA5SZoEBCircqs,3047
|
|
153
|
-
mistralai/_version.py,sha256
|
|
154
|
-
mistralai/accesses.py,sha256=
|
|
155
|
-
mistralai/agents.py,sha256=
|
|
154
|
+
mistralai/_version.py,sha256=-lgoxCAFwrvvvFFp4_rTJFgIO5Pl-FEhlviQFjfY8LM,464
|
|
155
|
+
mistralai/accesses.py,sha256=F6iRif0xhyZmQUNqh1nirrCKQkVKkPoUpIRj-mw2cRI,25256
|
|
156
|
+
mistralai/agents.py,sha256=AuSDBIaemgwLpeZXX4nMAj1h8wg8-_qo4k021CnWRxw,35796
|
|
156
157
|
mistralai/async_client.py,sha256=KUdYxIIqoD6L7vB0EGwUR6lQ0NK5iCTHjnLVR9CVcJY,355
|
|
157
158
|
mistralai/audio.py,sha256=lcY7rl0YcXURe4q6tz4tufmnBQ_6ONRwyxSDDJCRowM,724
|
|
158
159
|
mistralai/basesdk.py,sha256=Zs5Gsl2V1rMClCUi7UYBVKigeontRyDo_tkqUj8Zdww,12194
|
|
159
160
|
mistralai/batch.py,sha256=wHfwQYrnxpEK5sbyhx8LjPYU9k7x_6osn_g1DSQma4Q,631
|
|
160
161
|
mistralai/beta.py,sha256=PeJFa12AW777S2B3h3Cc8ia_0pYW97_R7GmTA5TSnIQ,1178
|
|
161
|
-
mistralai/chat.py,sha256=
|
|
162
|
+
mistralai/chat.py,sha256=_bJbQ4pc_R92MKR_F9TgmiNrE3LkftWP8JXDCgw21Og,46349
|
|
162
163
|
mistralai/classifiers.py,sha256=x1gYwzatFuT4HJc4qgYkTMvfAfcQ8E_FpKQ3RCD4TJk,31236
|
|
163
164
|
mistralai/client.py,sha256=hrPg-LciKMKiascF0WbRRmqQyCv1lb2yDh6j-aaKVNo,509
|
|
164
|
-
mistralai/conversations.py,sha256=
|
|
165
|
-
mistralai/documents.py,sha256=
|
|
166
|
-
mistralai/embeddings.py,sha256=
|
|
165
|
+
mistralai/conversations.py,sha256=TE2SR4-QWESqx2nJD0GbdY_mUCVUwKzm00A3CLvi4z0,114738
|
|
166
|
+
mistralai/documents.py,sha256=Idi2GCUwSir7J8nxzIFH9KlpV0k1YhkSV4Xbw845JUY,79085
|
|
167
|
+
mistralai/embeddings.py,sha256=cgQrpTvT8f7azZIdeNt0xMkTXf8hljsbWi1VGcMxKTc,9342
|
|
167
168
|
mistralai/extra/README.md,sha256=BTS9fy0ijkiUP7ZVoFQ7FVBxHtXIXqucYZyy_ucFjo4,1739
|
|
168
169
|
mistralai/extra/__init__.py,sha256=8DsU_omYYadqcwlmBOoakBwkWKcSohwLmtB8v-jkn2M,392
|
|
169
170
|
mistralai/extra/exceptions.py,sha256=4EEygCfdsniYiroHEFVSVDqerQZkpRG027mlJXvMqns,428
|
|
@@ -172,10 +173,12 @@ mistralai/extra/mcp/auth.py,sha256=n9TVU4US9yr2yk4wMeqiP4QCsajuf5vf6j3OnHW089s,6
|
|
|
172
173
|
mistralai/extra/mcp/base.py,sha256=OyvpekpR_SMYLWSzNW5HyVqTpBKBlikhw54B5-Oj1DU,5069
|
|
173
174
|
mistralai/extra/mcp/sse.py,sha256=ikAw5YDVPY_nYT9zzB3-RYrZg9tVmt4WaY9Rki-fMsM,6385
|
|
174
175
|
mistralai/extra/mcp/stdio.py,sha256=n_70r_MhD46lVZIMmsa8wfZ0czxFdPb_k3axoimV0fc,647
|
|
176
|
+
mistralai/extra/observability/__init__.py,sha256=O6G6FiMQfWfJDUUr1Kd0PrGwZgjAuiM3y57zlIOm00s,352
|
|
177
|
+
mistralai/extra/observability/otel.py,sha256=JfOfi8N3DmtBaLO1tDSU9v19W4TK6r-zBmRgE-5YMao,18852
|
|
175
178
|
mistralai/extra/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
179
|
mistralai/extra/run/context.py,sha256=59KkZl96y96S2oEVPkuCrz_J-AkJEu7Do8-TQvhVjRY,11110
|
|
177
180
|
mistralai/extra/run/result.py,sha256=SN9yGovPD4eMkDbz6qqn4uYzkkrKNeTb2GQ87b-lJCQ,7149
|
|
178
|
-
mistralai/extra/run/tools.py,sha256=
|
|
181
|
+
mistralai/extra/run/tools.py,sha256=JeATfNRffmCbipIsftAGf5quQuLLzjSgm3TEkq9vWzI,8635
|
|
179
182
|
mistralai/extra/run/utils.py,sha256=lmqxqCuwLwYsjua460-I6q4OK2om8BxgvWm4NPiV7fs,1169
|
|
180
183
|
mistralai/extra/struct_chat.py,sha256=ZkpdExC5rgC-nBZ44hQIVhQmK6lYMk36RBSFPZMFaIg,2157
|
|
181
184
|
mistralai/extra/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -184,54 +187,56 @@ mistralai/extra/tests/test_utils.py,sha256=VesGDR_IiE6u0iY7yOi1iERd7esdJgi2aL4xZ
|
|
|
184
187
|
mistralai/extra/utils/__init__.py,sha256=SExo5t_hx0ybiQhVJIG3r3hOA-Pfny3lIO_WsqNXlN8,116
|
|
185
188
|
mistralai/extra/utils/_pydantic_helper.py,sha256=_mzrbZGU07M96CzcxgjcV25NtIGu5EUfotaN8NDUoFc,883
|
|
186
189
|
mistralai/extra/utils/response_format.py,sha256=uDNpvOHhk2se3JTXweWYMbnkyOcOqhMe2yxZ2lYNe1k,913
|
|
187
|
-
mistralai/files.py,sha256=
|
|
188
|
-
mistralai/fim.py,sha256=
|
|
190
|
+
mistralai/files.py,sha256=GtocjjNQufUUlFG4MNKcM3DMNs6iSf6IIz_Bn9Pl4XY,42269
|
|
191
|
+
mistralai/fim.py,sha256=DPz1-wy_RENmyvgUaDN1KNawte2JQNn53P-5BCYxb8M,27195
|
|
189
192
|
mistralai/fine_tuning.py,sha256=0f6Yq0h3bRvQq7NI6M7TpnRkLcXZOqEFf2qS0XE9TbU,607
|
|
190
193
|
mistralai/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
191
194
|
mistralai/jobs.py,sha256=o962f9AgS7RxlRGuY74VOs8eHczCz1WwfAzfNDJhbTo,43543
|
|
192
195
|
mistralai/libraries.py,sha256=57IjAilAQU7eKvyWQsH442nsGPA5iGhZf8b3J0hJGuE,37530
|
|
193
|
-
mistralai/mistral_agents.py,sha256=
|
|
194
|
-
mistralai/mistral_jobs.py,sha256=
|
|
195
|
-
mistralai/models/__init__.py,sha256=
|
|
196
|
-
mistralai/models/agent.py,sha256=
|
|
197
|
-
mistralai/models/agentconversation.py,sha256
|
|
198
|
-
mistralai/models/agentcreationrequest.py,sha256=
|
|
196
|
+
mistralai/mistral_agents.py,sha256=Tdxra5QzsHIJCBXy1cUlX0xvxpz4WLnMt-hPJDCcwug,51199
|
|
197
|
+
mistralai/mistral_jobs.py,sha256=V9FWKCxXesNbaZqbw0Mk-2wzs401BOtnTAhb0GiNNf0,30696
|
|
198
|
+
mistralai/models/__init__.py,sha256=iX4vrlpaUw5PnnMjl92Zo3ZSS1bwrpScJgrtCN_7TU4,100772
|
|
199
|
+
mistralai/models/agent.py,sha256=r333B46hT4MbxC6Lf6QvG2FChkRXPTnj7Sv-N3xPn2E,4481
|
|
200
|
+
mistralai/models/agentconversation.py,sha256=CHMGvtRGynYQ1FCHiu5Wc7BA99RWBgS_6gx-_d-9CrM,2463
|
|
201
|
+
mistralai/models/agentcreationrequest.py,sha256=dptZojT3BIXXrrdlD4y4OcY8iwA8aa36aLfXxVMxt-I,4113
|
|
199
202
|
mistralai/models/agenthandoffdoneevent.py,sha256=HDGDAni5U_NXuUSZEvcqjIjDVjAjZrYZfxzN0D_YLBM,813
|
|
200
203
|
mistralai/models/agenthandoffentry.py,sha256=qJMZLfg8JksJjzibYsRlTDvYoVQhf4a9AQK3s0o1irA,2156
|
|
201
204
|
mistralai/models/agenthandoffstartedevent.py,sha256=8J07a6u6EnuBjtGtMcCqUzWJxfnaVy8N6PNoFeyqU4Q,850
|
|
202
|
-
mistralai/models/
|
|
203
|
-
mistralai/models/
|
|
205
|
+
mistralai/models/agents_api_v1_agents_deleteop.py,sha256=tA3yVSFzxenFwwLd18LoDbFQ4DLj4wHDNgrikLyuEHg,500
|
|
206
|
+
mistralai/models/agents_api_v1_agents_getop.py,sha256=IBxMZS31eJXTAgboQJKAZEJ9MY1qYEwGM6ExziL00kU,1737
|
|
207
|
+
mistralai/models/agents_api_v1_agents_listop.py,sha256=iW6LWI_Cycy-qcUPis-uru9WeISx9aacEONuRehI-VE,2991
|
|
204
208
|
mistralai/models/agents_api_v1_agents_update_versionop.py,sha256=-ANBszFQ1Ig5sIBcSMo9Z9xcb2-RKbu7jE6GW0Zj7vE,663
|
|
205
209
|
mistralai/models/agents_api_v1_agents_updateop.py,sha256=BFslxxeejm4kyLbWGTFaWNQ2ilFLavfbEUfi0SwjELE,802
|
|
206
210
|
mistralai/models/agents_api_v1_conversations_append_streamop.py,sha256=ZnhYubtb4wwxfbFqV19LyMvMW9V22F-fEsr1RmBZVRA,1072
|
|
207
211
|
mistralai/models/agents_api_v1_conversations_appendop.py,sha256=uKPtHvaJEZTc-N6SPmKk_wEuPDTDLXeuCYyx2l0zKTk,1016
|
|
212
|
+
mistralai/models/agents_api_v1_conversations_deleteop.py,sha256=keBZsJTtOjbtZuE2EPCAy2l1fzhEvo64fkojXgzKJqk,670
|
|
208
213
|
mistralai/models/agents_api_v1_conversations_getop.py,sha256=SS2tOzjHhvPVmqJ_zhf7IxKjwkywXa0v8g3RSizPqfM,1318
|
|
209
214
|
mistralai/models/agents_api_v1_conversations_historyop.py,sha256=7mufGwn2hJ75I0oukJvXFqgmVVXxG6E-K7fj_46iJO4,670
|
|
210
|
-
mistralai/models/agents_api_v1_conversations_listop.py,sha256=
|
|
215
|
+
mistralai/models/agents_api_v1_conversations_listop.py,sha256=1Pn80vb97n_wRRJVwbIccqCZWgAkzvesWSLvw4LCqmo,2407
|
|
211
216
|
mistralai/models/agents_api_v1_conversations_messagesop.py,sha256=MC7ExiTo7R2EenYoSfTyE02zJmLFebS6mJranxdK5gk,674
|
|
212
217
|
mistralai/models/agents_api_v1_conversations_restart_streamop.py,sha256=cNuV80H-OxH606FV5zIAcceqS0fD9vwlPmqHyXOBmWk,1095
|
|
213
218
|
mistralai/models/agents_api_v1_conversations_restartop.py,sha256=pjsbjzKTeWgSBiviDzMx50gVqRIGP4dKr3FqG-SOSoY,1039
|
|
214
|
-
mistralai/models/agentscompletionrequest.py,sha256=
|
|
215
|
-
mistralai/models/agentscompletionstreamrequest.py,sha256=
|
|
216
|
-
mistralai/models/agentupdaterequest.py,sha256=
|
|
219
|
+
mistralai/models/agentscompletionrequest.py,sha256=jypAzy5EjxdFhmo5VIDdHBfS32gkxYPStuTMgjLf1LU,10123
|
|
220
|
+
mistralai/models/agentscompletionstreamrequest.py,sha256=cb48mHEydHXHyz-iw9XI7sL_mxfb7xx4uwAjcvlSk1E,9568
|
|
221
|
+
mistralai/models/agentupdaterequest.py,sha256=6p_tGM19Sl_Ljy5gwyMRe6bGklByHTYNBTDmuhWruko,4502
|
|
217
222
|
mistralai/models/apiendpoint.py,sha256=e-d_e8Z7indj9QtiDZtYU3m7OQTvzRw-cCk3Ag_gbEo,551
|
|
218
223
|
mistralai/models/archiveftmodelout.py,sha256=VdppiqIB9JGNB2B0-Y6XQfQgDmB-hOa1Bta3v_StbLs,565
|
|
219
224
|
mistralai/models/assistantmessage.py,sha256=3qbCraZpjX_clXjT1wgOBeQuQBjX22XLQMIlR3v5fZw,2630
|
|
220
225
|
mistralai/models/audiochunk.py,sha256=npAWiX43d_fZ-8Bnnm_z-p7bcwpAhKyYidy_VIJcrxs,481
|
|
221
|
-
mistralai/models/audiotranscriptionrequest.py,sha256=
|
|
226
|
+
mistralai/models/audiotranscriptionrequest.py,sha256=CUvOXsvARDlg32KGsyMPpHHuS2YG0bztwwJlNGGHd4A,3574
|
|
222
227
|
mistralai/models/audiotranscriptionrequeststream.py,sha256=YQ2RUF3M8EElgf64jLlz44vP5a8Pg9ZVGUA6yq2BIqY,3504
|
|
223
228
|
mistralai/models/basemodelcard.py,sha256=mG2HFpAdvsQWhH63Xho7JzK0MwjI9IzU5fEZDamksE0,3248
|
|
224
229
|
mistralai/models/batcherror.py,sha256=tThkO9B-g-6eDSBCm1Emd-zDI4B3mk2vAl0L1MI3pdQ,390
|
|
225
|
-
mistralai/models/batchjobin.py,sha256=
|
|
230
|
+
mistralai/models/batchjobin.py,sha256=SqJw7YCI91KPezhzwwaawAIaHZjBgaBx2xdf1GJJB18,3817
|
|
226
231
|
mistralai/models/batchjobout.py,sha256=TtNrE96Um3P6k69pHCZNbTUUtIcQKMlbFZprlmw2e2Y,3065
|
|
227
232
|
mistralai/models/batchjobsout.py,sha256=8ZpO0Lxuygz_4p5cemhJo7ks9YsTmio0EaHvrjyr0Jc,636
|
|
228
233
|
mistralai/models/batchjobstatus.py,sha256=WlrIl5vWQGfLmgQA91_9CnCMKhWN6Lli458fT-4Asj4,294
|
|
229
234
|
mistralai/models/builtinconnectors.py,sha256=cX1M7Q_2tsWeuH-lKWomXED7xN7Du6BJKvYpep1vD30,284
|
|
230
235
|
mistralai/models/chatclassificationrequest.py,sha256=PmU036oOlGqfd75hNESDUJiN4uJNYguACoCt6CzBC2M,534
|
|
231
236
|
mistralai/models/chatcompletionchoice.py,sha256=6iIFLZj2KYx0HFfzS3-E3sNXG6mPEAlDyXxIA5iZI_U,849
|
|
232
|
-
mistralai/models/chatcompletionrequest.py,sha256=
|
|
237
|
+
mistralai/models/chatcompletionrequest.py,sha256=47oiqTs5hHiMw1itYjBJEOOoj9U-5Vixzm2DuOk4_2Y,14254
|
|
233
238
|
mistralai/models/chatcompletionresponse.py,sha256=px0hjCapAtTP50u36hiQdPcC9X6LU81Nq5aJ3AlofjM,709
|
|
234
|
-
mistralai/models/chatcompletionstreamrequest.py,sha256=
|
|
239
|
+
mistralai/models/chatcompletionstreamrequest.py,sha256=_aNxpttDNGuHkVDS8vsiZHDT_gcVPpQ2UHHJrlGDALc,13942
|
|
235
240
|
mistralai/models/chatmoderationrequest.py,sha256=x1eAoxx_GhaxqGRe4wsqNaUi59K39HQakkedLJVUVD8,2236
|
|
236
241
|
mistralai/models/checkpointout.py,sha256=A2kXS8-VT_1lbg3brifVjZD6tXdsET8vLqBm2a-yXgA,1109
|
|
237
242
|
mistralai/models/classificationrequest.py,sha256=FqQfSrGYwLUjVw78Ft7tbmhAkUN0FqolCn4MNArOuR8,922
|
|
@@ -262,23 +267,23 @@ mistralai/models/conversationevents.py,sha256=f_bKoWSzzUy0zuu8Wn4dxjVjjqfE7ef28U
|
|
|
262
267
|
mistralai/models/conversationhistory.py,sha256=HkTAii7vMjgEWFpJV-WYOO7Rh8U0xsLme6n2s4BBOcg,1759
|
|
263
268
|
mistralai/models/conversationinputs.py,sha256=S0jyBRBx2WKxwGQx2QdbXCEWqmLZ1obocxquvCXk9Po,460
|
|
264
269
|
mistralai/models/conversationmessages.py,sha256=kUvWLKuyPyZLQbBd2lJAZ8FQoM0RIGw_PlJc4Cwltwk,873
|
|
265
|
-
mistralai/models/conversationrequest.py,sha256=
|
|
270
|
+
mistralai/models/conversationrequest.py,sha256=B6SeoViQWbmqTKcmyZGnVjkZaimDtrfS249Gk4JyNTc,4789
|
|
266
271
|
mistralai/models/conversationresponse.py,sha256=Md9E4q-jDVHlHuYe27vHT9Gv6i4AnzNjLSrA9jtcBn8,1646
|
|
267
|
-
mistralai/models/conversationrestartrequest.py,sha256=
|
|
268
|
-
mistralai/models/conversationrestartstreamrequest.py,sha256=
|
|
269
|
-
mistralai/models/conversationstreamrequest.py,sha256=
|
|
272
|
+
mistralai/models/conversationrestartrequest.py,sha256=t1G--vOPQyblgg4tlUSZJT57GVkbJM_N9MoPvH6VnTk,3220
|
|
273
|
+
mistralai/models/conversationrestartstreamrequest.py,sha256=E6Z9uvskWHVWE9PieVqrBRAa6OExDfrzJIArxcFsoqw,3265
|
|
274
|
+
mistralai/models/conversationstreamrequest.py,sha256=s-eUdrxpQya1A7Kv3UyRGZbRfkJwO1hCwCf_sTuQhfQ,5016
|
|
270
275
|
mistralai/models/conversationusageinfo.py,sha256=K9XqE-TgF4sytMjEj-eMhPZKoO4HgJKZKwCotQrBUko,1937
|
|
271
276
|
mistralai/models/delete_model_v1_models_model_id_deleteop.py,sha256=lnVRFX-G0jkn1dCFC89sXY2Pj_w4QfMDeF1tPjS4hWE,602
|
|
272
277
|
mistralai/models/deletefileout.py,sha256=s3a-H2RgFQ9HX0kYSmP6GwmwE1jghz7dBj-3G0NBVSY,587
|
|
273
278
|
mistralai/models/deletemodelout.py,sha256=W_crO0WtksoKUgq5s9Yh8zS8RxSuyKYQCBt1i8vB1sE,693
|
|
274
279
|
mistralai/models/deltamessage.py,sha256=3C0YZ9pQksIoE-i_0FqP5GUAQ90EeKUzQnHkqmhJAlc,1945
|
|
275
280
|
mistralai/models/documentlibrarytool.py,sha256=EN50sX8wgfAw7mF6W8BkOwKyqRvEzGvHgINn-evuCcg,654
|
|
276
|
-
mistralai/models/documentout.py,sha256=
|
|
281
|
+
mistralai/models/documentout.py,sha256=fkrGHLdW03m5BQ7P2M4F_R2sDlTDK1kD-lYj_45VnSg,3229
|
|
277
282
|
mistralai/models/documenttextcontent.py,sha256=uQKQu3H31Oo8HgAt7qDYMX4CByAPY71lhWxeEEwYVaI,303
|
|
278
|
-
mistralai/models/documentupdatein.py,sha256=
|
|
283
|
+
mistralai/models/documentupdatein.py,sha256=Uqp-crsMKzZuqgfqQ6PvfhRD0xFOwQPu1SjmMz7YXsg,1925
|
|
279
284
|
mistralai/models/documenturlchunk.py,sha256=yiqte4P63DCyDKDIYKD0pP9S4HjFNXHCXob4nnzY6nY,1710
|
|
280
285
|
mistralai/models/embeddingdtype.py,sha256=c7L-PKhBgPVPZeMGuMub0ZOs0MdxMbpW2ebE0t7oEpU,209
|
|
281
|
-
mistralai/models/embeddingrequest.py,sha256=
|
|
286
|
+
mistralai/models/embeddingrequest.py,sha256=ifezjAY4IXQ0KX7CZExBwOfeC_Rs_aqplR9FnUGbZHQ,2979
|
|
282
287
|
mistralai/models/embeddingresponse.py,sha256=te6E_LYEzRjHJ9QREmsFp5PeNP2J_8ALVjyb1T20pNA,663
|
|
283
288
|
mistralai/models/embeddingresponsedata.py,sha256=fJ3mrZqyBBBE40a6iegOJX3DVDfgyMRq23ByeGSTLFk,534
|
|
284
289
|
mistralai/models/encodingformat.py,sha256=pH02s992pVskofo56idSek4sAn3MD6Iu7IAyCGmeJ-U,181
|
|
@@ -290,14 +295,14 @@ mistralai/models/filepurpose.py,sha256=lQk45E78j4bJyMi59jLH5IjU1rCUsqprF28P4ArGQ
|
|
|
290
295
|
mistralai/models/files_api_routes_delete_fileop.py,sha256=HOx-hJxphSYF-JV3zOGe2eucWQUpfVqxG0IDaSa3dcE,500
|
|
291
296
|
mistralai/models/files_api_routes_download_fileop.py,sha256=y3sLFZ-j4eUuxCyIP0L-exy0ViqskDLkghkOccElBQQ,504
|
|
292
297
|
mistralai/models/files_api_routes_get_signed_urlop.py,sha256=e_XczBgInaylmHJ9m5wJQ78hfCp2PrrTrT8bxGGi8BI,879
|
|
293
|
-
mistralai/models/files_api_routes_list_filesop.py,sha256
|
|
298
|
+
mistralai/models/files_api_routes_list_filesop.py,sha256=-INSHZqfyN3e2v58sUgANVv24OnmsW7iuyj1j7KhqT4,3347
|
|
294
299
|
mistralai/models/files_api_routes_retrieve_fileop.py,sha256=8DjSbYqUqFoPq-qcNXyVADeBVSsoCfHFlkRfmwYk-ns,504
|
|
295
300
|
mistralai/models/files_api_routes_upload_fileop.py,sha256=hRO_uuezrkKViUUc63F82S6E-PrAtUvWHnOpUxhSZ6k,1598
|
|
296
301
|
mistralai/models/fileschema.py,sha256=20HXXgJbtUm_KStQj9Qy8ikxCy0Ifa1MgGrV5hcnUQI,2827
|
|
297
302
|
mistralai/models/filesignedurl.py,sha256=VwvuhzhJulAB99Qxz6zr-2F1aINosAfaSxU0IhytDSU,289
|
|
298
|
-
mistralai/models/fimcompletionrequest.py,sha256=
|
|
303
|
+
mistralai/models/fimcompletionrequest.py,sha256=aNLwLg7uVYGd95JEeIWSJ2J-VhBVx7USaPMB35fr4II,6590
|
|
299
304
|
mistralai/models/fimcompletionresponse.py,sha256=qNgb2WFVgkaW7Isfkk2Aol1gTV9UkhQomcDAhoPDeYw,707
|
|
300
|
-
mistralai/models/fimcompletionstreamrequest.py,sha256=
|
|
305
|
+
mistralai/models/fimcompletionstreamrequest.py,sha256=sllH7XIN3KlV7l0Fzq2jnLCufGr8LUYaqQvkPOJ_nds,5969
|
|
301
306
|
mistralai/models/finetuneablemodeltype.py,sha256=XmTpXeQU8AINnn1kVmXldFUauCaEnRtJNFAXUTVb6RQ,197
|
|
302
307
|
mistralai/models/ftclassifierlossfunction.py,sha256=ApQB8ssAh2yE26-CljxPO7Jc5lxq3OoBPR4rUp-Td9U,203
|
|
303
308
|
mistralai/models/ftmodelcapabilitiesout.py,sha256=Cg2ETH8o3eYm79-BEWweWS53wDqa1DIsZ8WtWA32Xic,730
|
|
@@ -342,7 +347,7 @@ mistralai/models/libraries_documents_get_signed_url_v1op.py,sha256=WCH8_B-kN8Clj
|
|
|
342
347
|
mistralai/models/libraries_documents_get_status_v1op.py,sha256=81fElPloAbNxUlYo45MoZIWdFeUmpJlQX_3Ga1Z1-z4,654
|
|
343
348
|
mistralai/models/libraries_documents_get_text_content_v1op.py,sha256=nnlleDWpjiLisTUnJkJ9c_C7DUd6KtWbSrAgPQhQeRk,664
|
|
344
349
|
mistralai/models/libraries_documents_get_v1op.py,sha256=BwT2_FiefLzaphvuWExqgjR9wiPgk7fBfENdwr9k1pU,642
|
|
345
|
-
mistralai/models/libraries_documents_list_v1op.py,sha256=
|
|
350
|
+
mistralai/models/libraries_documents_list_v1op.py,sha256=unJTwAEmBGJcRR8l52fLxGeVaebIwwdLX45LYBE7V_Q,2813
|
|
346
351
|
mistralai/models/libraries_documents_reprocess_v1op.py,sha256=8y11VgqC89OG4auvxq0OdvRTfOpueYW-wpGlxxX9xWM,654
|
|
347
352
|
mistralai/models/libraries_documents_update_v1op.py,sha256=WaKTmJaKml8ZtiIlr5Gr95ZlU1LXo_ttGD7rBNNIEt4,936
|
|
348
353
|
mistralai/models/libraries_documents_upload_v1op.py,sha256=ob6qZgfJtia8uzaShVrXUWrvlNYifovpF_HNubTupKw,1781
|
|
@@ -353,9 +358,9 @@ mistralai/models/libraries_share_list_v1op.py,sha256=O0twyrmtYEKAT-3J0Wo7hWOLQTT
|
|
|
353
358
|
mistralai/models/libraries_update_v1op.py,sha256=xnngL31KbL6p_4JmBfhc-qlEQwfExpFkvkwlaeZHsvc,773
|
|
354
359
|
mistralai/models/libraryin.py,sha256=OEMepJTcX1qnvVYow5R-66WNNvymrH9EWreVX7lmb-k,1513
|
|
355
360
|
mistralai/models/libraryinupdate.py,sha256=Mnq2xhPAo_dWeD_uMkDl91LXOh0JttHKUSsXbz4P3JM,1472
|
|
356
|
-
mistralai/models/libraryout.py,sha256=
|
|
361
|
+
mistralai/models/libraryout.py,sha256=vxyutShR1vrZGRHJLE-mxSduw7k5JQrpzleg6lMCcjI,3019
|
|
357
362
|
mistralai/models/listdocumentout.py,sha256=L8IQiYYNI3N-NK0uzXqGtWfs6X0fhDYPYlheqWxI8TQ,555
|
|
358
|
-
mistralai/models/listfilesout.py,sha256=
|
|
363
|
+
mistralai/models/listfilesout.py,sha256=kybWd5AwVkyV9SS8weF7b7oAbURKuPQzhaOj1r8pfrk,1525
|
|
359
364
|
mistralai/models/listlibraryout.py,sha256=cCMe2v7j03GFEriIVuf_U35uQFNYZVLjefmFPjqxfug,408
|
|
360
365
|
mistralai/models/listsharingout.py,sha256=w6WChWGxjah_qc8ly_ljumLo01IhnymufWILw56LVr0,408
|
|
361
366
|
mistralai/models/messageentries.py,sha256=vExZZIyOTkmEi-3Bvw2UG1GwGbGr59U_bX-biwIl0Tk,581
|
|
@@ -367,27 +372,29 @@ mistralai/models/messageoutputevent.py,sha256=5iEtdssMYt27kgobk5SrfTaYE3BrmeDj8s
|
|
|
367
372
|
mistralai/models/metricout.py,sha256=dMSDFB4CnYIADYLDcKs3rUrDtOhyRVs8ClKr7uu5yrs,2040
|
|
368
373
|
mistralai/models/mistralerror.py,sha256=F2ghCuhQHNl09p4NwXd8XsX8uBhjTfWtavKkefqMEl4,714
|
|
369
374
|
mistralai/models/mistralpromptmode.py,sha256=v0UKuu6N0kcM_gjy3C7pVUWBs9tuMKtbHG6nLF9jtoI,253
|
|
370
|
-
mistralai/models/modelcapabilities.py,sha256=
|
|
371
|
-
mistralai/models/modelconversation.py,sha256=
|
|
375
|
+
mistralai/models/modelcapabilities.py,sha256=VjP7j0euii23FNkArBeEGoZt9eHk1xVnbus7xSRXH1I,985
|
|
376
|
+
mistralai/models/modelconversation.py,sha256=pZtz4X1_Sez2No_CPXJUAp82w8iARYKTQuVhd3gteTI,4696
|
|
372
377
|
mistralai/models/modellist.py,sha256=D4Y784kQkx0ARhofFrpEqGLfxa-jTY8ev0TQMrD_n8I,995
|
|
373
378
|
mistralai/models/moderationobject.py,sha256=mmzFEcccsT7G9PjmQrsYMijmICbfBtUpVN_ZisuhYbY,655
|
|
374
379
|
mistralai/models/moderationresponse.py,sha256=kxIRI3UJdddj2Hz-E9q21gKQAbacxZoG4hdoZjrae5M,508
|
|
375
380
|
mistralai/models/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
|
|
376
381
|
mistralai/models/ocrimageobject.py,sha256=bIYt82TlTbDSavxM9UWuTmeqhha130v1CJyhUGlDHls,2808
|
|
377
382
|
mistralai/models/ocrpagedimensions.py,sha256=oP4v80I8d6ZELSZt6cRoECd6uIONgdyCeeFalm-4OvM,609
|
|
378
|
-
mistralai/models/ocrpageobject.py,sha256=
|
|
379
|
-
mistralai/models/ocrrequest.py,sha256=
|
|
383
|
+
mistralai/models/ocrpageobject.py,sha256=GQxf-9WyUqMsDeUcveCaPz3F5wYaN7YovJK2XFN5FqE,2938
|
|
384
|
+
mistralai/models/ocrrequest.py,sha256=F-Jgj2mtXCHD-iUAU0F-U6Z6RVl3qwYr9kQTRrK_mko,4778
|
|
380
385
|
mistralai/models/ocrresponse.py,sha256=Z7n6oKu7Dp6I4IlJuh_MhPcKmt0GW7FdtBtPg7060k0,2048
|
|
386
|
+
mistralai/models/ocrtableobject.py,sha256=V_Ft7gJApAmjvig0tFNMBa6dTZn8y9XiDgAEFHHTrSM,794
|
|
381
387
|
mistralai/models/ocrusageinfo.py,sha256=eVedgqaPwqbHaPH80RKq3ccFl-JBh-bXfBbdLEbthG4,1577
|
|
382
388
|
mistralai/models/outputcontentchunks.py,sha256=nPlDIHxsZamkZKn4K8Y0iwn72vREG2Ijb70i7fIbzAM,1092
|
|
383
389
|
mistralai/models/paginationinfo.py,sha256=kEZ66Emg0bpHoGQUXbR4IDDd-pjiejrY4wdcQ5aJRM8,473
|
|
384
|
-
mistralai/models/prediction.py,sha256=
|
|
390
|
+
mistralai/models/prediction.py,sha256=neGtaqjZGngdVtvy1XDadZhcLBvr0bMz8rcfMy90RIw,978
|
|
385
391
|
mistralai/models/processingstatusout.py,sha256=kKS_e3oG7IrioJSHdWInJGa47TqtfC7bFufd9W9nZEs,372
|
|
386
392
|
mistralai/models/referencechunk.py,sha256=A9vV5pZv-tUqGlswdu0HOyCYy0Q-UIJY0Oc9ZfM6XJA,519
|
|
393
|
+
mistralai/models/requestsource.py,sha256=QqRb6k_YFFwHIGs2OOONN6lFocNozVmBZ5iRSdp-u3o,202
|
|
387
394
|
mistralai/models/responsedoneevent.py,sha256=NRyPmBrTsYvlblAJaXOPx1l6vA2JLN6_aoNhcBUMdCM,779
|
|
388
395
|
mistralai/models/responseerrorevent.py,sha256=JUlo0JopINhAjKeWDjTBR_ZyxE4IgvZ2uD-UJovqOIk,685
|
|
389
|
-
mistralai/models/responseformat.py,sha256=
|
|
390
|
-
mistralai/models/responseformats.py,sha256=
|
|
396
|
+
mistralai/models/responseformat.py,sha256=JWEBbJYGVsd9_vDg-cBVLaMASaxJiKrkbZlz2Q1M490,2635
|
|
397
|
+
mistralai/models/responseformats.py,sha256=MVWapS612Z-FITBUcF-0Nmn19MwVfM6IgGEQ2x3ae_Y,201
|
|
391
398
|
mistralai/models/responsestartedevent.py,sha256=1VJl_4F5yIpbrX8GwVq6vYxjDFeTf4OdYhqKpQy1r4M,686
|
|
392
399
|
mistralai/models/responsevalidationerror.py,sha256=OgoN-0zwRiM6bIoeiJkWaw7_KSXiSam0Y1uNLofIar0,690
|
|
393
400
|
mistralai/models/retrieve_model_v1_models_model_id_getop.py,sha256=N9_JFwiz9tz4zRXJ9c1V0c_anFEVxVzPDoFt2Wrer4M,1388
|
|
@@ -396,9 +403,9 @@ mistralai/models/sampletype.py,sha256=zowUiTFxum8fltBs6j__BrFPio-dQdG0CIyLj-5icG
|
|
|
396
403
|
mistralai/models/sdkerror.py,sha256=ZmVtaBozTibV_ZlXDv5152XRXeuYkZ_CMHjPpUthyt4,1223
|
|
397
404
|
mistralai/models/security.py,sha256=RQn-xHLq3q4OEzrx9BcJMuT49UaCvwABXrqBEcqyKmA,686
|
|
398
405
|
mistralai/models/shareenum.py,sha256=PM_tFgsuqLfKszNopSSAOtzUuMsmBhlJ8Py41UPXcYo,252
|
|
399
|
-
mistralai/models/sharingdelete.py,sha256=
|
|
400
|
-
mistralai/models/sharingin.py,sha256=
|
|
401
|
-
mistralai/models/sharingout.py,sha256=
|
|
406
|
+
mistralai/models/sharingdelete.py,sha256=yXW0BXvrXoBfLUAHKemiVlyv084i5XmeapiGf-neyqs,1947
|
|
407
|
+
mistralai/models/sharingin.py,sha256=IRfLRBmUEz3JpGpESxeayPX8la-l-xwxU_F5MHUWiHE,2069
|
|
408
|
+
mistralai/models/sharingout.py,sha256=Ki4D6oE53JzbL1LJwNj9uNTngFYCDqUaA4FhnPLR_So,1596
|
|
402
409
|
mistralai/models/source.py,sha256=_MSV-LRL2fL7wCUTXEvvsOUIWlOKqPvdZS4rm2Xhs0o,264
|
|
403
410
|
mistralai/models/ssetypes.py,sha256=xJlN3JFQ-EaF90nkD88zwjSSsgRN1C59JPZ97K1kASc,531
|
|
404
411
|
mistralai/models/systemmessage.py,sha256=-yWm6HzcVh34YOTop1z3l92IvgNwcWMMENFD8bCgMLk,889
|
|
@@ -410,10 +417,10 @@ mistralai/models/tool.py,sha256=qLY0XE3uk79v3RsJqVpA81A0K9OWtmX6rwVeKal5ARk,681
|
|
|
410
417
|
mistralai/models/toolcall.py,sha256=T5-3XQ-CKduBKTWwOeSBuaF90yk4yBgqmyLuXVB5uXQ,824
|
|
411
418
|
mistralai/models/toolchoice.py,sha256=dGeb5koPp9eqHQuG1u-kP7T5Od6-cPL2rEe06-dqzcs,1021
|
|
412
419
|
mistralai/models/toolchoiceenum.py,sha256=Ca4ileCwuOjfPzIXLRIxT3RkE5zR7oqV6nXU-UjW0w0,197
|
|
413
|
-
mistralai/models/toolexecutiondeltaevent.py,sha256=
|
|
414
|
-
mistralai/models/toolexecutiondoneevent.py,sha256=
|
|
415
|
-
mistralai/models/toolexecutionentry.py,sha256=
|
|
416
|
-
mistralai/models/toolexecutionstartedevent.py,sha256=
|
|
420
|
+
mistralai/models/toolexecutiondeltaevent.py,sha256=394h8T-glbCU8OZZfSm1yNW_DyhbHk3Q3a7n1jzDE7g,1170
|
|
421
|
+
mistralai/models/toolexecutiondoneevent.py,sha256=Ga3rq-ajArgu9HuWuKDHLUEYGKfmCNo_uFM-tLxXRN4,1210
|
|
422
|
+
mistralai/models/toolexecutionentry.py,sha256=b3Oejsv_f3AXe-SzxxXMAADU8mnZ4Ko4Cv42Ba7d2NM,2345
|
|
423
|
+
mistralai/models/toolexecutionstartedevent.py,sha256=Cca-J3RDDQM38aXBOgjyKeE1QSU2xzI7xS0DZqmQ3nc,1196
|
|
417
424
|
mistralai/models/toolfilechunk.py,sha256=sSDwXSC6YDBjOE8pjhst6EgZZnk_HtR6syYOpHTncIg,1803
|
|
418
425
|
mistralai/models/toolmessage.py,sha256=onVw1JYf-cwvN19ipk_UERppO4mmQPUGJtreCPJ3TOQ,2044
|
|
419
426
|
mistralai/models/toolreferencechunk.py,sha256=1Oihq0n1bGUdoNcLMR4U9S6kvCEDX1YXpjY-XV6Hgw4,1924
|
|
@@ -437,12 +444,12 @@ mistralai/models/wandbintegration.py,sha256=PbDvTC7hrS8u3mkYQlvzCFilDZdTtkCrKWlX
|
|
|
437
444
|
mistralai/models/wandbintegrationout.py,sha256=nDVAi7dismF5ktEBaEM8A8QsAtOVR0ReblTxF0_VWtg,2117
|
|
438
445
|
mistralai/models/websearchpremiumtool.py,sha256=wU3_oOKRWFLOXrZ-SrqAnGC7kb5uaSjLaTfUthuFoLY,502
|
|
439
446
|
mistralai/models/websearchtool.py,sha256=qpzzCo_nJunxRHlkwJE3vuEd-qPA_cW1X55qEXw3_KY,451
|
|
440
|
-
mistralai/models_.py,sha256=
|
|
441
|
-
mistralai/ocr.py,sha256=
|
|
447
|
+
mistralai/models_.py,sha256=yy0igELUaUIGA7m_F5gGnjwtfSCXl_4rlVEQTe_jQ0Q,41900
|
|
448
|
+
mistralai/ocr.py,sha256=CkLNy2EEZjQfdyoRy6CiC0mfWIs4IMxo8dkEhXJBmis,12169
|
|
442
449
|
mistralai/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
443
450
|
mistralai/sdk.py,sha256=1LlWK-8IIuN3-L103AC1OsNYRXG-sP1hRijxhuMf6q0,8324
|
|
444
451
|
mistralai/sdkconfiguration.py,sha256=8BDzcYQqDIM7pXsdsfmEZPUexeqdsL-8HMyhWiQeupE,1716
|
|
445
|
-
mistralai/transcriptions.py,sha256=
|
|
452
|
+
mistralai/transcriptions.py,sha256=iab7DUYk_exTPWQRz9PeAxTLoSi0hgAu3xjXjbt9qDQ,18534
|
|
446
453
|
mistralai/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
447
454
|
mistralai/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
448
455
|
mistralai/utils/__init__.py,sha256=CAG0O76aEToGKXpT6Ft87Vd-iiQTh4XdBrQ37BVbsiM,5861
|
|
@@ -462,7 +469,7 @@ mistralai/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvO
|
|
|
462
469
|
mistralai/utils/unmarshal_json_response.py,sha256=mCQ2G9mE9432ExbhO1PleywDN3UYOPW2exzcJX22gCM,585
|
|
463
470
|
mistralai/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
464
471
|
mistralai/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
465
|
-
mistralai-1.
|
|
466
|
-
mistralai-1.
|
|
467
|
-
mistralai-1.
|
|
468
|
-
mistralai-1.
|
|
472
|
+
mistralai-1.10.0.dist-info/METADATA,sha256=vuGntZvKPSQXYRRyIAboU4vS4q5UNmOovAWrMFySSW4,40244
|
|
473
|
+
mistralai-1.10.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
474
|
+
mistralai-1.10.0.dist-info/licenses/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
|
|
475
|
+
mistralai-1.10.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|