mistralai 1.8.2__py3-none-any.whl → 1.9.1__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/types.py +7 -0
- mistralai/_version.py +3 -3
- mistralai/agents.py +8 -4
- mistralai/basesdk.py +12 -20
- mistralai/chat.py +8 -4
- mistralai/classifiers.py +8 -0
- mistralai/conversations.py +34 -14
- mistralai/embeddings.py +2 -0
- mistralai/extra/run/context.py +2 -4
- mistralai/files.py +12 -0
- mistralai/fim.py +4 -0
- mistralai/httpclient.py +6 -16
- mistralai/jobs.py +10 -0
- mistralai/mistral_agents.py +10 -0
- mistralai/mistral_jobs.py +8 -0
- mistralai/models/__init__.py +1356 -723
- mistralai/models/agent.py +1 -1
- mistralai/models/agentconversation.py +1 -1
- mistralai/models/agentcreationrequest.py +1 -1
- mistralai/models/agenthandoffentry.py +1 -1
- mistralai/models/agents_api_v1_conversations_getop.py +2 -0
- mistralai/models/agents_api_v1_conversations_historyop.py +2 -0
- mistralai/models/agents_api_v1_conversations_messagesop.py +2 -0
- mistralai/models/agents_api_v1_conversations_restart_streamop.py +2 -0
- mistralai/models/agents_api_v1_conversations_restartop.py +2 -0
- mistralai/models/agentscompletionrequest.py +3 -1
- mistralai/models/agentscompletionstreamrequest.py +3 -1
- mistralai/models/agentupdaterequest.py +1 -1
- mistralai/models/assistantmessage.py +1 -1
- mistralai/models/basemodelcard.py +8 -6
- mistralai/models/batchjobin.py +1 -1
- mistralai/models/batchjobout.py +1 -1
- mistralai/models/chatcompletionrequest.py +3 -1
- mistralai/models/chatcompletionstreamrequest.py +3 -1
- mistralai/models/classifierdetailedjobout.py +1 -1
- mistralai/models/classifierftmodelout.py +1 -1
- mistralai/models/classifierjobout.py +1 -1
- mistralai/models/classifiertargetin.py +1 -1
- mistralai/models/classifiertrainingparameters.py +1 -1
- mistralai/models/classifiertrainingparametersin.py +1 -1
- mistralai/models/completionargs.py +1 -1
- mistralai/models/completiondetailedjobout.py +1 -1
- mistralai/models/completionftmodelout.py +1 -1
- mistralai/models/completionjobout.py +1 -1
- mistralai/models/completionresponsestreamchoice.py +1 -1
- mistralai/models/completiontrainingparameters.py +1 -1
- mistralai/models/completiontrainingparametersin.py +1 -1
- mistralai/models/contentchunk.py +3 -0
- mistralai/models/conversationrequest.py +1 -1
- mistralai/models/conversationstreamrequest.py +1 -1
- mistralai/models/conversationusageinfo.py +1 -1
- mistralai/models/deltamessage.py +1 -1
- mistralai/models/documenturlchunk.py +1 -1
- mistralai/models/embeddingrequest.py +1 -1
- mistralai/models/eventout.py +1 -1
- mistralai/models/filechunk.py +23 -0
- mistralai/models/files_api_routes_list_filesop.py +1 -1
- mistralai/models/fileschema.py +1 -1
- mistralai/models/fimcompletionrequest.py +1 -1
- mistralai/models/fimcompletionstreamrequest.py +1 -1
- mistralai/models/ftmodelcard.py +9 -6
- mistralai/models/functioncallentry.py +1 -1
- mistralai/models/functionresultentry.py +1 -1
- mistralai/models/githubrepositoryin.py +1 -1
- mistralai/models/githubrepositoryout.py +1 -1
- mistralai/models/imageurl.py +1 -1
- mistralai/models/inputentries.py +21 -2
- mistralai/models/jobin.py +1 -1
- mistralai/models/jobmetadataout.py +1 -1
- mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py +1 -1
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +1 -1
- mistralai/models/jsonschema.py +1 -1
- mistralai/models/legacyjobmetadataout.py +1 -1
- mistralai/models/messageinputentry.py +4 -4
- mistralai/models/messageoutputentry.py +1 -1
- mistralai/models/messageoutputevent.py +1 -1
- mistralai/models/metricout.py +1 -1
- mistralai/models/modelcapabilities.py +3 -0
- mistralai/models/modelconversation.py +1 -1
- mistralai/models/ocrimageobject.py +1 -1
- mistralai/models/ocrpageobject.py +1 -1
- mistralai/models/ocrrequest.py +5 -3
- mistralai/models/ocrresponse.py +1 -1
- mistralai/models/ocrusageinfo.py +1 -1
- mistralai/models/responseformat.py +1 -1
- mistralai/models/retrievefileout.py +1 -1
- mistralai/models/toolexecutionentry.py +1 -1
- mistralai/models/toolfilechunk.py +1 -1
- mistralai/models/toolmessage.py +1 -1
- mistralai/models/toolreferencechunk.py +1 -1
- mistralai/models/updateftmodelin.py +1 -1
- mistralai/models/uploadfileout.py +1 -1
- mistralai/models/usermessage.py +1 -1
- mistralai/models/wandbintegration.py +1 -1
- mistralai/models/wandbintegrationout.py +1 -1
- mistralai/models_.py +14 -2
- mistralai/ocr.py +2 -0
- mistralai/sdk.py +68 -40
- mistralai/sdkconfiguration.py +0 -7
- mistralai/types/basemodel.py +3 -3
- mistralai/utils/__init__.py +131 -45
- mistralai/utils/datetimes.py +23 -0
- mistralai/utils/enums.py +67 -27
- mistralai/utils/forms.py +49 -28
- mistralai/utils/serializers.py +32 -3
- {mistralai-1.8.2.dist-info → mistralai-1.9.1.dist-info}/METADATA +13 -6
- {mistralai-1.8.2.dist-info → mistralai-1.9.1.dist-info}/RECORD +109 -107
- {mistralai-1.8.2.dist-info → mistralai-1.9.1.dist-info}/LICENSE +0 -0
- {mistralai-1.8.2.dist-info → mistralai-1.9.1.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: mistralai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.9.1
|
|
4
4
|
Summary: Python Client SDK for the Mistral AI API.
|
|
5
5
|
Author: Mistral
|
|
6
6
|
Requires-Python: >=3.9
|
|
@@ -169,7 +169,7 @@ with Mistral(
|
|
|
169
169
|
"content": "Who is the best French painter? Answer in one short sentence.",
|
|
170
170
|
"role": "user",
|
|
171
171
|
},
|
|
172
|
-
])
|
|
172
|
+
], stream=False)
|
|
173
173
|
|
|
174
174
|
# Handle response
|
|
175
175
|
print(res)
|
|
@@ -195,7 +195,7 @@ async def main():
|
|
|
195
195
|
"content": "Who is the best French painter? Answer in one short sentence.",
|
|
196
196
|
"role": "user",
|
|
197
197
|
},
|
|
198
|
-
])
|
|
198
|
+
], stream=False)
|
|
199
199
|
|
|
200
200
|
# Handle response
|
|
201
201
|
print(res)
|
|
@@ -271,7 +271,7 @@ with Mistral(
|
|
|
271
271
|
"content": "Who is the best French painter? Answer in one short sentence.",
|
|
272
272
|
"role": "user",
|
|
273
273
|
},
|
|
274
|
-
], agent_id="<id>")
|
|
274
|
+
], agent_id="<id>", stream=False)
|
|
275
275
|
|
|
276
276
|
# Handle response
|
|
277
277
|
print(res)
|
|
@@ -297,7 +297,7 @@ async def main():
|
|
|
297
297
|
"content": "Who is the best French painter? Answer in one short sentence.",
|
|
298
298
|
"role": "user",
|
|
299
299
|
},
|
|
300
|
-
], agent_id="<id>")
|
|
300
|
+
], agent_id="<id>", stream=False)
|
|
301
301
|
|
|
302
302
|
# Handle response
|
|
303
303
|
print(res)
|
|
@@ -574,7 +574,14 @@ with Mistral(
|
|
|
574
574
|
api_key=os.getenv("MISTRAL_API_KEY", ""),
|
|
575
575
|
) as mistral:
|
|
576
576
|
|
|
577
|
-
res = mistral.beta.conversations.start_stream(inputs=
|
|
577
|
+
res = mistral.beta.conversations.start_stream(inputs=[
|
|
578
|
+
{
|
|
579
|
+
"object": "entry",
|
|
580
|
+
"type": "function.result",
|
|
581
|
+
"tool_call_id": "<id>",
|
|
582
|
+
"result": "<value>",
|
|
583
|
+
},
|
|
584
|
+
], stream=True)
|
|
578
585
|
|
|
579
586
|
with res as event_stream:
|
|
580
587
|
for event in event_stream:
|
|
@@ -138,18 +138,18 @@ mistralai/_hooks/custom_user_agent.py,sha256=cHfp43RcsNvHusq8WVxWrCS3w-pmzJ8uNuv
|
|
|
138
138
|
mistralai/_hooks/deprecation_warning.py,sha256=eyEOf7-o9uqqNWJnufD2RXp3dYrGV4in9q76yLC1zog,921
|
|
139
139
|
mistralai/_hooks/registration.py,sha256=ML0W-XbE4WYdJ4eGks_XxF2aLCJTaIWjQATFGzFwvyU,861
|
|
140
140
|
mistralai/_hooks/sdkhooks.py,sha256=s-orhdvnV89TmI3QiPC2LWQtYeM9RrsG1CTll-fYZmQ,2559
|
|
141
|
-
mistralai/_hooks/types.py,sha256=
|
|
142
|
-
mistralai/_version.py,sha256=
|
|
143
|
-
mistralai/agents.py,sha256
|
|
141
|
+
mistralai/_hooks/types.py,sha256=70IiFr5bfsJYafuDkXQWVfl6nY4dQkA5SZoEBCircqs,3047
|
|
142
|
+
mistralai/_version.py,sha256=ZtC79UUPgLX2HaQu3wqpdegceaS6uMMTzejYcY2hpg0,460
|
|
143
|
+
mistralai/agents.py,sha256=3E-c1YZOp3mS1PqA6OYekZmOcAdLCqWfq1o-hqUMsIw,33960
|
|
144
144
|
mistralai/async_client.py,sha256=KUdYxIIqoD6L7vB0EGwUR6lQ0NK5iCTHjnLVR9CVcJY,355
|
|
145
|
-
mistralai/basesdk.py,sha256=
|
|
145
|
+
mistralai/basesdk.py,sha256=Ri8PbeqeDKsRWmc7rFsBtrZ8mKglXUkjwqnY543kywQ,11865
|
|
146
146
|
mistralai/batch.py,sha256=YN4D0Duwrap9Ysmp_lRpADYp1Znay7THE_z8ERGvDds,501
|
|
147
147
|
mistralai/beta.py,sha256=zcRqEzVxBsog2vWbX4X7ZraozAvhNyCo1_oXxLbBuAo,727
|
|
148
|
-
mistralai/chat.py,sha256=
|
|
149
|
-
mistralai/classifiers.py,sha256=
|
|
148
|
+
mistralai/chat.py,sha256=m6qGMxAAw4hQCRlhuT-LAukCIHdO4X2yVAI5ft9ImjU,41857
|
|
149
|
+
mistralai/classifiers.py,sha256=EsAvZi0dxM4qDw8xl84h6kZBWm4zdiP-f0eslqvDxAo,34152
|
|
150
150
|
mistralai/client.py,sha256=hrPg-LciKMKiascF0WbRRmqQyCv1lb2yDh6j-aaKVNo,509
|
|
151
|
-
mistralai/conversations.py,sha256=
|
|
152
|
-
mistralai/embeddings.py,sha256=
|
|
151
|
+
mistralai/conversations.py,sha256=lwc8oIqBHvbcLo_Bp00arT8xU-2fGFxi1RQcpHTKLCU,110846
|
|
152
|
+
mistralai/embeddings.py,sha256=L0jk6bXAc3FUYv0Rqk6CPXXabqhwfYG1OXLMlaille8,9352
|
|
153
153
|
mistralai/extra/README.md,sha256=BTS9fy0ijkiUP7ZVoFQ7FVBxHtXIXqucYZyy_ucFjo4,1739
|
|
154
154
|
mistralai/extra/__init__.py,sha256=8DsU_omYYadqcwlmBOoakBwkWKcSohwLmtB8v-jkn2M,392
|
|
155
155
|
mistralai/extra/exceptions.py,sha256=4EEygCfdsniYiroHEFVSVDqerQZkpRG027mlJXvMqns,428
|
|
@@ -159,7 +159,7 @@ mistralai/extra/mcp/base.py,sha256=OyvpekpR_SMYLWSzNW5HyVqTpBKBlikhw54B5-Oj1DU,5
|
|
|
159
159
|
mistralai/extra/mcp/sse.py,sha256=ikAw5YDVPY_nYT9zzB3-RYrZg9tVmt4WaY9Rki-fMsM,6385
|
|
160
160
|
mistralai/extra/mcp/stdio.py,sha256=n_70r_MhD46lVZIMmsa8wfZ0czxFdPb_k3axoimV0fc,647
|
|
161
161
|
mistralai/extra/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
162
|
-
mistralai/extra/run/context.py,sha256=
|
|
162
|
+
mistralai/extra/run/context.py,sha256=59KkZl96y96S2oEVPkuCrz_J-AkJEu7Do8-TQvhVjRY,11110
|
|
163
163
|
mistralai/extra/run/result.py,sha256=SN9yGovPD4eMkDbz6qqn4uYzkkrKNeTb2GQ87b-lJCQ,7149
|
|
164
164
|
mistralai/extra/run/tools.py,sha256=XhghR3qn0H91Kn1Ld3qNgpoD3Wj73ZP1V7zOXnuBw8k,7698
|
|
165
165
|
mistralai/extra/run/utils.py,sha256=lmqxqCuwLwYsjua460-I6q4OK2om8BxgvWm4NPiV7fs,1169
|
|
@@ -170,19 +170,19 @@ mistralai/extra/tests/test_utils.py,sha256=VesGDR_IiE6u0iY7yOi1iERd7esdJgi2aL4xZ
|
|
|
170
170
|
mistralai/extra/utils/__init__.py,sha256=SExo5t_hx0ybiQhVJIG3r3hOA-Pfny3lIO_WsqNXlN8,116
|
|
171
171
|
mistralai/extra/utils/_pydantic_helper.py,sha256=_mzrbZGU07M96CzcxgjcV25NtIGu5EUfotaN8NDUoFc,883
|
|
172
172
|
mistralai/extra/utils/response_format.py,sha256=uDNpvOHhk2se3JTXweWYMbnkyOcOqhMe2yxZ2lYNe1k,913
|
|
173
|
-
mistralai/files.py,sha256=
|
|
174
|
-
mistralai/fim.py,sha256=
|
|
173
|
+
mistralai/files.py,sha256=K53vNyP21U7Ip6ilZvyZyYM-NQ2JRK7HZznMn45vmII,46327
|
|
174
|
+
mistralai/fim.py,sha256=TDd8FN2M3SKGRjcWcvvS1zot5S4bk_IXZR94IpxsN9Y,28123
|
|
175
175
|
mistralai/fine_tuning.py,sha256=UENQqfE054VEsAYxdruV-TBLFIFfO-joXNznH08GUvE,477
|
|
176
|
-
mistralai/httpclient.py,sha256=
|
|
177
|
-
mistralai/jobs.py,sha256=
|
|
178
|
-
mistralai/mistral_agents.py,sha256=
|
|
179
|
-
mistralai/mistral_jobs.py,sha256=
|
|
180
|
-
mistralai/models/__init__.py,sha256=
|
|
181
|
-
mistralai/models/agent.py,sha256=
|
|
182
|
-
mistralai/models/agentconversation.py,sha256
|
|
183
|
-
mistralai/models/agentcreationrequest.py,sha256=
|
|
176
|
+
mistralai/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
177
|
+
mistralai/jobs.py,sha256=BUeEMx-SR3QrB8tyjjDndtcCTF-cs3640I38AWYW18w,47237
|
|
178
|
+
mistralai/mistral_agents.py,sha256=6osNLzBNN9IFRhpeNzt6VGpqHlCo_6HnmMBvxzqd3F4,46043
|
|
179
|
+
mistralai/mistral_jobs.py,sha256=NZtJNtLI9uFzCqLKRHpQrm3JKEni-TkLYWcBxfQcD04,31490
|
|
180
|
+
mistralai/models/__init__.py,sha256=i8vvFJ2Fgt7nzbbMiiLHzafe3I8SfUQQgxpcLST6GhA,81217
|
|
181
|
+
mistralai/models/agent.py,sha256=kM3lPW08V5B3CfBuIFZrEYAyClECj0Ial7-cQztfGmA,4191
|
|
182
|
+
mistralai/models/agentconversation.py,sha256=-vqTZ116MNx4JRs9N6cabsGXn4tILg_JP3JcL-iJpK0,2092
|
|
183
|
+
mistralai/models/agentcreationrequest.py,sha256=VdCCQEnBVfZU2m1EtRy5vEm_zsPIGPGLF21TXKjOm7E,3958
|
|
184
184
|
mistralai/models/agenthandoffdoneevent.py,sha256=HDGDAni5U_NXuUSZEvcqjIjDVjAjZrYZfxzN0D_YLBM,813
|
|
185
|
-
mistralai/models/agenthandoffentry.py,sha256=
|
|
185
|
+
mistralai/models/agenthandoffentry.py,sha256=qJMZLfg8JksJjzibYsRlTDvYoVQhf4a9AQK3s0o1irA,2156
|
|
186
186
|
mistralai/models/agenthandoffstartedevent.py,sha256=8J07a6u6EnuBjtGtMcCqUzWJxfnaVy8N6PNoFeyqU4Q,850
|
|
187
187
|
mistralai/models/agents_api_v1_agents_getop.py,sha256=BdrUpxf-rVGvxFlLEnBLj8MGHE82jHSpWWb5xqvzwDA,494
|
|
188
188
|
mistralai/models/agents_api_v1_agents_listop.py,sha256=1NJOQ9vTXDYiT7nvATN1KxnXsl1S5FMjmwnpJZQulD4,735
|
|
@@ -190,156 +190,157 @@ mistralai/models/agents_api_v1_agents_update_versionop.py,sha256=-ANBszFQ1Ig5sIB
|
|
|
190
190
|
mistralai/models/agents_api_v1_agents_updateop.py,sha256=BFslxxeejm4kyLbWGTFaWNQ2ilFLavfbEUfi0SwjELE,802
|
|
191
191
|
mistralai/models/agents_api_v1_conversations_append_streamop.py,sha256=ZnhYubtb4wwxfbFqV19LyMvMW9V22F-fEsr1RmBZVRA,1072
|
|
192
192
|
mistralai/models/agents_api_v1_conversations_appendop.py,sha256=uKPtHvaJEZTc-N6SPmKk_wEuPDTDLXeuCYyx2l0zKTk,1016
|
|
193
|
-
mistralai/models/agents_api_v1_conversations_getop.py,sha256=
|
|
194
|
-
mistralai/models/agents_api_v1_conversations_historyop.py,sha256=
|
|
193
|
+
mistralai/models/agents_api_v1_conversations_getop.py,sha256=SS2tOzjHhvPVmqJ_zhf7IxKjwkywXa0v8g3RSizPqfM,1318
|
|
194
|
+
mistralai/models/agents_api_v1_conversations_historyop.py,sha256=7mufGwn2hJ75I0oukJvXFqgmVVXxG6E-K7fj_46iJO4,670
|
|
195
195
|
mistralai/models/agents_api_v1_conversations_listop.py,sha256=N7bwRL4VtP3-a9Q-15ck37TvWux3br1O4flNp97-D0g,1163
|
|
196
|
-
mistralai/models/agents_api_v1_conversations_messagesop.py,sha256=
|
|
197
|
-
mistralai/models/agents_api_v1_conversations_restart_streamop.py,sha256=
|
|
198
|
-
mistralai/models/agents_api_v1_conversations_restartop.py,sha256=
|
|
199
|
-
mistralai/models/agentscompletionrequest.py,sha256=
|
|
200
|
-
mistralai/models/agentscompletionstreamrequest.py,sha256=
|
|
201
|
-
mistralai/models/agentupdaterequest.py,sha256=
|
|
196
|
+
mistralai/models/agents_api_v1_conversations_messagesop.py,sha256=MC7ExiTo7R2EenYoSfTyE02zJmLFebS6mJranxdK5gk,674
|
|
197
|
+
mistralai/models/agents_api_v1_conversations_restart_streamop.py,sha256=cNuV80H-OxH606FV5zIAcceqS0fD9vwlPmqHyXOBmWk,1095
|
|
198
|
+
mistralai/models/agents_api_v1_conversations_restartop.py,sha256=pjsbjzKTeWgSBiviDzMx50gVqRIGP4dKr3FqG-SOSoY,1039
|
|
199
|
+
mistralai/models/agentscompletionrequest.py,sha256=9eQ3v_F4pIOFP0d2mph27_3PS45a0UvQzDSFO88EhAk,8589
|
|
200
|
+
mistralai/models/agentscompletionstreamrequest.py,sha256=hTypANJ-SHYTpWt7wWzQWCHuvcnahZoGdDJ1COQsdys,8034
|
|
201
|
+
mistralai/models/agentupdaterequest.py,sha256=uoqwrx1KypzBrRNYECuoD_Z6r0ahsxqDiPvhuqnaH4E,4100
|
|
202
202
|
mistralai/models/apiendpoint.py,sha256=Hvar5leWsJR_FYb0UzRlSw3vRdBZhk_6BR5r2pIb214,400
|
|
203
203
|
mistralai/models/archiveftmodelout.py,sha256=VdppiqIB9JGNB2B0-Y6XQfQgDmB-hOa1Bta3v_StbLs,565
|
|
204
|
-
mistralai/models/assistantmessage.py,sha256=
|
|
205
|
-
mistralai/models/basemodelcard.py,sha256=
|
|
204
|
+
mistralai/models/assistantmessage.py,sha256=3qbCraZpjX_clXjT1wgOBeQuQBjX22XLQMIlR3v5fZw,2630
|
|
205
|
+
mistralai/models/basemodelcard.py,sha256=5HUKthg3BQse-FnSkbwOIsf6AEqzXb8liSnGdSwwyo0,3206
|
|
206
206
|
mistralai/models/batcherror.py,sha256=tThkO9B-g-6eDSBCm1Emd-zDI4B3mk2vAl0L1MI3pdQ,390
|
|
207
|
-
mistralai/models/batchjobin.py,sha256=
|
|
208
|
-
mistralai/models/batchjobout.py,sha256=
|
|
207
|
+
mistralai/models/batchjobin.py,sha256=E6f66Wu4tGfOY_wMLL6waswlzeYXHkJ_Ij1s4JbVmuQ,1856
|
|
208
|
+
mistralai/models/batchjobout.py,sha256=otj3W1vf6OznXKzYJjnLgdSIAiBAH0ZT6i5pSyjlyyk,2840
|
|
209
209
|
mistralai/models/batchjobsout.py,sha256=8ZpO0Lxuygz_4p5cemhJo7ks9YsTmio0EaHvrjyr0Jc,636
|
|
210
210
|
mistralai/models/batchjobstatus.py,sha256=WlrIl5vWQGfLmgQA91_9CnCMKhWN6Lli458fT-4Asj4,294
|
|
211
211
|
mistralai/models/builtinconnectors.py,sha256=cX1M7Q_2tsWeuH-lKWomXED7xN7Du6BJKvYpep1vD30,284
|
|
212
212
|
mistralai/models/chatclassificationrequest.py,sha256=PmU036oOlGqfd75hNESDUJiN4uJNYguACoCt6CzBC2M,534
|
|
213
213
|
mistralai/models/chatcompletionchoice.py,sha256=6iIFLZj2KYx0HFfzS3-E3sNXG6mPEAlDyXxIA5iZI_U,849
|
|
214
|
-
mistralai/models/chatcompletionrequest.py,sha256=
|
|
214
|
+
mistralai/models/chatcompletionrequest.py,sha256=aSzEtkHVm7O-txPhhbXswxNxtClpMwCZQwxM17ay030,10529
|
|
215
215
|
mistralai/models/chatcompletionresponse.py,sha256=px0hjCapAtTP50u36hiQdPcC9X6LU81Nq5aJ3AlofjM,709
|
|
216
|
-
mistralai/models/chatcompletionstreamrequest.py,sha256=
|
|
216
|
+
mistralai/models/chatcompletionstreamrequest.py,sha256=__8jzGuFidSO2rtDXXiQCo6mKEPSccgo3ZQyHuXY4Ys,10217
|
|
217
217
|
mistralai/models/chatmoderationrequest.py,sha256=x1eAoxx_GhaxqGRe4wsqNaUi59K39HQakkedLJVUVD8,2236
|
|
218
218
|
mistralai/models/checkpointout.py,sha256=A2kXS8-VT_1lbg3brifVjZD6tXdsET8vLqBm2a-yXgA,1109
|
|
219
219
|
mistralai/models/classificationrequest.py,sha256=FqQfSrGYwLUjVw78Ft7tbmhAkUN0FqolCn4MNArOuR8,922
|
|
220
220
|
mistralai/models/classificationresponse.py,sha256=tiQzQnqDr34oFJnMmbI_wleKqAGHdn3W6iFyL0cZ-uY,607
|
|
221
221
|
mistralai/models/classificationtargetresult.py,sha256=EOJeumiN8JsB_85MxOgeo6c9-Upal3yfPrQjNkI0YjA,371
|
|
222
|
-
mistralai/models/classifierdetailedjobout.py,sha256=
|
|
223
|
-
mistralai/models/classifierftmodelout.py,sha256=
|
|
224
|
-
mistralai/models/classifierjobout.py,sha256=
|
|
225
|
-
mistralai/models/classifiertargetin.py,sha256=
|
|
222
|
+
mistralai/models/classifierdetailedjobout.py,sha256=QBHqeh1VLpuKY2IaWqnj7c12UwC43i5KPBd2CQuAM6k,4808
|
|
223
|
+
mistralai/models/classifierftmodelout.py,sha256=pqKsnPT8KwIVt6TFMi0DGPEK_Nq_sAkFzXzf0C_BCW0,2758
|
|
224
|
+
mistralai/models/classifierjobout.py,sha256=OLn9JY-IcPKX8FQKU22R_UN0E20Zjx3kxnSVplLZ9bI,6003
|
|
225
|
+
mistralai/models/classifiertargetin.py,sha256=eMNNBpEagig9jvkS-jxDSL9xELUiReHkHNoS-kPykCc,1679
|
|
226
226
|
mistralai/models/classifiertargetout.py,sha256=WK94y6c1EsxcC7bCnUFus0ljxHQ4Q-b4eudswKpOrmU,561
|
|
227
|
-
mistralai/models/classifiertrainingparameters.py,sha256=
|
|
228
|
-
mistralai/models/classifiertrainingparametersin.py,sha256=
|
|
227
|
+
mistralai/models/classifiertrainingparameters.py,sha256=ty7hE0wzQAIeMyaPvTby30NxsjB2kX31IiZcBp5auxI,2182
|
|
228
|
+
mistralai/models/classifiertrainingparametersin.py,sha256=6fb8UpKCunrP4na0j3-U-owHe8h3hqRpO7-dmo1ZlfI,4462
|
|
229
229
|
mistralai/models/codeinterpretertool.py,sha256=aSM8mi2sRft1o04aGlB24sFl3s49xM1zEnWP50MBMLU,493
|
|
230
|
-
mistralai/models/completionargs.py,sha256=
|
|
230
|
+
mistralai/models/completionargs.py,sha256=sxxIJkmxCe8lZu8Mr8arZZFegLLVKeQe3NwBX-K4m8c,3167
|
|
231
231
|
mistralai/models/completionargsstop.py,sha256=3TB3uIYxTPWXzMNnQb9bkYlLD5u92G0xBdzP_dIZNjQ,371
|
|
232
232
|
mistralai/models/completionchunk.py,sha256=Cdq-FBWa1oBhrxapoOAj8qr6xmkeIPsfPQSbjeK6NLY,871
|
|
233
|
-
mistralai/models/completiondetailedjobout.py,sha256=
|
|
233
|
+
mistralai/models/completiondetailedjobout.py,sha256=P3nIHdwnftrW4XZl7WpbRhsF2YnPbYYXmyAzZ54lK3s,5027
|
|
234
234
|
mistralai/models/completionevent.py,sha256=rFc5dJBRnNOzspI95Jhkjd9WyM476u48cN0T1Vh-Cxw,399
|
|
235
|
-
mistralai/models/completionftmodelout.py,sha256=
|
|
236
|
-
mistralai/models/completionjobout.py,sha256=
|
|
237
|
-
mistralai/models/completionresponsestreamchoice.py,sha256=
|
|
238
|
-
mistralai/models/completiontrainingparameters.py,sha256=
|
|
239
|
-
mistralai/models/completiontrainingparametersin.py,sha256=
|
|
240
|
-
mistralai/models/contentchunk.py,sha256=
|
|
235
|
+
mistralai/models/completionftmodelout.py,sha256=8P5vS7l0CeEwlxje4hY3_00HuF0LvD4QDbyOICe3HCs,2505
|
|
236
|
+
mistralai/models/completionjobout.py,sha256=DmoGzVMylZCFuCY0gZ-3S2c_FSoIoLnU86lwm1lmi0k,6159
|
|
237
|
+
mistralai/models/completionresponsestreamchoice.py,sha256=tFAEbhr2C9v1QIqWINONnHmeQ8A1pyW29Ye5vFQ_ANY,1933
|
|
238
|
+
mistralai/models/completiontrainingparameters.py,sha256=vx5fWGul8npjXAY1pCWsJhHCcMOY7goIKqzGN4-BvMg,2324
|
|
239
|
+
mistralai/models/completiontrainingparametersin.py,sha256=6d6grsIMPX7SZoaunp3kR1cC66VMtEM_OlxU-gz1KXA,4582
|
|
240
|
+
mistralai/models/contentchunk.py,sha256=6OEVsjChgk5ZVHsWRDnuSJRmzocJertuPibQ4eK0_aw,1197
|
|
241
241
|
mistralai/models/conversationappendrequest.py,sha256=wYOL4zWCLat6M8bakwtq9_JiUm_DBRR5cnu7DM-dTk4,1282
|
|
242
242
|
mistralai/models/conversationappendstreamrequest.py,sha256=Pa3YahEch0aG1h7sVC-V1rVCpwrCRpWf-2cuJqBu7ig,1327
|
|
243
243
|
mistralai/models/conversationevents.py,sha256=PvH27_rHVVO_XMIqjbaIauguO8eMC3_o649wENUdw94,2767
|
|
244
244
|
mistralai/models/conversationhistory.py,sha256=dSCA9sM2jeqMKbTqTxCUiC_6FIO23zsfind6qpY2MRI,1759
|
|
245
245
|
mistralai/models/conversationinputs.py,sha256=S0jyBRBx2WKxwGQx2QdbXCEWqmLZ1obocxquvCXk9Po,460
|
|
246
246
|
mistralai/models/conversationmessages.py,sha256=kUvWLKuyPyZLQbBd2lJAZ8FQoM0RIGw_PlJc4Cwltwk,873
|
|
247
|
-
mistralai/models/conversationrequest.py,sha256=
|
|
247
|
+
mistralai/models/conversationrequest.py,sha256=mJytNIG-IoRTGx-N0Y4a5hHYBDgmEIRrLB-7-t_SGvY,4342
|
|
248
248
|
mistralai/models/conversationresponse.py,sha256=Md9E4q-jDVHlHuYe27vHT9Gv6i4AnzNjLSrA9jtcBn8,1646
|
|
249
249
|
mistralai/models/conversationrestartrequest.py,sha256=CYM0lb286pGgZKhHCCKAH1ODysVNo0MOvHabQALQtaQ,1514
|
|
250
250
|
mistralai/models/conversationrestartstreamrequest.py,sha256=ZvMewcQgHlt7oDz6HxvViL8UAcd_4LUEF99MxXDc7r4,1559
|
|
251
|
-
mistralai/models/conversationstreamrequest.py,sha256=
|
|
252
|
-
mistralai/models/conversationusageinfo.py,sha256=
|
|
251
|
+
mistralai/models/conversationstreamrequest.py,sha256=QYAhy6YCbKFbFAh8xb9fsUg4BPMXFM9AZiceRja1b68,4569
|
|
252
|
+
mistralai/models/conversationusageinfo.py,sha256=K9XqE-TgF4sytMjEj-eMhPZKoO4HgJKZKwCotQrBUko,1937
|
|
253
253
|
mistralai/models/delete_model_v1_models_model_id_deleteop.py,sha256=lnVRFX-G0jkn1dCFC89sXY2Pj_w4QfMDeF1tPjS4hWE,602
|
|
254
254
|
mistralai/models/deletefileout.py,sha256=s3a-H2RgFQ9HX0kYSmP6GwmwE1jghz7dBj-3G0NBVSY,587
|
|
255
255
|
mistralai/models/deletemodelout.py,sha256=W_crO0WtksoKUgq5s9Yh8zS8RxSuyKYQCBt1i8vB1sE,693
|
|
256
|
-
mistralai/models/deltamessage.py,sha256=
|
|
256
|
+
mistralai/models/deltamessage.py,sha256=3C0YZ9pQksIoE-i_0FqP5GUAQ90EeKUzQnHkqmhJAlc,1945
|
|
257
257
|
mistralai/models/documentlibrarytool.py,sha256=EN50sX8wgfAw7mF6W8BkOwKyqRvEzGvHgINn-evuCcg,654
|
|
258
|
-
mistralai/models/documenturlchunk.py,sha256=
|
|
258
|
+
mistralai/models/documenturlchunk.py,sha256=yiqte4P63DCyDKDIYKD0pP9S4HjFNXHCXob4nnzY6nY,1710
|
|
259
259
|
mistralai/models/embeddingdtype.py,sha256=c7L-PKhBgPVPZeMGuMub0ZOs0MdxMbpW2ebE0t7oEpU,209
|
|
260
|
-
mistralai/models/embeddingrequest.py,sha256=
|
|
260
|
+
mistralai/models/embeddingrequest.py,sha256=G-JirOJnoE8qUCorqbRSUAjeG8db5LPFPsIf8RuBdKE,2264
|
|
261
261
|
mistralai/models/embeddingresponse.py,sha256=te6E_LYEzRjHJ9QREmsFp5PeNP2J_8ALVjyb1T20pNA,663
|
|
262
262
|
mistralai/models/embeddingresponsedata.py,sha256=fJ3mrZqyBBBE40a6iegOJX3DVDfgyMRq23ByeGSTLFk,534
|
|
263
|
-
mistralai/models/eventout.py,sha256=
|
|
263
|
+
mistralai/models/eventout.py,sha256=UMqHEJMMJH68gbPA7uKF8bnPZmVzKSa-fXibFyXqTOg,1639
|
|
264
|
+
mistralai/models/filechunk.py,sha256=GhF5wtOAa-M0uQaQgLrzYB8HN9wsasm3WJ6j9Et_LsY,641
|
|
264
265
|
mistralai/models/filepurpose.py,sha256=lQk45E78j4bJyMi59jLH5IjU1rCUsqprF28P4ArGQoo,263
|
|
265
266
|
mistralai/models/files_api_routes_delete_fileop.py,sha256=HOx-hJxphSYF-JV3zOGe2eucWQUpfVqxG0IDaSa3dcE,500
|
|
266
267
|
mistralai/models/files_api_routes_download_fileop.py,sha256=y3sLFZ-j4eUuxCyIP0L-exy0ViqskDLkghkOccElBQQ,504
|
|
267
268
|
mistralai/models/files_api_routes_get_signed_urlop.py,sha256=e_XczBgInaylmHJ9m5wJQ78hfCp2PrrTrT8bxGGi8BI,879
|
|
268
|
-
mistralai/models/files_api_routes_list_filesop.py,sha256=
|
|
269
|
+
mistralai/models/files_api_routes_list_filesop.py,sha256=81Zl85ibq1GW0mHAigB67RJd5ejfmtjpx_v6_T7hOkY,3136
|
|
269
270
|
mistralai/models/files_api_routes_retrieve_fileop.py,sha256=8DjSbYqUqFoPq-qcNXyVADeBVSsoCfHFlkRfmwYk-ns,504
|
|
270
271
|
mistralai/models/files_api_routes_upload_fileop.py,sha256=gIGH5xcPryWYkj1FmNv_0-9He-QB_rRf1a5nUYBNDTU,2213
|
|
271
|
-
mistralai/models/fileschema.py,sha256=
|
|
272
|
+
mistralai/models/fileschema.py,sha256=_rmrySQWDp8Qssi0JHnAHYP4xeUINvxtjaMRnRBIwIU,2603
|
|
272
273
|
mistralai/models/filesignedurl.py,sha256=VwvuhzhJulAB99Qxz6zr-2F1aINosAfaSxU0IhytDSU,289
|
|
273
|
-
mistralai/models/fimcompletionrequest.py,sha256=
|
|
274
|
+
mistralai/models/fimcompletionrequest.py,sha256=PiIWU_T3UyN87FWWiwWXDmLbfSMxtbVenBf9z4_Waco,6571
|
|
274
275
|
mistralai/models/fimcompletionresponse.py,sha256=qNgb2WFVgkaW7Isfkk2Aol1gTV9UkhQomcDAhoPDeYw,707
|
|
275
|
-
mistralai/models/fimcompletionstreamrequest.py,sha256=
|
|
276
|
+
mistralai/models/fimcompletionstreamrequest.py,sha256=URsZjjxq9W08TaDivivtkFrvXZ75WOIXMKc4ElTotY0,5950
|
|
276
277
|
mistralai/models/finetuneablemodeltype.py,sha256=XmTpXeQU8AINnn1kVmXldFUauCaEnRtJNFAXUTVb6RQ,197
|
|
277
278
|
mistralai/models/ftclassifierlossfunction.py,sha256=ApQB8ssAh2yE26-CljxPO7Jc5lxq3OoBPR4rUp-Td9U,203
|
|
278
279
|
mistralai/models/ftmodelcapabilitiesout.py,sha256=Cg2ETH8o3eYm79-BEWweWS53wDqa1DIsZ8WtWA32Xic,730
|
|
279
|
-
mistralai/models/ftmodelcard.py,sha256=
|
|
280
|
+
mistralai/models/ftmodelcard.py,sha256=a0Xz0G_DWfv5HhiGo8HphykUmGMFJ_IX_TL7IzBR8Lo,3507
|
|
280
281
|
mistralai/models/function.py,sha256=QaQriwBCCIS65IHO5Ge2OnMW6L1dS-o8JS8zlGYKSRU,534
|
|
281
282
|
mistralai/models/functioncall.py,sha256=VvvBe4bVq1Irqo5t4_n1iq60UF7hLf8tE_GjkbyM8iE,556
|
|
282
|
-
mistralai/models/functioncallentry.py,sha256=
|
|
283
|
+
mistralai/models/functioncallentry.py,sha256=eDWd_nHeEMgSJG-EgnrJlYZQ5-PiIikk1dnfSN7DCm0,2229
|
|
283
284
|
mistralai/models/functioncallentryarguments.py,sha256=9ouc9p97SGUKrBh_fyPLqP5JYFVdqTVVwzMXoTu-WjA,424
|
|
284
285
|
mistralai/models/functioncallevent.py,sha256=XRCC2yTEurXHRRdgfqz44HcLX0VYDOfxUwojUgnigYc,810
|
|
285
286
|
mistralai/models/functionname.py,sha256=jgd0moI9eORQtEAQI4ROiMSKpWSbCLmK6IhDn7uppKY,467
|
|
286
|
-
mistralai/models/functionresultentry.py,sha256=
|
|
287
|
+
mistralai/models/functionresultentry.py,sha256=sw-E0j_bQgQo2KdmzL4KHoGfo1LUYcHaqCXA6IVuEiE,2042
|
|
287
288
|
mistralai/models/functiontool.py,sha256=dtVRauH6JGbvOeaFnWjxjDS0h2jbZbnmIQEGx3CczvU,548
|
|
288
|
-
mistralai/models/githubrepositoryin.py,sha256=
|
|
289
|
-
mistralai/models/githubrepositoryout.py,sha256=
|
|
289
|
+
mistralai/models/githubrepositoryin.py,sha256=wCo1N8F69CSQu_5tP1XQHYmJ093K7LIAcXTD1xQVgP8,1708
|
|
290
|
+
mistralai/models/githubrepositoryout.py,sha256=vTiNoCE62eF0rfg-259UWJZJC7uZK-tSwlDp6i4IYs0,1721
|
|
290
291
|
mistralai/models/httpvalidationerror.py,sha256=l47dL2BTqauhRn4_GdSl3TC-QWsdL98HoloMvp6vtRQ,604
|
|
291
292
|
mistralai/models/imagegenerationtool.py,sha256=VCN82DgLJm9ZwvxYsOfRW8WzBAcSoEy2hB823BsPFqg,493
|
|
292
|
-
mistralai/models/imageurl.py,sha256=
|
|
293
|
+
mistralai/models/imageurl.py,sha256=9ItYx55HH71XsElJVt7kuVfGJ4YvcTNUDKank8-r9h8,1371
|
|
293
294
|
mistralai/models/imageurlchunk.py,sha256=yHgdAi_jOw-e5aXd4Dlr7YCtJcyw-W3QYol8-MAAT1Y,994
|
|
294
|
-
mistralai/models/inputentries.py,sha256=
|
|
295
|
+
mistralai/models/inputentries.py,sha256=3r3UdRfr1XzfYdgF6Q6WPWrLxfohbN2-oT8LV93_h0Q,1199
|
|
295
296
|
mistralai/models/inputs.py,sha256=KqOi7I6tCs51puGHIcTMXIYhJ6tbGONOLcqUBTNV_MM,1707
|
|
296
297
|
mistralai/models/instructrequest.py,sha256=8Y63pPlhD6l8OhfHgoEykUvruRFCmghP7_w354J9ovY,1323
|
|
297
|
-
mistralai/models/jobin.py,sha256=
|
|
298
|
-
mistralai/models/jobmetadataout.py,sha256=
|
|
298
|
+
mistralai/models/jobin.py,sha256=W2kKOf1iTGw03Z8upSAMgx2epL5CyCH-vqx5rnUacM8,5522
|
|
299
|
+
mistralai/models/jobmetadataout.py,sha256=2tQfEgOcEYzv-u8SkpzDncwS0EkfRevW8v7KHkoD_M4,2418
|
|
299
300
|
mistralai/models/jobs_api_routes_batch_cancel_batch_jobop.py,sha256=3Q-YaI2zAX550v--wedoh9XoWg2rRSVFIYOrv2SjhG8,514
|
|
300
301
|
mistralai/models/jobs_api_routes_batch_get_batch_jobop.py,sha256=8kCUZZZKrkDCXFtvWZVcF1XObl8QhLEajBjjfZrd12o,508
|
|
301
|
-
mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py,sha256=
|
|
302
|
+
mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py,sha256=rvHo6unnS52aY633fYIkOeFZnhoP1NG3dDlqwxapqMU,3055
|
|
302
303
|
mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py,sha256=pevOFk9Ji8iebXVadr5d882kKjrvT6_R6b8qBTYkQAU,628
|
|
303
304
|
mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py,sha256=biN40DJv0iQ1Pr1fA0fs6zV5j11C1zlcYt4XLNQILSI,1473
|
|
304
305
|
mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py,sha256=V_sr_0pSoXVkrQszTa2zRmLff_B3WW4PE27GU-fokk8,1270
|
|
305
306
|
mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py,sha256=0QGbsTA2VAHeTsQw15cn_dzurWOrzUWtkIE05meBSNA,1460
|
|
306
|
-
mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=
|
|
307
|
+
mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=t1JhyqIQMMWyLBSL9PUXese6cUPqSY-JCctmluu-Zys,5768
|
|
307
308
|
mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py,sha256=e9b5T3Jjq-y7ZTEGo8w16KrJwcutiD5N-5aFBtZGQTc,1388
|
|
308
309
|
mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py,sha256=_pkyhD7OzG-59fgcajI9NmSLTLDktkCxXo_IuvWeyfs,636
|
|
309
310
|
mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py,sha256=YsjSBijG3EHurZoqXCMjWIa0tz4e_oyMjQzyVD2CoQM,1728
|
|
310
311
|
mistralai/models/jobsout.py,sha256=WD9_RHk39ftEEgVJ5Pd6d6WQz0QudeNf0mXf1b30xAM,1183
|
|
311
|
-
mistralai/models/jsonschema.py,sha256=
|
|
312
|
-
mistralai/models/legacyjobmetadataout.py,sha256=
|
|
312
|
+
mistralai/models/jsonschema.py,sha256=wkhM2CwHk5BqWiWZYn6XYdppc5IitXWirepfxKiDENY,1658
|
|
313
|
+
mistralai/models/legacyjobmetadataout.py,sha256=r2ThsBXEhrNYEZxGWddc8NeL_EymoEMT1UoThRLBY6g,4493
|
|
313
314
|
mistralai/models/listfilesout.py,sha256=tW2fNabLKcftc5kytkjwVaChlOzWRL4FKtNzDak9MNs,468
|
|
314
315
|
mistralai/models/messageentries.py,sha256=vExZZIyOTkmEi-3Bvw2UG1GwGbGr59U_bX-biwIl0Tk,581
|
|
315
316
|
mistralai/models/messageinputcontentchunks.py,sha256=3F8GoSMWv4_JIGUavlyn8aFnHC7KuPiDDbS0U3sW0y0,827
|
|
316
|
-
mistralai/models/messageinputentry.py,sha256=
|
|
317
|
+
mistralai/models/messageinputentry.py,sha256=Z7HvPYnF5Hhk01QZ4pRBvEW-DT3hP9sLSZYDr7ywxaQ,2608
|
|
317
318
|
mistralai/models/messageoutputcontentchunks.py,sha256=LRvAb-Hn0XSKBBRrBdwW7CtMC_X29hzcyPKQ39WlWyo,982
|
|
318
|
-
mistralai/models/messageoutputentry.py,sha256=
|
|
319
|
-
mistralai/models/messageoutputevent.py,sha256=
|
|
320
|
-
mistralai/models/metricout.py,sha256=
|
|
319
|
+
mistralai/models/messageoutputentry.py,sha256=KyhPyXMm1pizXP9QQVFofOoUYOf5AvzXMb37wHVeebI,2942
|
|
320
|
+
mistralai/models/messageoutputevent.py,sha256=5iEtdssMYt27kgobk5SrfTaYE3BrmeDj8sCZtdhqEHg,2715
|
|
321
|
+
mistralai/models/metricout.py,sha256=dMSDFB4CnYIADYLDcKs3rUrDtOhyRVs8ClKr7uu5yrs,2040
|
|
321
322
|
mistralai/models/mistralpromptmode.py,sha256=v0UKuu6N0kcM_gjy3C7pVUWBs9tuMKtbHG6nLF9jtoI,253
|
|
322
|
-
mistralai/models/modelcapabilities.py,sha256=
|
|
323
|
-
mistralai/models/modelconversation.py,sha256=
|
|
323
|
+
mistralai/models/modelcapabilities.py,sha256=FpZZfrk7fg49y3SUinTT1kNOg9ikN6adHobzPiHmJeE,785
|
|
324
|
+
mistralai/models/modelconversation.py,sha256=6_QmpwiY5pfA8dtSF2ZenuAGEZTJSCRr07fe7y2JIYM,4443
|
|
324
325
|
mistralai/models/modellist.py,sha256=D4Y784kQkx0ARhofFrpEqGLfxa-jTY8ev0TQMrD_n8I,995
|
|
325
326
|
mistralai/models/moderationobject.py,sha256=mmzFEcccsT7G9PjmQrsYMijmICbfBtUpVN_ZisuhYbY,655
|
|
326
327
|
mistralai/models/moderationresponse.py,sha256=kxIRI3UJdddj2Hz-E9q21gKQAbacxZoG4hdoZjrae5M,508
|
|
327
|
-
mistralai/models/ocrimageobject.py,sha256=
|
|
328
|
+
mistralai/models/ocrimageobject.py,sha256=bIYt82TlTbDSavxM9UWuTmeqhha130v1CJyhUGlDHls,2808
|
|
328
329
|
mistralai/models/ocrpagedimensions.py,sha256=oP4v80I8d6ZELSZt6cRoECd6uIONgdyCeeFalm-4OvM,609
|
|
329
|
-
mistralai/models/ocrpageobject.py,sha256=
|
|
330
|
-
mistralai/models/ocrrequest.py,sha256=
|
|
331
|
-
mistralai/models/ocrresponse.py,sha256=
|
|
332
|
-
mistralai/models/ocrusageinfo.py,sha256=
|
|
330
|
+
mistralai/models/ocrpageobject.py,sha256=eu24xe_wLyDlOg0cKIB6zUZTy_FkTTsc7QtxlJINaBI,2091
|
|
331
|
+
mistralai/models/ocrrequest.py,sha256=eCuFVSZuvR5t-2dr5Hfg3LpW_8AVlA94-8zZZ9tzVOQ,4337
|
|
332
|
+
mistralai/models/ocrresponse.py,sha256=Z7n6oKu7Dp6I4IlJuh_MhPcKmt0GW7FdtBtPg7060k0,2048
|
|
333
|
+
mistralai/models/ocrusageinfo.py,sha256=eVedgqaPwqbHaPH80RKq3ccFl-JBh-bXfBbdLEbthG4,1577
|
|
333
334
|
mistralai/models/outputcontentchunks.py,sha256=x8Wn5NtHWHjbf_XGTvTOu7kCGZsx-jcrTuifXBkiLbM,954
|
|
334
335
|
mistralai/models/prediction.py,sha256=BgWbbeSi1eD9Rh1xk8srXlRgD7Xooj8nLsbSQ21pNRo,718
|
|
335
336
|
mistralai/models/referencechunk.py,sha256=A9vV5pZv-tUqGlswdu0HOyCYy0Q-UIJY0Oc9ZfM6XJA,519
|
|
336
337
|
mistralai/models/responsedoneevent.py,sha256=NRyPmBrTsYvlblAJaXOPx1l6vA2JLN6_aoNhcBUMdCM,779
|
|
337
338
|
mistralai/models/responseerrorevent.py,sha256=JUlo0JopINhAjKeWDjTBR_ZyxE4IgvZ2uD-UJovqOIk,685
|
|
338
|
-
mistralai/models/responseformat.py,sha256
|
|
339
|
+
mistralai/models/responseformat.py,sha256=c3b40GwpVfZ4qUSyZ11-FuMpISR0WCQfuRMw-t6Rwuc,2231
|
|
339
340
|
mistralai/models/responseformats.py,sha256=O9lwS2M9m53DsRxTC4uRP12SvRhgaQoMjIYsDys5A7s,503
|
|
340
341
|
mistralai/models/responsestartedevent.py,sha256=1VJl_4F5yIpbrX8GwVq6vYxjDFeTf4OdYhqKpQy1r4M,686
|
|
341
342
|
mistralai/models/retrieve_model_v1_models_model_id_getop.py,sha256=N9_JFwiz9tz4zRXJ9c1V0c_anFEVxVzPDoFt2Wrer4M,1388
|
|
342
|
-
mistralai/models/retrievefileout.py,sha256=
|
|
343
|
+
mistralai/models/retrievefileout.py,sha256=9bBnfQH18yiKk5sfHTz6gAZFAoi6yjhOsarz74S2XC4,2650
|
|
343
344
|
mistralai/models/sampletype.py,sha256=zowUiTFxum8fltBs6j__BrFPio-dQdG0CIyLj-5icG8,316
|
|
344
345
|
mistralai/models/sdkerror.py,sha256=kd75e3JYF2TXNgRZopcV-oGdBWoBZqRcvrwqn2fsFYs,528
|
|
345
346
|
mistralai/models/security.py,sha256=RQn-xHLq3q4OEzrx9BcJMuT49UaCvwABXrqBEcqyKmA,686
|
|
@@ -352,35 +353,36 @@ mistralai/models/toolcall.py,sha256=T5-3XQ-CKduBKTWwOeSBuaF90yk4yBgqmyLuXVB5uXQ,
|
|
|
352
353
|
mistralai/models/toolchoice.py,sha256=dGeb5koPp9eqHQuG1u-kP7T5Od6-cPL2rEe06-dqzcs,1021
|
|
353
354
|
mistralai/models/toolchoiceenum.py,sha256=Ca4ileCwuOjfPzIXLRIxT3RkE5zR7oqV6nXU-UjW0w0,197
|
|
354
355
|
mistralai/models/toolexecutiondoneevent.py,sha256=lZorvXo4lyaPXY_hLPZ5hstDu-BIjYLz2CSf_YGhbM0,920
|
|
355
|
-
mistralai/models/toolexecutionentry.py,sha256=
|
|
356
|
+
mistralai/models/toolexecutionentry.py,sha256=47gKbOJoAUo9nCztNKB4f1X6_cG3kN2ADutnFKzu1Nc,2160
|
|
356
357
|
mistralai/models/toolexecutionstartedevent.py,sha256=I38g-96moe25vHbj86l9SRq_XMgY2iVdr6f0_EHb-lA,849
|
|
357
|
-
mistralai/models/toolfilechunk.py,sha256=
|
|
358
|
-
mistralai/models/toolmessage.py,sha256=
|
|
359
|
-
mistralai/models/toolreferencechunk.py,sha256=
|
|
358
|
+
mistralai/models/toolfilechunk.py,sha256=sSDwXSC6YDBjOE8pjhst6EgZZnk_HtR6syYOpHTncIg,1803
|
|
359
|
+
mistralai/models/toolmessage.py,sha256=onVw1JYf-cwvN19ipk_UERppO4mmQPUGJtreCPJ3TOQ,2044
|
|
360
|
+
mistralai/models/toolreferencechunk.py,sha256=mmP0GcWzsJKUP71o0fyzF4JEVVZ3_EWWp65qO1faZ9s,1798
|
|
360
361
|
mistralai/models/tooltypes.py,sha256=NcvRsZA_ORf4WY_gn6WjgX6eEXmR2faVG3Q1sLlzdG8,244
|
|
361
362
|
mistralai/models/trainingfile.py,sha256=IlwKP2GL8gL0VHVJ_zUDV-Q0F7obdLzMMRDDJatSjwo,400
|
|
362
363
|
mistralai/models/unarchiveftmodelout.py,sha256=IY0oHKupATBYjAn7Xz1AVqyoSeap1l4nnWeMsLTK7yI,576
|
|
363
|
-
mistralai/models/updateftmodelin.py,sha256=
|
|
364
|
-
mistralai/models/uploadfileout.py,sha256=
|
|
364
|
+
mistralai/models/updateftmodelin.py,sha256=MyiLZb5VUmd3TGINQrjnpGfUFel7wLZYBu1ILGrxo7E,1472
|
|
365
|
+
mistralai/models/uploadfileout.py,sha256=5nKsa1azQX5oxTKbvIZemDqRgv6lZDiSS4OFe0tRYhI,2609
|
|
365
366
|
mistralai/models/usageinfo.py,sha256=66AzKK8cOFft498eUOUx6C_mCFAt5LmIFrYthJfLWpU,401
|
|
366
|
-
mistralai/models/usermessage.py,sha256=
|
|
367
|
+
mistralai/models/usermessage.py,sha256=DLsGSy9LdyE8zkxx3EXooQAqrM4FYRNGhcL_AFItnVI,1799
|
|
367
368
|
mistralai/models/validationerror.py,sha256=DouDBJmBhbW4KPsF5rZEyBdnB_adC-l32kuHC0bvO2I,526
|
|
368
|
-
mistralai/models/wandbintegration.py,sha256=
|
|
369
|
-
mistralai/models/wandbintegrationout.py,sha256=
|
|
369
|
+
mistralai/models/wandbintegration.py,sha256=PbDvTC7hrS8u3mkYQlvzCFilDZdTtkCrKWlXb-9R9Ag,2159
|
|
370
|
+
mistralai/models/wandbintegrationout.py,sha256=nDVAi7dismF5ktEBaEM8A8QsAtOVR0ReblTxF0_VWtg,2117
|
|
370
371
|
mistralai/models/websearchpremiumtool.py,sha256=wU3_oOKRWFLOXrZ-SrqAnGC7kb5uaSjLaTfUthuFoLY,502
|
|
371
372
|
mistralai/models/websearchtool.py,sha256=qpzzCo_nJunxRHlkwJE3vuEd-qPA_cW1X55qEXw3_KY,451
|
|
372
|
-
mistralai/models_.py,sha256=
|
|
373
|
-
mistralai/ocr.py,sha256=
|
|
373
|
+
mistralai/models_.py,sha256=9An0wbEEX_aAmcHONd9j8TEoq8wBss5qiAs79u-Z9hQ,46974
|
|
374
|
+
mistralai/ocr.py,sha256=OSooZTdeLoWIVEk3Uv4N7lj_Ud9hybMu7WJsaoMcYw8,12085
|
|
374
375
|
mistralai/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
375
|
-
mistralai/sdk.py,sha256=
|
|
376
|
-
mistralai/sdkconfiguration.py,sha256=
|
|
376
|
+
mistralai/sdk.py,sha256=op42fb-5kIGhJ9PQcPVgND1Rhf-s-8bbf9MYt7fVkGU,7709
|
|
377
|
+
mistralai/sdkconfiguration.py,sha256=8BDzcYQqDIM7pXsdsfmEZPUexeqdsL-8HMyhWiQeupE,1716
|
|
377
378
|
mistralai/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
378
|
-
mistralai/types/basemodel.py,sha256=
|
|
379
|
-
mistralai/utils/__init__.py,sha256=
|
|
379
|
+
mistralai/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
380
|
+
mistralai/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
|
|
380
381
|
mistralai/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
|
|
381
|
-
mistralai/utils/
|
|
382
|
+
mistralai/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
383
|
+
mistralai/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
|
|
382
384
|
mistralai/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
|
|
383
|
-
mistralai/utils/forms.py,sha256=
|
|
385
|
+
mistralai/utils/forms.py,sha256=EJdnrfIkuwpDtekyHutla0HjI_FypTYcmYNyPKEu_W0,6874
|
|
384
386
|
mistralai/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
|
|
385
387
|
mistralai/utils/logger.py,sha256=TOF0Mqsua4GlsDhmrZz9hgMRvwd9zK7ytuqly3Vevxo,675
|
|
386
388
|
mistralai/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
|
|
@@ -388,11 +390,11 @@ mistralai/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEt
|
|
|
388
390
|
mistralai/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
|
|
389
391
|
mistralai/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
|
|
390
392
|
mistralai/utils/security.py,sha256=vWlpkikOnGN_HRRhJ7Pb8ywVAjiM3d3ey3oTWtM6jTU,6008
|
|
391
|
-
mistralai/utils/serializers.py,sha256=
|
|
393
|
+
mistralai/utils/serializers.py,sha256=hiHBXM1AY8_N2Z_rvFfNSYwvLBkSQlPGFp8poasdU4s,5986
|
|
392
394
|
mistralai/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
393
395
|
mistralai/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
394
396
|
mistralai/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
|
|
395
|
-
mistralai-1.
|
|
396
|
-
mistralai-1.
|
|
397
|
-
mistralai-1.
|
|
398
|
-
mistralai-1.
|
|
397
|
+
mistralai-1.9.1.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
|
|
398
|
+
mistralai-1.9.1.dist-info/METADATA,sha256=KWzyqeGFxfYA2NclcNoZgjfjRNyfDGgPxAZFPJzASxI,33606
|
|
399
|
+
mistralai-1.9.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
400
|
+
mistralai-1.9.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|