mistralai 1.10.0__py3-none-any.whl → 1.11.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/tracing.py +28 -3
- mistralai/_version.py +3 -3
- mistralai/accesses.py +22 -12
- mistralai/agents.py +88 -44
- mistralai/basesdk.py +6 -0
- mistralai/chat.py +96 -40
- mistralai/classifiers.py +48 -23
- mistralai/conversations.py +186 -64
- mistralai/documents.py +72 -26
- mistralai/embeddings.py +24 -9
- mistralai/extra/README.md +1 -1
- mistralai/extra/mcp/auth.py +10 -11
- mistralai/extra/mcp/base.py +17 -16
- mistralai/extra/mcp/sse.py +13 -15
- mistralai/extra/mcp/stdio.py +5 -6
- mistralai/extra/observability/otel.py +47 -68
- mistralai/extra/run/context.py +33 -43
- mistralai/extra/run/result.py +29 -30
- mistralai/extra/run/tools.py +8 -9
- mistralai/extra/struct_chat.py +15 -8
- mistralai/extra/utils/response_format.py +5 -3
- mistralai/files.py +58 -24
- mistralai/fim.py +20 -12
- mistralai/httpclient.py +0 -1
- mistralai/jobs.py +65 -26
- mistralai/libraries.py +20 -10
- mistralai/mistral_agents.py +438 -30
- mistralai/mistral_jobs.py +62 -17
- mistralai/models/__init__.py +46 -1
- mistralai/models/agent.py +1 -1
- mistralai/models/agentconversation.py +1 -1
- mistralai/models/agenthandoffdoneevent.py +1 -1
- mistralai/models/agenthandoffentry.py +3 -2
- mistralai/models/agenthandoffstartedevent.py +1 -1
- mistralai/models/agents_api_v1_agents_get_versionop.py +21 -0
- mistralai/models/agents_api_v1_agents_list_versionsop.py +33 -0
- mistralai/models/agents_api_v1_agents_listop.py +5 -1
- mistralai/models/agents_api_v1_conversations_listop.py +1 -1
- mistralai/models/agentscompletionrequest.py +2 -5
- mistralai/models/agentscompletionstreamrequest.py +2 -5
- mistralai/models/archiveftmodelout.py +1 -1
- mistralai/models/assistantmessage.py +1 -1
- mistralai/models/audiochunk.py +1 -1
- mistralai/models/audioencoding.py +18 -0
- mistralai/models/audioformat.py +17 -0
- mistralai/models/basemodelcard.py +1 -1
- mistralai/models/batchjobin.py +18 -9
- mistralai/models/batchjobout.py +6 -1
- mistralai/models/batchjobsout.py +1 -1
- mistralai/models/batchrequest.py +48 -0
- mistralai/models/chatcompletionchoice.py +10 -5
- mistralai/models/chatcompletionrequest.py +2 -5
- mistralai/models/chatcompletionstreamrequest.py +2 -5
- mistralai/models/classificationrequest.py +37 -3
- mistralai/models/classifierdetailedjobout.py +4 -2
- mistralai/models/classifierftmodelout.py +3 -2
- mistralai/models/classifierjobout.py +4 -2
- mistralai/models/codeinterpretertool.py +1 -1
- mistralai/models/completiondetailedjobout.py +5 -2
- mistralai/models/completionftmodelout.py +3 -2
- mistralai/models/completionjobout.py +5 -2
- mistralai/models/completionresponsestreamchoice.py +9 -8
- mistralai/models/conversationappendrequest.py +4 -1
- mistralai/models/conversationappendstreamrequest.py +4 -1
- mistralai/models/conversationhistory.py +2 -1
- mistralai/models/conversationmessages.py +1 -1
- mistralai/models/conversationrequest.py +5 -1
- mistralai/models/conversationresponse.py +2 -1
- mistralai/models/conversationrestartrequest.py +4 -1
- mistralai/models/conversationrestartstreamrequest.py +4 -1
- mistralai/models/conversationstreamrequest.py +5 -1
- mistralai/models/documentlibrarytool.py +1 -1
- mistralai/models/documenturlchunk.py +1 -1
- mistralai/models/embeddingdtype.py +7 -1
- mistralai/models/embeddingrequest.py +11 -3
- mistralai/models/encodingformat.py +4 -1
- mistralai/models/entitytype.py +8 -1
- mistralai/models/filepurpose.py +8 -1
- mistralai/models/files_api_routes_list_filesop.py +4 -11
- mistralai/models/files_api_routes_upload_fileop.py +2 -6
- mistralai/models/fileschema.py +3 -5
- mistralai/models/finetuneablemodeltype.py +4 -1
- mistralai/models/ftclassifierlossfunction.py +4 -1
- mistralai/models/ftmodelcard.py +1 -1
- mistralai/models/functioncallentry.py +3 -2
- mistralai/models/functioncallevent.py +1 -1
- mistralai/models/functionresultentry.py +3 -2
- mistralai/models/functiontool.py +1 -1
- mistralai/models/githubrepositoryin.py +1 -1
- mistralai/models/githubrepositoryout.py +1 -1
- mistralai/models/httpvalidationerror.py +4 -2
- mistralai/models/imagegenerationtool.py +1 -1
- mistralai/models/imageurlchunk.py +1 -1
- mistralai/models/jobs_api_routes_batch_get_batch_jobop.py +40 -3
- mistralai/models/jobsout.py +1 -1
- mistralai/models/legacyjobmetadataout.py +1 -1
- mistralai/models/messageinputentry.py +9 -3
- mistralai/models/messageoutputentry.py +6 -3
- mistralai/models/messageoutputevent.py +4 -2
- mistralai/models/mistralerror.py +11 -7
- mistralai/models/mistralpromptmode.py +1 -1
- mistralai/models/modelconversation.py +1 -1
- mistralai/models/no_response_error.py +5 -1
- mistralai/models/ocrrequest.py +11 -1
- mistralai/models/ocrtableobject.py +4 -1
- mistralai/models/referencechunk.py +1 -1
- mistralai/models/requestsource.py +5 -1
- mistralai/models/responsedoneevent.py +1 -1
- mistralai/models/responseerrorevent.py +1 -1
- mistralai/models/responseformats.py +5 -1
- mistralai/models/responsestartedevent.py +1 -1
- mistralai/models/responsevalidationerror.py +2 -0
- mistralai/models/retrievefileout.py +3 -5
- mistralai/models/sampletype.py +7 -1
- mistralai/models/sdkerror.py +2 -0
- mistralai/models/shareenum.py +7 -1
- mistralai/models/sharingdelete.py +2 -4
- mistralai/models/sharingin.py +3 -5
- mistralai/models/source.py +8 -1
- mistralai/models/systemmessage.py +1 -1
- mistralai/models/textchunk.py +1 -1
- mistralai/models/thinkchunk.py +1 -1
- mistralai/models/timestampgranularity.py +1 -1
- mistralai/models/tool.py +2 -6
- mistralai/models/toolcall.py +2 -6
- mistralai/models/toolchoice.py +2 -6
- mistralai/models/toolchoiceenum.py +6 -1
- mistralai/models/toolexecutiondeltaevent.py +2 -1
- mistralai/models/toolexecutiondoneevent.py +2 -1
- mistralai/models/toolexecutionentry.py +4 -2
- mistralai/models/toolexecutionstartedevent.py +2 -1
- mistralai/models/toolfilechunk.py +13 -5
- mistralai/models/toolmessage.py +1 -1
- mistralai/models/toolreferencechunk.py +15 -5
- mistralai/models/tooltypes.py +1 -1
- mistralai/models/transcriptionsegmentchunk.py +1 -1
- mistralai/models/transcriptionstreamdone.py +1 -1
- mistralai/models/transcriptionstreamlanguage.py +1 -1
- mistralai/models/transcriptionstreamsegmentdelta.py +1 -1
- mistralai/models/transcriptionstreamtextdelta.py +1 -1
- mistralai/models/unarchiveftmodelout.py +1 -1
- mistralai/models/uploadfileout.py +3 -5
- mistralai/models/usermessage.py +1 -1
- mistralai/models/wandbintegration.py +1 -1
- mistralai/models/wandbintegrationout.py +1 -1
- mistralai/models/websearchpremiumtool.py +1 -1
- mistralai/models/websearchtool.py +1 -1
- mistralai/models_.py +24 -12
- mistralai/ocr.py +38 -10
- mistralai/sdk.py +2 -2
- mistralai/transcriptions.py +28 -12
- mistralai/types/basemodel.py +41 -3
- mistralai/utils/__init__.py +0 -3
- mistralai/utils/annotations.py +32 -8
- mistralai/utils/enums.py +60 -0
- mistralai/utils/forms.py +21 -10
- mistralai/utils/queryparams.py +14 -2
- mistralai/utils/requestbodies.py +3 -3
- mistralai/utils/retries.py +69 -5
- mistralai/utils/serializers.py +0 -20
- mistralai/utils/unmarshal_json_response.py +15 -1
- {mistralai-1.10.0.dist-info → mistralai-1.11.1.dist-info}/METADATA +144 -159
- mistralai-1.11.1.dist-info/RECORD +495 -0
- {mistralai-1.10.0.dist-info → mistralai-1.11.1.dist-info}/WHEEL +1 -1
- mistralai_azure/_version.py +3 -3
- mistralai_azure/basesdk.py +21 -5
- mistralai_azure/chat.py +82 -109
- mistralai_azure/httpclient.py +0 -1
- mistralai_azure/models/__init__.py +66 -4
- mistralai_azure/models/assistantmessage.py +1 -1
- mistralai_azure/models/chatcompletionchoice.py +10 -7
- mistralai_azure/models/chatcompletionrequest.py +24 -10
- mistralai_azure/models/chatcompletionstreamrequest.py +24 -10
- mistralai_azure/models/completionresponsestreamchoice.py +11 -7
- mistralai_azure/models/documenturlchunk.py +1 -1
- mistralai_azure/models/httpvalidationerror.py +15 -8
- mistralai_azure/models/imageurlchunk.py +1 -1
- mistralai_azure/models/mistralazureerror.py +30 -0
- mistralai_azure/models/mistralpromptmode.py +1 -1
- mistralai_azure/models/no_response_error.py +17 -0
- mistralai_azure/models/ocrpageobject.py +32 -5
- mistralai_azure/models/ocrrequest.py +20 -1
- mistralai_azure/models/ocrtableobject.py +34 -0
- mistralai_azure/models/prediction.py +4 -0
- mistralai_azure/models/referencechunk.py +1 -1
- mistralai_azure/models/responseformat.py +4 -2
- mistralai_azure/models/responseformats.py +5 -2
- mistralai_azure/models/responsevalidationerror.py +27 -0
- mistralai_azure/models/sdkerror.py +32 -14
- mistralai_azure/models/systemmessage.py +8 -4
- mistralai_azure/models/systemmessagecontentchunks.py +21 -0
- mistralai_azure/models/textchunk.py +1 -1
- mistralai_azure/models/thinkchunk.py +35 -0
- mistralai_azure/models/tool.py +2 -6
- mistralai_azure/models/toolcall.py +2 -6
- mistralai_azure/models/toolchoice.py +2 -6
- mistralai_azure/models/toolchoiceenum.py +6 -1
- mistralai_azure/models/toolmessage.py +1 -1
- mistralai_azure/models/tooltypes.py +1 -1
- mistralai_azure/models/usermessage.py +1 -1
- mistralai_azure/ocr.py +39 -40
- mistralai_azure/types/basemodel.py +41 -3
- mistralai_azure/utils/__init__.py +18 -8
- mistralai_azure/utils/annotations.py +32 -8
- mistralai_azure/utils/enums.py +60 -0
- mistralai_azure/utils/eventstreaming.py +10 -0
- mistralai_azure/utils/forms.py +21 -10
- mistralai_azure/utils/queryparams.py +14 -2
- mistralai_azure/utils/requestbodies.py +3 -3
- mistralai_azure/utils/retries.py +69 -5
- mistralai_azure/utils/serializers.py +3 -22
- mistralai_azure/utils/unmarshal_json_response.py +38 -0
- mistralai_gcp/_hooks/types.py +7 -0
- mistralai_gcp/_version.py +4 -4
- mistralai_gcp/basesdk.py +33 -25
- mistralai_gcp/chat.py +98 -109
- mistralai_gcp/fim.py +62 -85
- mistralai_gcp/httpclient.py +6 -17
- mistralai_gcp/models/__init__.py +321 -116
- mistralai_gcp/models/assistantmessage.py +2 -2
- mistralai_gcp/models/chatcompletionchoice.py +10 -7
- mistralai_gcp/models/chatcompletionrequest.py +38 -7
- mistralai_gcp/models/chatcompletionresponse.py +6 -6
- mistralai_gcp/models/chatcompletionstreamrequest.py +38 -7
- mistralai_gcp/models/completionresponsestreamchoice.py +12 -8
- mistralai_gcp/models/deltamessage.py +1 -1
- mistralai_gcp/models/fimcompletionrequest.py +9 -10
- mistralai_gcp/models/fimcompletionresponse.py +6 -6
- mistralai_gcp/models/fimcompletionstreamrequest.py +9 -10
- mistralai_gcp/models/httpvalidationerror.py +15 -8
- mistralai_gcp/models/imageurl.py +1 -1
- mistralai_gcp/models/imageurlchunk.py +1 -1
- mistralai_gcp/models/jsonschema.py +1 -1
- mistralai_gcp/models/mistralgcperror.py +30 -0
- mistralai_gcp/models/mistralpromptmode.py +8 -0
- mistralai_gcp/models/no_response_error.py +17 -0
- mistralai_gcp/models/prediction.py +4 -0
- mistralai_gcp/models/referencechunk.py +1 -1
- mistralai_gcp/models/responseformat.py +5 -3
- mistralai_gcp/models/responseformats.py +5 -2
- mistralai_gcp/models/responsevalidationerror.py +27 -0
- mistralai_gcp/models/sdkerror.py +32 -14
- mistralai_gcp/models/systemmessage.py +8 -4
- mistralai_gcp/models/systemmessagecontentchunks.py +21 -0
- mistralai_gcp/models/textchunk.py +1 -1
- mistralai_gcp/models/thinkchunk.py +35 -0
- mistralai_gcp/models/tool.py +2 -6
- mistralai_gcp/models/toolcall.py +2 -6
- mistralai_gcp/models/toolchoice.py +2 -6
- mistralai_gcp/models/toolchoiceenum.py +6 -1
- mistralai_gcp/models/toolmessage.py +2 -2
- mistralai_gcp/models/tooltypes.py +1 -1
- mistralai_gcp/models/usageinfo.py +71 -8
- mistralai_gcp/models/usermessage.py +2 -2
- mistralai_gcp/sdk.py +12 -10
- mistralai_gcp/sdkconfiguration.py +0 -7
- mistralai_gcp/types/basemodel.py +41 -3
- mistralai_gcp/utils/__init__.py +141 -46
- mistralai_gcp/utils/annotations.py +32 -8
- mistralai_gcp/utils/datetimes.py +23 -0
- mistralai_gcp/utils/enums.py +125 -25
- mistralai_gcp/utils/eventstreaming.py +10 -0
- mistralai_gcp/utils/forms.py +62 -30
- mistralai_gcp/utils/queryparams.py +14 -2
- mistralai_gcp/utils/requestbodies.py +3 -3
- mistralai_gcp/utils/retries.py +69 -5
- mistralai_gcp/utils/serializers.py +33 -23
- mistralai_gcp/utils/unmarshal_json_response.py +38 -0
- mistralai-1.10.0.dist-info/RECORD +0 -475
- {mistralai-1.10.0.dist-info → mistralai-1.11.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,495 @@
|
|
|
1
|
+
mistralai_azure/__init__.py,sha256=Tz5Y5FzbIUT1AmaYiTwJI56XTmuldo9AalaAm4h_FdE,423
|
|
2
|
+
mistralai_azure/_version.py,sha256=ExuvVPvoP0pOcMMWvOzBn1CMUZCaRMedK5DrHRIvYNc,472
|
|
3
|
+
mistralai_azure/basesdk.py,sha256=QZqEuUwzM3tdgQ5Cf3umfLN09kAD6ZFdpWHys5iqnXk,12401
|
|
4
|
+
mistralai_azure/chat.py,sha256=RLWqS_Yg_Gl1VITLCjshBj15p6JXwEk_BS4fK45jR14,41748
|
|
5
|
+
mistralai_azure/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
6
|
+
mistralai_azure/ocr.py,sha256=NGNycj112fBPPX8oh1LDldpxxlakUxk47qqi8q6tZec,12037
|
|
7
|
+
mistralai_azure/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
8
|
+
mistralai_azure/sdk.py,sha256=JByPLw6kJhZi2npJvki87fd3b2Z4E-dAA6eshZ19BOI,6667
|
|
9
|
+
mistralai_azure/sdkconfiguration.py,sha256=tqLLVewof7YZcBIykjMjGZIEtX_b_JKaMP9KHNdrRsM,1728
|
|
10
|
+
mistralai_azure/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
|
|
11
|
+
mistralai_azure/_hooks/custom_user_agent.py,sha256=0m-1JzJxOT42rvRTEuCiFLqbOMriOlsraSrAGaXAbyo,656
|
|
12
|
+
mistralai_azure/_hooks/registration.py,sha256=5BN-U92pwP5kUaN7EOso2vWrwZlLvRcU5Coccibqp20,741
|
|
13
|
+
mistralai_azure/_hooks/sdkhooks.py,sha256=urOhVMYX_n5KgMoNDNmGs4fsgUWoeSG6_GarhPxH-YU,2565
|
|
14
|
+
mistralai_azure/_hooks/types.py,sha256=F5N_UYekLG4DK9X22awmKxTefZCtmJ8JoH7MQ_1vvq8,3059
|
|
15
|
+
mistralai_azure/models/__init__.py,sha256=oteAHqY65TBj_gHdNsOr2yGFChB_fW8UGDNOf1PwLAc,16165
|
|
16
|
+
mistralai_azure/models/assistantmessage.py,sha256=6cHYkyAwVyNBLLvpqRhpA3rLTi2msaFEwzhKgbl-KqI,2662
|
|
17
|
+
mistralai_azure/models/chatcompletionchoice.py,sha256=3addCDw2aAcJFBhFtLZU_nmTt-V4FOXf5p4H4HnQU9o,797
|
|
18
|
+
mistralai_azure/models/chatcompletionrequest.py,sha256=vu6x-2UyqJhTnmarpBgONAEbj-j4DAkTJv4MYeyaNkc,14094
|
|
19
|
+
mistralai_azure/models/chatcompletionresponse.py,sha256=Yn7xcGIzmc2i4jSpq53YgmwOSKYk8oXKyIYWo8QjYfo,715
|
|
20
|
+
mistralai_azure/models/chatcompletionstreamrequest.py,sha256=Bk8HiZuzDmA-qU4Lf3zdkqyGwznQj9hIS0D3866YFb0,13230
|
|
21
|
+
mistralai_azure/models/completionchunk.py,sha256=yoA0tYoyK5RChQPbEvYUi1BVmuyH-QT5IYwEYJNtsXM,877
|
|
22
|
+
mistralai_azure/models/completionevent.py,sha256=8wkRAMMpDFfhFSm7OEmli80lsK98Tir7R6IxW-KxeuE,405
|
|
23
|
+
mistralai_azure/models/completionresponsestreamchoice.py,sha256=IXwXv-4jmflNdV_sI-9ZWeNMdsGq4kfA0LATCitNCsg,1700
|
|
24
|
+
mistralai_azure/models/contentchunk.py,sha256=a7A9ymr1Qvg4am-uqrGxqrmTf9NBMPiGbVncuOevchE,881
|
|
25
|
+
mistralai_azure/models/deltamessage.py,sha256=uDjAlgTy_W9wIX7qQUWbwsf7zSLn0GkBvYyIg7d_sto,1976
|
|
26
|
+
mistralai_azure/models/documenturlchunk.py,sha256=WmhGsx6_RZsL4t0uDeZh7Fc4fg8v9frJlMp-msV11j8,1742
|
|
27
|
+
mistralai_azure/models/filechunk.py,sha256=wR69lE1QRNUwYDgKOM1ZXg5-8qQjomZ0tPzSUXgxqGI,653
|
|
28
|
+
mistralai_azure/models/function.py,sha256=VKcPB1oJ8_jvfXRfqufa2Y9to5WdxS-hi9OLu78GNpM,540
|
|
29
|
+
mistralai_azure/models/functioncall.py,sha256=H2eemkzk2Zm1LEm11atVh6PGvr6XJn9SWqNUziT_WK8,562
|
|
30
|
+
mistralai_azure/models/functionname.py,sha256=4rGsO-FYjvLMRGDBbdZ3cLyiiwml_voRQQ924K2_S1M,473
|
|
31
|
+
mistralai_azure/models/httpvalidationerror.py,sha256=V7u7BIAOSqt3CcvhmifbnjmxrOszu1uDyfsG9G1r1xc,862
|
|
32
|
+
mistralai_azure/models/imageurl.py,sha256=TUOpT-mTQJ9VoMoVcN303592gGBgrx6NZmmDhui-8h8,1402
|
|
33
|
+
mistralai_azure/models/imageurlchunk.py,sha256=U6avdXLZ7ea1RPtNBnSW2K09u39OUtKinpowpiNdJ7k,1001
|
|
34
|
+
mistralai_azure/models/jsonschema.py,sha256=Cu_coSyKmQB3tB_6PLKmcsdaOeyuAJDx5Z6Y1POuJ0Q,1689
|
|
35
|
+
mistralai_azure/models/mistralazureerror.py,sha256=dzvWbJ7GYmGA6XniCaDEkZYBesYzC1yt4GOu1pxKvHI,961
|
|
36
|
+
mistralai_azure/models/mistralpromptmode.py,sha256=02bpAqZT0kEBzBTrzAWJYpWbAqx07cqrVK9NF0yZAHg,260
|
|
37
|
+
mistralai_azure/models/no_response_error.py,sha256=DaZukP5ManflzAN-11MtmBitfTIct37sRvfszvfM13o,467
|
|
38
|
+
mistralai_azure/models/ocrimageobject.py,sha256=FmmDchJs3dB7ctG_S-pFoUBhHvaLs20fJl3oya32VOo,2839
|
|
39
|
+
mistralai_azure/models/ocrpagedimensions.py,sha256=y3tkCQcdNUd_QWi3rzH6iROyVzsr4f-hQ8qh8bbbmgI,615
|
|
40
|
+
mistralai_azure/models/ocrpageobject.py,sha256=s33C84P6t9g8ExOIJ_HOS_W6-dn4mSIP15RYcJ-KhT0,2969
|
|
41
|
+
mistralai_azure/models/ocrrequest.py,sha256=7ajVMgak94ZR5GZzZm4CwVHm9BiZxF0uDu_4y9LjMDU,4820
|
|
42
|
+
mistralai_azure/models/ocrresponse.py,sha256=BXz6SzdBWPELQoNd6dp6o8E3b3KlN1oUNMq4-JHquE4,2079
|
|
43
|
+
mistralai_azure/models/ocrtableobject.py,sha256=-qvF3IcA69q9VpXFMtbIQoIGpA-P45kB94q2MMPmoN8,811
|
|
44
|
+
mistralai_azure/models/ocrusageinfo.py,sha256=mWKzoh9WQKeQOuQrSagn2LlXj3rvPHml_84UtEgalp0,1608
|
|
45
|
+
mistralai_azure/models/prediction.py,sha256=8cIIABPEup0aVfEpyM1uEJ93tO-Y0iQNf966ZxnbDO8,990
|
|
46
|
+
mistralai_azure/models/referencechunk.py,sha256=VjIWwkQmiJ-dIg8ZXXgcqIjfxJmShp2w2Ffoyt2UudY,526
|
|
47
|
+
mistralai_azure/models/responseformat.py,sha256=q0M1nVRIU6r_qEmZjfruWRDivYndZL9ZPiy-MVUj1OE,2666
|
|
48
|
+
mistralai_azure/models/responseformats.py,sha256=qvCzdCD1R9F_R0qkL0QzsIWjof0ACkOMBLrZo9WBbLo,216
|
|
49
|
+
mistralai_azure/models/responsevalidationerror.py,sha256=bMI8dARVi56z0qkClV5rzU0I1br5ut3AX_N8f7rMzwI,769
|
|
50
|
+
mistralai_azure/models/sdkerror.py,sha256=_aAVAE3Ch9AX_xv_u2G0fOa9ySCBIJIVodFvLSYY8Zo,1302
|
|
51
|
+
mistralai_azure/models/security.py,sha256=lPLcQ1OV2SA6ZJP5_lOFWUDVuPc-L90C3N127KMWdPo,627
|
|
52
|
+
mistralai_azure/models/systemmessage.py,sha256=0jOYtT4mo9RWS7vnF6BklRLmYfFXnTX6p8M0LS2RCkY,896
|
|
53
|
+
mistralai_azure/models/systemmessagecontentchunks.py,sha256=gE1icdUyA2ILa-CWKEslvZfsP3QXhXx6Wqw3QKQctEo,738
|
|
54
|
+
mistralai_azure/models/textchunk.py,sha256=XgegjrmEX1Dt3BmLsYUrfDq0FWQ3hZ5I0vWdvYdKHls,428
|
|
55
|
+
mistralai_azure/models/thinkchunk.py,sha256=qOf43ucA0DWt_ChSPm5fs1Uys2-_h65MlOUxou4aLVA,1091
|
|
56
|
+
mistralai_azure/models/tool.py,sha256=_XR9yI9YUr8GLt4yubdvxR1VrLgry_EILBzCi38OHXw,501
|
|
57
|
+
mistralai_azure/models/toolcall.py,sha256=qNR7pdIttx1nt5GjescL8OWrraScOhvjgsfuotRqLR0,644
|
|
58
|
+
mistralai_azure/models/toolchoice.py,sha256=mrfIJJFlyD8lSX1tz_O3BRBGPquOtlStdnq_NHuppTA,841
|
|
59
|
+
mistralai_azure/models/toolchoiceenum.py,sha256=amwfjTYyoGdJ8NHdjOGiMx3zl_qISL_jh6sXcxaNp8o,216
|
|
60
|
+
mistralai_azure/models/toolmessage.py,sha256=rR9fcXf26EMOXfSlsuNUkpigi1cLc3b6XVMd9ILjt4w,2076
|
|
61
|
+
mistralai_azure/models/tooltypes.py,sha256=5DwcRDUKjueJZo2D5XyErR4fQW8YZ8swK0MLYKmUR2w,251
|
|
62
|
+
mistralai_azure/models/usageinfo.py,sha256=u9Ds73z87KyluvVCLjlTXnzCVjbBGlLWTBBPpGK6AcM,2349
|
|
63
|
+
mistralai_azure/models/usermessage.py,sha256=_JA3AvLj4hqiGn5IX9mhKKL2Mkx_S4-heazKIm1oFOA,1806
|
|
64
|
+
mistralai_azure/models/validationerror.py,sha256=vghbUqW9H5AsbYmW5i0C56eHPFC054x8SJA-mJZPKak,532
|
|
65
|
+
mistralai_azure/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
66
|
+
mistralai_azure/types/basemodel.py,sha256=MULDVywSVxR0lo8h5wMnXnkBFXLK5DXmBKD1eXAVKgE,2879
|
|
67
|
+
mistralai_azure/utils/__init__.py,sha256=exQdoUNyzBF5tfrNeGg79ijhcl5vKom0sa2xDb8BuDw,5670
|
|
68
|
+
mistralai_azure/utils/annotations.py,sha256=FvfvVTUj8TUclm4HbGgY5yi2Ap7EzGmu2UPFU4FwC1w,2755
|
|
69
|
+
mistralai_azure/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
70
|
+
mistralai_azure/utils/enums.py,sha256=wAgjjw7USk6IRpN2UJE5Sl8rfmEFiRwyrwMhhznnDIc,5147
|
|
71
|
+
mistralai_azure/utils/eventstreaming.py,sha256=SgFqMcUOYKlrTQ4gAp_dNcKLvDXukeiEMNU3DP8mXk8,6692
|
|
72
|
+
mistralai_azure/utils/forms.py,sha256=HzltKnYH5-ULoEz8JYfIUcw13I9dMZjw-1lQKNkH5fw,7178
|
|
73
|
+
mistralai_azure/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
|
|
74
|
+
mistralai_azure/utils/logger.py,sha256=9nUtlKHo3RFsIVyMw5jq3wEKZMVwHnZMSc6xLp-otC0,520
|
|
75
|
+
mistralai_azure/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
|
|
76
|
+
mistralai_azure/utils/queryparams.py,sha256=dxtFQDJ8dlbm_hh_fhdFC1qMWOOHR2MszNycKmME8bQ,6326
|
|
77
|
+
mistralai_azure/utils/requestbodies.py,sha256=7bi6slrGKAbmfg4BoOUjSVGrbg9NvIFvCKUEgjwyJEw,2108
|
|
78
|
+
mistralai_azure/utils/retries.py,sha256=stPJEFtmK8gOM6aT0DpEJp9Z39oXX1-8I69jpa2n3Ww,8130
|
|
79
|
+
mistralai_azure/utils/security.py,sha256=ktep3HKwbFs-MLxUYTM8Jd4v-ZBum5_Z0u1PFIdYBX0,5516
|
|
80
|
+
mistralai_azure/utils/serializers.py,sha256=ueUga5yv_08r10eQiaVIk0o726j0TRno8603jUksasA,5585
|
|
81
|
+
mistralai_azure/utils/unmarshal_json_response.py,sha256=HE7-hXY-uZRhz4337Zv55SVetswnajjpy8K6VT5fnC0,880
|
|
82
|
+
mistralai_azure/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
83
|
+
mistralai_azure/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
84
|
+
mistralai_gcp/__init__.py,sha256=Tz5Y5FzbIUT1AmaYiTwJI56XTmuldo9AalaAm4h_FdE,423
|
|
85
|
+
mistralai_gcp/_version.py,sha256=EAKWlygjJlme3K3D0agvOOsupq04iVt0WNI0mOzu3n4,468
|
|
86
|
+
mistralai_gcp/basesdk.py,sha256=lWuECRYk90eIzsXTwopFCutqOpZluuZ32xdSJ33p_gQ,12395
|
|
87
|
+
mistralai_gcp/chat.py,sha256=eFvecSPNkQgGbcabHChwAK_SK_jPXfGxmCMPeCqI5MM,41648
|
|
88
|
+
mistralai_gcp/fim.py,sha256=CQnKj_OuiL-9ISwQEQwMRc1bHGqQJrVb2sM7sbbyaKs,27014
|
|
89
|
+
mistralai_gcp/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
90
|
+
mistralai_gcp/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
91
|
+
mistralai_gcp/sdk.py,sha256=M_IJP9VK5X5yOiy6dOKqEKTRZvC3NvwAxSu7CAjHook,8612
|
|
92
|
+
mistralai_gcp/sdkconfiguration.py,sha256=-NxlAaTUoZVU8WIsJPxsKp9FSTOgTTizkVs7aGQ0giU,1724
|
|
93
|
+
mistralai_gcp/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
|
|
94
|
+
mistralai_gcp/_hooks/custom_user_agent.py,sha256=0m-1JzJxOT42rvRTEuCiFLqbOMriOlsraSrAGaXAbyo,656
|
|
95
|
+
mistralai_gcp/_hooks/registration.py,sha256=5BN-U92pwP5kUaN7EOso2vWrwZlLvRcU5Coccibqp20,741
|
|
96
|
+
mistralai_gcp/_hooks/sdkhooks.py,sha256=nr_ACx8Rn5xvTkmZP6_EI-f_0hw8wMyPqPHNvjAWAxI,2563
|
|
97
|
+
mistralai_gcp/_hooks/types.py,sha256=5M-tBumkljf-VVAW1mh1VoRRnkYLiTlg56_6Vcl0NsM,3055
|
|
98
|
+
mistralai_gcp/models/__init__.py,sha256=p54jl-ENamQ1LE4dWWb8D0Q8UoPuv0jc-tZZ-bv4tNM,15404
|
|
99
|
+
mistralai_gcp/models/assistantmessage.py,sha256=8t4zOoOq51ruYNs9vw368DiOGYNUHDTKcN-NvTdGlrg,2660
|
|
100
|
+
mistralai_gcp/models/chatcompletionchoice.py,sha256=uDpjqv6mOAW-q3EwAEBrCAYtmIxSGiFaZwUCZ7aswbQ,795
|
|
101
|
+
mistralai_gcp/models/chatcompletionrequest.py,sha256=836UDAgJ_21YRCaPvxKxUWlc8Pxzz98bw_yDIEy3JLM,14140
|
|
102
|
+
mistralai_gcp/models/chatcompletionresponse.py,sha256=526j8wpH9VODzu2dsN5bhFIpaWjjCuAP9bardMQsJvQ,713
|
|
103
|
+
mistralai_gcp/models/chatcompletionstreamrequest.py,sha256=ypdGq5eCbe36KYSY65cMXozyLCNzkkcHnnarGfag-KE,13276
|
|
104
|
+
mistralai_gcp/models/completionchunk.py,sha256=0DBDcrqVWrUskHA3hHYtuWk2E4JcJy_zc_LiGyLHBlA,875
|
|
105
|
+
mistralai_gcp/models/completionevent.py,sha256=cP7Q5dN4Z46FQTlyCYeIwvqt7pgN-22jNPD2bi7Eals,403
|
|
106
|
+
mistralai_gcp/models/completionresponsestreamchoice.py,sha256=izLRtWRKeDizkSrV6G9oFRFNbPIucI6l_WcFX_ZNqn8,1698
|
|
107
|
+
mistralai_gcp/models/contentchunk.py,sha256=YnkuzJSAJGvNsmRLQWscl43INmRVDAbidtLMOwYipM4,879
|
|
108
|
+
mistralai_gcp/models/deltamessage.py,sha256=um0FXzyArMq8_ocOWLktIImzE-48-NTB-cqPlz6_uwY,1974
|
|
109
|
+
mistralai_gcp/models/fimcompletionrequest.py,sha256=4Fx3-h2nYToDRA1hgt6ef7STQFQsEZkPvPpO3oSz73M,6619
|
|
110
|
+
mistralai_gcp/models/fimcompletionresponse.py,sha256=5iKHIH7CBNoN_8dPCmsv7iDKvULaiH8pTR_HisAScd8,711
|
|
111
|
+
mistralai_gcp/models/fimcompletionstreamrequest.py,sha256=EYQqjZsR_cLlCOkE-z97IE-Ez_YfJHWcw6bTMB-kGAA,5998
|
|
112
|
+
mistralai_gcp/models/function.py,sha256=FKnuRp-z4lQxq43iDzFaGtledj6zuXf8bHk5erTs62Q,538
|
|
113
|
+
mistralai_gcp/models/functioncall.py,sha256=iIeo1sJUi1DJmASNUuqMq6iYwGLgM1fxC-mWgEiluQ4,560
|
|
114
|
+
mistralai_gcp/models/functionname.py,sha256=Rp4TPQA1IvhnBZx-GwBF1fFyAd6w5Ys5A84waQ9fYKg,471
|
|
115
|
+
mistralai_gcp/models/httpvalidationerror.py,sha256=3jabL6SM9RL43dU6PDDrVShYZzgjvdYF0VurUzlNuyQ,854
|
|
116
|
+
mistralai_gcp/models/imageurl.py,sha256=eegcEJ0DThfdLqXsfvQ0XkuTLaH4BjfOFaqnb1YHgkY,1400
|
|
117
|
+
mistralai_gcp/models/imageurlchunk.py,sha256=VDUAw1bU3bWKuRZDHdjUvV9baFF-V8n_Q18g-a8PQ3g,999
|
|
118
|
+
mistralai_gcp/models/jsonschema.py,sha256=XU4ymMBWdYypF3UfTm5S62E65-nVZz6uNZ1z6jJhMmA,1687
|
|
119
|
+
mistralai_gcp/models/mistralgcperror.py,sha256=jDkgfjTNlvQozWBH_d7hZYoDDYfO1vrIYt530g4gJqM,959
|
|
120
|
+
mistralai_gcp/models/mistralpromptmode.py,sha256=UYdRKY5t9kcDioU_ZEBOdIvg6LLgaj8znYxPgL2siE0,258
|
|
121
|
+
mistralai_gcp/models/no_response_error.py,sha256=DaZukP5ManflzAN-11MtmBitfTIct37sRvfszvfM13o,467
|
|
122
|
+
mistralai_gcp/models/prediction.py,sha256=gE-e1eQulB8tL4ojNZJ5Qd4B7T3aHQXUs_2O4c-cz20,986
|
|
123
|
+
mistralai_gcp/models/referencechunk.py,sha256=5qNt3cAw9GwgLgtF1zrI-fgJGBVdHHa9VH8LwTdkAYs,524
|
|
124
|
+
mistralai_gcp/models/responseformat.py,sha256=i2ag-UURfRv4F7BbQvMNQgPS8vGvIKNbfJKXru6Ioqw,2664
|
|
125
|
+
mistralai_gcp/models/responseformats.py,sha256=qvCzdCD1R9F_R0qkL0QzsIWjof0ACkOMBLrZo9WBbLo,216
|
|
126
|
+
mistralai_gcp/models/responsevalidationerror.py,sha256=EwU2QRiR1na5WnfmUb2onm4DQDz7Ox2EWm40Or_SWeg,763
|
|
127
|
+
mistralai_gcp/models/sdkerror.py,sha256=ETYROEtUZVv0WAN2yj7-N_dwnLC0kenMPNZuwNbOo1M,1296
|
|
128
|
+
mistralai_gcp/models/security.py,sha256=Z2MdVBo5vcSXMkFdCRHPJY-cNH9EqZYAK1Je5VGp4NU,623
|
|
129
|
+
mistralai_gcp/models/systemmessage.py,sha256=2ZwNDfBV3oVvDNIup08s8CNrpk9aTCASM0eiu7A5ZvI,894
|
|
130
|
+
mistralai_gcp/models/systemmessagecontentchunks.py,sha256=3saEgKPO7jYFcI15CfRSzkhOCGb7hE6lRHe6bhmGGl0,736
|
|
131
|
+
mistralai_gcp/models/textchunk.py,sha256=zSVnvJX2j3A-aVudF3wEO6fvZvOcBpp3s8Yr6LFa35Y,426
|
|
132
|
+
mistralai_gcp/models/thinkchunk.py,sha256=JErHurCp-YNCTeV9HDT6xYATUusO6Vu3izfHBZ9gtlU,1089
|
|
133
|
+
mistralai_gcp/models/tool.py,sha256=rVbecXAUocNs7j-D3AGgpNSGn-V7_T1nbF1HbxM36IM,499
|
|
134
|
+
mistralai_gcp/models/toolcall.py,sha256=nD6Ud4LQ5Ne6mb4ADcsU1BqBTIAf2ZhP8DugZS6xyTc,642
|
|
135
|
+
mistralai_gcp/models/toolchoice.py,sha256=9D1FU71G93B7FC2Z-z16TeVjoMFhUwBFkeu1hwAWlyI,839
|
|
136
|
+
mistralai_gcp/models/toolchoiceenum.py,sha256=amwfjTYyoGdJ8NHdjOGiMx3zl_qISL_jh6sXcxaNp8o,216
|
|
137
|
+
mistralai_gcp/models/toolmessage.py,sha256=wxL_ZD8N1hTDnguxYsFm5OH3aUDeFuCqfaS5qgbLJ48,2074
|
|
138
|
+
mistralai_gcp/models/tooltypes.py,sha256=mQnNPjlSk6mxRVSd6SpkkVMJyOfLMoWNrYmuRXMwiuA,249
|
|
139
|
+
mistralai_gcp/models/usageinfo.py,sha256=VqSd4avQ_jn51RN_gyX1_osqSoNpP-4gSVeqaKaR_LI,2347
|
|
140
|
+
mistralai_gcp/models/usermessage.py,sha256=47JZBFoPyDFmoQ39gWLPA2rNzTl4raK6kTNYV9IEToA,1804
|
|
141
|
+
mistralai_gcp/models/validationerror.py,sha256=EVhyAndNY5aayJSNGv-W1XL7Wu9bS92JJe1yu9UmBSY,530
|
|
142
|
+
mistralai_gcp/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
143
|
+
mistralai_gcp/types/basemodel.py,sha256=MULDVywSVxR0lo8h5wMnXnkBFXLK5DXmBKD1eXAVKgE,2879
|
|
144
|
+
mistralai_gcp/utils/__init__.py,sha256=exQdoUNyzBF5tfrNeGg79ijhcl5vKom0sa2xDb8BuDw,5670
|
|
145
|
+
mistralai_gcp/utils/annotations.py,sha256=FvfvVTUj8TUclm4HbGgY5yi2Ap7EzGmu2UPFU4FwC1w,2755
|
|
146
|
+
mistralai_gcp/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
147
|
+
mistralai_gcp/utils/enums.py,sha256=wAgjjw7USk6IRpN2UJE5Sl8rfmEFiRwyrwMhhznnDIc,5147
|
|
148
|
+
mistralai_gcp/utils/eventstreaming.py,sha256=SgFqMcUOYKlrTQ4gAp_dNcKLvDXukeiEMNU3DP8mXk8,6692
|
|
149
|
+
mistralai_gcp/utils/forms.py,sha256=HzltKnYH5-ULoEz8JYfIUcw13I9dMZjw-1lQKNkH5fw,7178
|
|
150
|
+
mistralai_gcp/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
|
|
151
|
+
mistralai_gcp/utils/logger.py,sha256=9nUtlKHo3RFsIVyMw5jq3wEKZMVwHnZMSc6xLp-otC0,520
|
|
152
|
+
mistralai_gcp/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
|
|
153
|
+
mistralai_gcp/utils/queryparams.py,sha256=dxtFQDJ8dlbm_hh_fhdFC1qMWOOHR2MszNycKmME8bQ,6326
|
|
154
|
+
mistralai_gcp/utils/requestbodies.py,sha256=7bi6slrGKAbmfg4BoOUjSVGrbg9NvIFvCKUEgjwyJEw,2108
|
|
155
|
+
mistralai_gcp/utils/retries.py,sha256=stPJEFtmK8gOM6aT0DpEJp9Z39oXX1-8I69jpa2n3Ww,8130
|
|
156
|
+
mistralai_gcp/utils/security.py,sha256=ktep3HKwbFs-MLxUYTM8Jd4v-ZBum5_Z0u1PFIdYBX0,5516
|
|
157
|
+
mistralai_gcp/utils/serializers.py,sha256=ueUga5yv_08r10eQiaVIk0o726j0TRno8603jUksasA,5585
|
|
158
|
+
mistralai_gcp/utils/unmarshal_json_response.py,sha256=X59XiuyKOV3DwOA8rm65b0CUr3r7YTSIP86khK-GWyk,878
|
|
159
|
+
mistralai_gcp/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
160
|
+
mistralai_gcp/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
161
|
+
mistralai/__init__.py,sha256=Tz5Y5FzbIUT1AmaYiTwJI56XTmuldo9AalaAm4h_FdE,423
|
|
162
|
+
mistralai/_version.py,sha256=986EH9vmmiTgjLW7u-qSFaVa4wL0rEyPI-eGKskC5n8,462
|
|
163
|
+
mistralai/accesses.py,sha256=gZBpkWSO-agEX9A7k5_oHqjHSJt6AWereEw82vMDn7A,25653
|
|
164
|
+
mistralai/agents.py,sha256=AAu9_slIafnvbIi6BLsfc_h8JZQ6PppQvKyfsDu2inA,37701
|
|
165
|
+
mistralai/async_client.py,sha256=KUdYxIIqoD6L7vB0EGwUR6lQ0NK5iCTHjnLVR9CVcJY,355
|
|
166
|
+
mistralai/audio.py,sha256=lcY7rl0YcXURe4q6tz4tufmnBQ_6ONRwyxSDDJCRowM,724
|
|
167
|
+
mistralai/basesdk.py,sha256=KqCRzHwMiTHQudZFNql9jjtJsChvypHUdOcKo9fNTnk,12456
|
|
168
|
+
mistralai/batch.py,sha256=wHfwQYrnxpEK5sbyhx8LjPYU9k7x_6osn_g1DSQma4Q,631
|
|
169
|
+
mistralai/beta.py,sha256=PeJFa12AW777S2B3h3Cc8ia_0pYW97_R7GmTA5TSnIQ,1178
|
|
170
|
+
mistralai/chat.py,sha256=4mWGgjxUfBBwNSxs8sNlLoSiCk8F0F6E2B2WuJ7F4Os,48346
|
|
171
|
+
mistralai/classifiers.py,sha256=rx1d4L00GYoGhO-wb7pOEc42tW214SF33ypTqBRs3wU,32482
|
|
172
|
+
mistralai/client.py,sha256=hrPg-LciKMKiascF0WbRRmqQyCv1lb2yDh6j-aaKVNo,509
|
|
173
|
+
mistralai/conversations.py,sha256=zDINjer7qkSzKRBAPcYZsAJJPJxlQE-tdykmAZRTjlU,118693
|
|
174
|
+
mistralai/documents.py,sha256=cXLh7GE7k1MAUUiRU7voGeMFSMNXZHQeikkhZkbjymE,80310
|
|
175
|
+
mistralai/embeddings.py,sha256=2DjnkOgtGFk4O3582nVir7KN-zU4DMJeB-C00V4qBjA,9982
|
|
176
|
+
mistralai/files.py,sha256=JbQKynjPBYxBqYh-ZKTc17rlxOoztOxnAjtlXHuQNF0,43168
|
|
177
|
+
mistralai/fim.py,sha256=eFkQ8Ao7DkPw8_J5b2Bke42pYYJ-yJ2xI4-42tknCuM,27698
|
|
178
|
+
mistralai/fine_tuning.py,sha256=0f6Yq0h3bRvQq7NI6M7TpnRkLcXZOqEFf2qS0XE9TbU,607
|
|
179
|
+
mistralai/httpclient.py,sha256=dqTPONDBpRn4ktXfcetQiRXnG93f0pJkFhqsYFhLUac,3945
|
|
180
|
+
mistralai/jobs.py,sha256=C0Ek5pxxdXVu8QIqWytcwbhs33FD-hyIqx2KTXw2e3g,44893
|
|
181
|
+
mistralai/libraries.py,sha256=yyJt49B_Dd_ReDuGsTXY81INUkqKuRk2TMRu_AZ0Rmg,37910
|
|
182
|
+
mistralai/mistral_agents.py,sha256=2bLgaAsX5HW9L1aRDC4rfQ6Uxm3q-hH87hUMFfDq1Ls,67502
|
|
183
|
+
mistralai/mistral_jobs.py,sha256=iyBA_FQIphGTc_pu3zgN8f_ytcnrIDyvCIWVQx4SWhQ,32357
|
|
184
|
+
mistralai/models_.py,sha256=-VWvN5wamLVqBIj8WUIYl4UglPOriH2qw7tZXgo2j2o,42356
|
|
185
|
+
mistralai/ocr.py,sha256=ifNfZXwlxY43kjgE6kqQRVhb2WEX_penur-ucZqViHY,13412
|
|
186
|
+
mistralai/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
187
|
+
mistralai/sdk.py,sha256=CA9K_f1i6tzG6xGwASJCmWc6mUnM9AyEDs5l5yafFhE,8366
|
|
188
|
+
mistralai/sdkconfiguration.py,sha256=8BDzcYQqDIM7pXsdsfmEZPUexeqdsL-8HMyhWiQeupE,1716
|
|
189
|
+
mistralai/transcriptions.py,sha256=P8mVG486uHFhngePXNDVVY9ISCOVe8qnqs9ugt80h2w,19013
|
|
190
|
+
mistralai/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
|
|
191
|
+
mistralai/_hooks/custom_user_agent.py,sha256=cHfp43RcsNvHusq8WVxWrCS3w-pmzJ8uNuvaMZKdtJ8,661
|
|
192
|
+
mistralai/_hooks/deprecation_warning.py,sha256=eyEOf7-o9uqqNWJnufD2RXp3dYrGV4in9q76yLC1zog,921
|
|
193
|
+
mistralai/_hooks/registration.py,sha256=6S3ZNnJqb8hUUrA-3V2ym44SyoXgV6b5aU4lUkCXaPA,1082
|
|
194
|
+
mistralai/_hooks/sdkhooks.py,sha256=s-orhdvnV89TmI3QiPC2LWQtYeM9RrsG1CTll-fYZmQ,2559
|
|
195
|
+
mistralai/_hooks/tracing.py,sha256=AMHONiqspNV0BoActKDctKxombKFOIxTg_q3mIUekrI,2465
|
|
196
|
+
mistralai/_hooks/types.py,sha256=70IiFr5bfsJYafuDkXQWVfl6nY4dQkA5SZoEBCircqs,3047
|
|
197
|
+
mistralai/extra/README.md,sha256=XGqxGKmV-jxqjRIIO1eO0zVgxV3ECASzWfKFz8YECbI,1721
|
|
198
|
+
mistralai/extra/__init__.py,sha256=8DsU_omYYadqcwlmBOoakBwkWKcSohwLmtB8v-jkn2M,392
|
|
199
|
+
mistralai/extra/exceptions.py,sha256=4EEygCfdsniYiroHEFVSVDqerQZkpRG027mlJXvMqns,428
|
|
200
|
+
mistralai/extra/struct_chat.py,sha256=GJ8j0XyCWkp6aMj0qd7aaGFFcnKBJDBLS6uZ31fFY2s,2142
|
|
201
|
+
mistralai/extra/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
202
|
+
mistralai/extra/mcp/auth.py,sha256=t0jAexZCqyk7rEUXNeXrKTM-toqnXI6rpkOR2KsZIsk,6087
|
|
203
|
+
mistralai/extra/mcp/base.py,sha256=BMpar9y2C5vaszY1y33oOeR5omVX7rrvxIERqshRt0E,5032
|
|
204
|
+
mistralai/extra/mcp/sse.py,sha256=xbM-NrPuK84dgsB5kcuy-Blg2GkmF1BOEr1lNqoojrY,6408
|
|
205
|
+
mistralai/extra/mcp/stdio.py,sha256=7W61tcvRKcLPhwGa-uUBaOVjSyXCSIVwk6LEPCXwl6g,662
|
|
206
|
+
mistralai/extra/observability/__init__.py,sha256=O6G6FiMQfWfJDUUr1Kd0PrGwZgjAuiM3y57zlIOm00s,352
|
|
207
|
+
mistralai/extra/observability/otel.py,sha256=1SnEcjChQQRKXN_xsxCak6tKTQdyDqMus-0b6QTbdRk,16675
|
|
208
|
+
mistralai/extra/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
209
|
+
mistralai/extra/run/context.py,sha256=8p4C0ZyE9_UtQUuKrlYxI6jnhpz0FkBqQPVb2K7poPw,10958
|
|
210
|
+
mistralai/extra/run/result.py,sha256=Q7RYQ58XbS2eV1QtJTCSsRQ7CzbVn0bcCIBHdgxNS04,7028
|
|
211
|
+
mistralai/extra/run/tools.py,sha256=pl66Ojl6yNHbI1CdsvDJec3Jp01AE5M05IT1uKuKHqI,8622
|
|
212
|
+
mistralai/extra/run/utils.py,sha256=lmqxqCuwLwYsjua460-I6q4OK2om8BxgvWm4NPiV7fs,1169
|
|
213
|
+
mistralai/extra/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
214
|
+
mistralai/extra/tests/test_struct_chat.py,sha256=QKG3L_S1MOmS_7Dmkxky8ciJya9KhF3KQpm_XrSIWQg,4373
|
|
215
|
+
mistralai/extra/tests/test_utils.py,sha256=VesGDR_IiE6u0iY7yOi1iERd7esdJgi2aL4xZp0vKVI,5113
|
|
216
|
+
mistralai/extra/utils/__init__.py,sha256=SExo5t_hx0ybiQhVJIG3r3hOA-Pfny3lIO_WsqNXlN8,116
|
|
217
|
+
mistralai/extra/utils/_pydantic_helper.py,sha256=_mzrbZGU07M96CzcxgjcV25NtIGu5EUfotaN8NDUoFc,883
|
|
218
|
+
mistralai/extra/utils/response_format.py,sha256=30zN2eD60VanKiJadhrjZf-rafyWgPjjqCCjACkvxjw,907
|
|
219
|
+
mistralai/models/__init__.py,sha256=Mjs2P6fe1x636p8Wh1N30e401G0KS0ohqxgzQiHDtuI,102631
|
|
220
|
+
mistralai/models/agent.py,sha256=GFwmKhFAizsAsqvyHFmordWvS8drp1Gc3xYP0RPgZsY,4482
|
|
221
|
+
mistralai/models/agentconversation.py,sha256=3Co0rshu7nbNGf8Sd7MEYzVW5MjFMVAYdX3u0FNzD6w,2464
|
|
222
|
+
mistralai/models/agentcreationrequest.py,sha256=dptZojT3BIXXrrdlD4y4OcY8iwA8aa36aLfXxVMxt-I,4113
|
|
223
|
+
mistralai/models/agenthandoffdoneevent.py,sha256=vy_clv7n2n2Zh196eBLaNRdv3AZHAzJs24WqmM_rLA8,814
|
|
224
|
+
mistralai/models/agenthandoffentry.py,sha256=F1QqpFMEsYsUlirBjPalz4b5VnKgfdbpY7OTx4HPak4,2159
|
|
225
|
+
mistralai/models/agenthandoffstartedevent.py,sha256=66Ii6-cUuyX32VOM1a9-VQNzyP5yw1p8Hx3wBhaDAT8,851
|
|
226
|
+
mistralai/models/agents_api_v1_agents_deleteop.py,sha256=tA3yVSFzxenFwwLd18LoDbFQ4DLj4wHDNgrikLyuEHg,500
|
|
227
|
+
mistralai/models/agents_api_v1_agents_get_versionop.py,sha256=3kimcJdrTiNvctLRYZ1n9LLnlk94oEwj8EankQe5pRY,638
|
|
228
|
+
mistralai/models/agents_api_v1_agents_getop.py,sha256=IBxMZS31eJXTAgboQJKAZEJ9MY1qYEwGM6ExziL00kU,1737
|
|
229
|
+
mistralai/models/agents_api_v1_agents_list_versionsop.py,sha256=0iohFunOlD1_URGulRZmuDFog0WqcEjjAodswFzy1Pw,1050
|
|
230
|
+
mistralai/models/agents_api_v1_agents_listop.py,sha256=ZtjzeLAOkjkhV3K35qr95XXs_W1EpkoOGq-2dD3kkIw,3129
|
|
231
|
+
mistralai/models/agents_api_v1_agents_update_versionop.py,sha256=-ANBszFQ1Ig5sIBcSMo9Z9xcb2-RKbu7jE6GW0Zj7vE,663
|
|
232
|
+
mistralai/models/agents_api_v1_agents_updateop.py,sha256=BFslxxeejm4kyLbWGTFaWNQ2ilFLavfbEUfi0SwjELE,802
|
|
233
|
+
mistralai/models/agents_api_v1_conversations_append_streamop.py,sha256=ZnhYubtb4wwxfbFqV19LyMvMW9V22F-fEsr1RmBZVRA,1072
|
|
234
|
+
mistralai/models/agents_api_v1_conversations_appendop.py,sha256=uKPtHvaJEZTc-N6SPmKk_wEuPDTDLXeuCYyx2l0zKTk,1016
|
|
235
|
+
mistralai/models/agents_api_v1_conversations_deleteop.py,sha256=keBZsJTtOjbtZuE2EPCAy2l1fzhEvo64fkojXgzKJqk,670
|
|
236
|
+
mistralai/models/agents_api_v1_conversations_getop.py,sha256=SS2tOzjHhvPVmqJ_zhf7IxKjwkywXa0v8g3RSizPqfM,1318
|
|
237
|
+
mistralai/models/agents_api_v1_conversations_historyop.py,sha256=7mufGwn2hJ75I0oukJvXFqgmVVXxG6E-K7fj_46iJO4,670
|
|
238
|
+
mistralai/models/agents_api_v1_conversations_listop.py,sha256=Bk8f_BkvRQh7waMcdQ5JA0eMnMphfkW7OZWsaMIJG98,2401
|
|
239
|
+
mistralai/models/agents_api_v1_conversations_messagesop.py,sha256=MC7ExiTo7R2EenYoSfTyE02zJmLFebS6mJranxdK5gk,674
|
|
240
|
+
mistralai/models/agents_api_v1_conversations_restart_streamop.py,sha256=cNuV80H-OxH606FV5zIAcceqS0fD9vwlPmqHyXOBmWk,1095
|
|
241
|
+
mistralai/models/agents_api_v1_conversations_restartop.py,sha256=pjsbjzKTeWgSBiviDzMx50gVqRIGP4dKr3FqG-SOSoY,1039
|
|
242
|
+
mistralai/models/agentscompletionrequest.py,sha256=tDUFJxB-02Bjogvy-4IWsfRQucLiBM8lEyXq7L6xOZc,9977
|
|
243
|
+
mistralai/models/agentscompletionstreamrequest.py,sha256=EYnrtWpAZSxjfD2FBaULfpCasYvSg5zHghquEncinP0,9422
|
|
244
|
+
mistralai/models/agentupdaterequest.py,sha256=6p_tGM19Sl_Ljy5gwyMRe6bGklByHTYNBTDmuhWruko,4502
|
|
245
|
+
mistralai/models/apiendpoint.py,sha256=e-d_e8Z7indj9QtiDZtYU3m7OQTvzRw-cCk3Ag_gbEo,551
|
|
246
|
+
mistralai/models/archiveftmodelout.py,sha256=bBEV_cZwSmDRvxT0_0Nfwjv59TJmw7Vb2xBKCBsOZCs,566
|
|
247
|
+
mistralai/models/assistantmessage.py,sha256=Qaoag0IdSy6RAoACeWAKyRzguHnkh3CkpU-cd68uLQ8,2631
|
|
248
|
+
mistralai/models/audiochunk.py,sha256=KFqmBmoGNBOqtPBm0Q7R-92XhcNTX0Bl68ffT39obO8,482
|
|
249
|
+
mistralai/models/audioencoding.py,sha256=cVuH6K7vQybMETq5JyC-NmeAdTZ12zwtaYagp1L_1mE,379
|
|
250
|
+
mistralai/models/audioformat.py,sha256=Ox4wI_HjbquNoSEFh4A5IlTVQKf6mauu20wWwL1Y84k,399
|
|
251
|
+
mistralai/models/audiotranscriptionrequest.py,sha256=CUvOXsvARDlg32KGsyMPpHHuS2YG0bztwwJlNGGHd4A,3574
|
|
252
|
+
mistralai/models/audiotranscriptionrequeststream.py,sha256=YQ2RUF3M8EElgf64jLlz44vP5a8Pg9ZVGUA6yq2BIqY,3504
|
|
253
|
+
mistralai/models/basemodelcard.py,sha256=9JvXsiEYLW3QWMCApns8TMv0lXotx9y26zN000KLfW4,3249
|
|
254
|
+
mistralai/models/batcherror.py,sha256=tThkO9B-g-6eDSBCm1Emd-zDI4B3mk2vAl0L1MI3pdQ,390
|
|
255
|
+
mistralai/models/batchjobin.py,sha256=_XDWi-vye-Pqkw6siwLLk6SoxabE6GEis_6HzMV4sVk,4020
|
|
256
|
+
mistralai/models/batchjobout.py,sha256=cGKXvdWuxM9aWC1XXOhlqIxoRHzNy-VMjzUICj79WU8,3230
|
|
257
|
+
mistralai/models/batchjobsout.py,sha256=dAZ1T3SB-9502nzsRI-qpd8SwMDlq8TSyVkM2jby1hE,637
|
|
258
|
+
mistralai/models/batchjobstatus.py,sha256=WlrIl5vWQGfLmgQA91_9CnCMKhWN6Lli458fT-4Asj4,294
|
|
259
|
+
mistralai/models/batchrequest.py,sha256=QdSNlReYrj-SrKSPo78vXbi15YNSPeng6y5Ci3EQFME,1444
|
|
260
|
+
mistralai/models/builtinconnectors.py,sha256=cX1M7Q_2tsWeuH-lKWomXED7xN7Du6BJKvYpep1vD30,284
|
|
261
|
+
mistralai/models/chatclassificationrequest.py,sha256=PmU036oOlGqfd75hNESDUJiN4uJNYguACoCt6CzBC2M,534
|
|
262
|
+
mistralai/models/chatcompletionchoice.py,sha256=SGPVWN4onBeThGiZxPtdVYwLk77qEFq8SSjyMtVjpJA,731
|
|
263
|
+
mistralai/models/chatcompletionrequest.py,sha256=6RK6OJTlKIiyTyRh7qVMgki7h10Prnqg5Cmq_vYpGUA,14108
|
|
264
|
+
mistralai/models/chatcompletionresponse.py,sha256=px0hjCapAtTP50u36hiQdPcC9X6LU81Nq5aJ3AlofjM,709
|
|
265
|
+
mistralai/models/chatcompletionstreamrequest.py,sha256=jEgv9thJYKykD5bHKZvItVoNqw90hEVIj33f_Uv6h_8,13796
|
|
266
|
+
mistralai/models/chatmoderationrequest.py,sha256=x1eAoxx_GhaxqGRe4wsqNaUi59K39HQakkedLJVUVD8,2236
|
|
267
|
+
mistralai/models/checkpointout.py,sha256=A2kXS8-VT_1lbg3brifVjZD6tXdsET8vLqBm2a-yXgA,1109
|
|
268
|
+
mistralai/models/classificationrequest.py,sha256=DiSREYLR2my_ioGD1bXFQqtNqbyJSWR5UnTLtdcsMHw,2055
|
|
269
|
+
mistralai/models/classificationresponse.py,sha256=tiQzQnqDr34oFJnMmbI_wleKqAGHdn3W6iFyL0cZ-uY,607
|
|
270
|
+
mistralai/models/classificationtargetresult.py,sha256=EOJeumiN8JsB_85MxOgeo6c9-Upal3yfPrQjNkI0YjA,371
|
|
271
|
+
mistralai/models/classifierdetailedjobout.py,sha256=JIUm-pUsBDouxh93k1spQvPIsZ_gwCItTd8QVMySd0I,4812
|
|
272
|
+
mistralai/models/classifierftmodelout.py,sha256=aWnie8Rf6rQSvd_FGTEQlkevYC_LfRF5zgCeiO_-01U,2851
|
|
273
|
+
mistralai/models/classifierjobout.py,sha256=ID_AKpu_Ed2O9u4M0YQZaWrT5sOAvqg0FjbmBR_806k,6007
|
|
274
|
+
mistralai/models/classifiertargetin.py,sha256=eMNNBpEagig9jvkS-jxDSL9xELUiReHkHNoS-kPykCc,1679
|
|
275
|
+
mistralai/models/classifiertargetout.py,sha256=WK94y6c1EsxcC7bCnUFus0ljxHQ4Q-b4eudswKpOrmU,561
|
|
276
|
+
mistralai/models/classifiertrainingparameters.py,sha256=ty7hE0wzQAIeMyaPvTby30NxsjB2kX31IiZcBp5auxI,2182
|
|
277
|
+
mistralai/models/classifiertrainingparametersin.py,sha256=6fb8UpKCunrP4na0j3-U-owHe8h3hqRpO7-dmo1ZlfI,4462
|
|
278
|
+
mistralai/models/codeinterpretertool.py,sha256=Buyn8bANh4uT0dbcQjk8A0L5AbOQdakhIc_0a0LGmlA,494
|
|
279
|
+
mistralai/models/completionargs.py,sha256=qcML2iBQO81-iEMhjAiQCyT9jyFCKBmIijFzHlhipbg,3214
|
|
280
|
+
mistralai/models/completionargsstop.py,sha256=3TB3uIYxTPWXzMNnQb9bkYlLD5u92G0xBdzP_dIZNjQ,371
|
|
281
|
+
mistralai/models/completionchunk.py,sha256=Cdq-FBWa1oBhrxapoOAj8qr6xmkeIPsfPQSbjeK6NLY,871
|
|
282
|
+
mistralai/models/completiondetailedjobout.py,sha256=fCS8gbuOy0eSyfj685eXYfyd8JHE7CxvkE3WXhESAyI,5032
|
|
283
|
+
mistralai/models/completionevent.py,sha256=rFc5dJBRnNOzspI95Jhkjd9WyM476u48cN0T1Vh-Cxw,399
|
|
284
|
+
mistralai/models/completionftmodelout.py,sha256=P13P9iM8DhV3HB9p5qy67z251b3xKPak_d4reLsbCQc,2598
|
|
285
|
+
mistralai/models/completionjobout.py,sha256=B6z8Jdf9JbAWgCE3J96pJmdvAKwVBu1-0uX1hXrPfuI,6164
|
|
286
|
+
mistralai/models/completionresponsestreamchoice.py,sha256=CEmNMLNRWtxNkOvJkwkY4auTTjzmQtMDfn-xew0jWc8,1784
|
|
287
|
+
mistralai/models/completiontrainingparameters.py,sha256=vx5fWGul8npjXAY1pCWsJhHCcMOY7goIKqzGN4-BvMg,2324
|
|
288
|
+
mistralai/models/completiontrainingparametersin.py,sha256=6d6grsIMPX7SZoaunp3kR1cC66VMtEM_OlxU-gz1KXA,4582
|
|
289
|
+
mistralai/models/contentchunk.py,sha256=FdLAndeSuNXPSJGUipYZEoaejFKxsoqsQ_KrvNu2mGc,1466
|
|
290
|
+
mistralai/models/conversationappendrequest.py,sha256=_7ZGwaPmZ55B6qQrx1hxT3OrhFNitmravqUUXxgMQ2w,1293
|
|
291
|
+
mistralai/models/conversationappendstreamrequest.py,sha256=DvMBAKeaZObHoRQabajqRJMYirsbI1FecDAOqrY0z-4,1338
|
|
292
|
+
mistralai/models/conversationevents.py,sha256=f_bKoWSzzUy0zuu8Wn4dxjVjjqfE7ef28URr8wRYqjE,2990
|
|
293
|
+
mistralai/models/conversationhistory.py,sha256=gIF0prq4rz5pddJXj603h1Haf-Aoxk78t2YQsvmyHrE,1761
|
|
294
|
+
mistralai/models/conversationinputs.py,sha256=S0jyBRBx2WKxwGQx2QdbXCEWqmLZ1obocxquvCXk9Po,460
|
|
295
|
+
mistralai/models/conversationmessages.py,sha256=FKtfAgDN4_S-7YQ18zqSAw1XgqwtZdNJiNSkzTpfRyo,874
|
|
296
|
+
mistralai/models/conversationrequest.py,sha256=CS66KAFjVUUAFEQhuC2xmo0EQBeOP64HUinDqoKqqNo,4801
|
|
297
|
+
mistralai/models/conversationresponse.py,sha256=ODzKCy-T83wE6ef_1SWth8SCvf0lTGjZPpbTc8Md8is,1648
|
|
298
|
+
mistralai/models/conversationrestartrequest.py,sha256=37oCa44kTmPrjGD2oiO3mN_0mMHYkupqkOpbdvQtj0I,3231
|
|
299
|
+
mistralai/models/conversationrestartstreamrequest.py,sha256=NLl_YoqfEnVVjX_nS0nG4thV9jCMBVX45fabDz7PJWI,3276
|
|
300
|
+
mistralai/models/conversationstreamrequest.py,sha256=oARFgWVq8Zx3o9NVKwPOo3P9LoVK2fnIP-9Ux_jkWDA,5028
|
|
301
|
+
mistralai/models/conversationusageinfo.py,sha256=K9XqE-TgF4sytMjEj-eMhPZKoO4HgJKZKwCotQrBUko,1937
|
|
302
|
+
mistralai/models/delete_model_v1_models_model_id_deleteop.py,sha256=lnVRFX-G0jkn1dCFC89sXY2Pj_w4QfMDeF1tPjS4hWE,602
|
|
303
|
+
mistralai/models/deletefileout.py,sha256=s3a-H2RgFQ9HX0kYSmP6GwmwE1jghz7dBj-3G0NBVSY,587
|
|
304
|
+
mistralai/models/deletemodelout.py,sha256=W_crO0WtksoKUgq5s9Yh8zS8RxSuyKYQCBt1i8vB1sE,693
|
|
305
|
+
mistralai/models/deltamessage.py,sha256=3C0YZ9pQksIoE-i_0FqP5GUAQ90EeKUzQnHkqmhJAlc,1945
|
|
306
|
+
mistralai/models/documentlibrarytool.py,sha256=E-9-rUD_kBq7b-0sOvz0ojj-2ByF33XvUJg918u0pYg,655
|
|
307
|
+
mistralai/models/documentout.py,sha256=fkrGHLdW03m5BQ7P2M4F_R2sDlTDK1kD-lYj_45VnSg,3229
|
|
308
|
+
mistralai/models/documenttextcontent.py,sha256=uQKQu3H31Oo8HgAt7qDYMX4CByAPY71lhWxeEEwYVaI,303
|
|
309
|
+
mistralai/models/documentupdatein.py,sha256=Uqp-crsMKzZuqgfqQ6PvfhRD0xFOwQPu1SjmMz7YXsg,1925
|
|
310
|
+
mistralai/models/documenturlchunk.py,sha256=6TBoU3Mc2vd3Slo70a80ktPQAOeSQQ9UD5CxnbabO_8,1711
|
|
311
|
+
mistralai/models/embeddingdtype.py,sha256=odtE-xKFn8Qw5_oEZIFIGrhXqiRF3p9cccCFnVevn7k,232
|
|
312
|
+
mistralai/models/embeddingrequest.py,sha256=Ywhht6ByAID0VM9GFh0QVOt_5v0fRaxTI9V2eD6d3AU,3181
|
|
313
|
+
mistralai/models/embeddingresponse.py,sha256=te6E_LYEzRjHJ9QREmsFp5PeNP2J_8ALVjyb1T20pNA,663
|
|
314
|
+
mistralai/models/embeddingresponsedata.py,sha256=fJ3mrZqyBBBE40a6iegOJX3DVDfgyMRq23ByeGSTLFk,534
|
|
315
|
+
mistralai/models/encodingformat.py,sha256=FTkEQYGWlz7c9RGar7quSMjDtySQPi2tFjBaQlaUdOU,192
|
|
316
|
+
mistralai/models/entitytype.py,sha256=wxcw74uDsZBqhcrhXYH4TkK4lVTYxWu7PuLD5nqd2UU,355
|
|
317
|
+
mistralai/models/eventout.py,sha256=UMqHEJMMJH68gbPA7uKF8bnPZmVzKSa-fXibFyXqTOg,1639
|
|
318
|
+
mistralai/models/file.py,sha256=QJ3IkP4t_ZssCivHzIPp-4co_rIY16Usg2dLrVb5kz0,956
|
|
319
|
+
mistralai/models/filechunk.py,sha256=GhF5wtOAa-M0uQaQgLrzYB8HN9wsasm3WJ6j9Et_LsY,641
|
|
320
|
+
mistralai/models/filepurpose.py,sha256=5naQbVNJg4780L25b-mX9W3inX5z2nOz3-86amdGlEc,305
|
|
321
|
+
mistralai/models/files_api_routes_delete_fileop.py,sha256=HOx-hJxphSYF-JV3zOGe2eucWQUpfVqxG0IDaSa3dcE,500
|
|
322
|
+
mistralai/models/files_api_routes_download_fileop.py,sha256=y3sLFZ-j4eUuxCyIP0L-exy0ViqskDLkghkOccElBQQ,504
|
|
323
|
+
mistralai/models/files_api_routes_get_signed_urlop.py,sha256=e_XczBgInaylmHJ9m5wJQ78hfCp2PrrTrT8bxGGi8BI,879
|
|
324
|
+
mistralai/models/files_api_routes_list_filesop.py,sha256=xD7vkhVOJCpxW0NILGtEg6g0C0w826BY8bpBFhIm434,3041
|
|
325
|
+
mistralai/models/files_api_routes_retrieve_fileop.py,sha256=8DjSbYqUqFoPq-qcNXyVADeBVSsoCfHFlkRfmwYk-ns,504
|
|
326
|
+
mistralai/models/files_api_routes_upload_fileop.py,sha256=UA7LOLTHjDJVDFPkokragHhmbX-acR0ugie-KkGyqcw,1443
|
|
327
|
+
mistralai/models/fileschema.py,sha256=ZyKF9OICst7ppefAMKUxyUt-UfhXlqgrqqhKzP2oimc,2560
|
|
328
|
+
mistralai/models/filesignedurl.py,sha256=VwvuhzhJulAB99Qxz6zr-2F1aINosAfaSxU0IhytDSU,289
|
|
329
|
+
mistralai/models/fimcompletionrequest.py,sha256=aNLwLg7uVYGd95JEeIWSJ2J-VhBVx7USaPMB35fr4II,6590
|
|
330
|
+
mistralai/models/fimcompletionresponse.py,sha256=qNgb2WFVgkaW7Isfkk2Aol1gTV9UkhQomcDAhoPDeYw,707
|
|
331
|
+
mistralai/models/fimcompletionstreamrequest.py,sha256=sllH7XIN3KlV7l0Fzq2jnLCufGr8LUYaqQvkPOJ_nds,5969
|
|
332
|
+
mistralai/models/finetuneablemodeltype.py,sha256=rlQab5PhkKLIHMIN2p2PYWTCZyrkoqwkS7k_SmmNIxg,208
|
|
333
|
+
mistralai/models/ftclassifierlossfunction.py,sha256=O5Zu_G4gMstITmQDHM2ZC46L_8OqYFNcN-PdC9Svdws,214
|
|
334
|
+
mistralai/models/ftmodelcapabilitiesout.py,sha256=Cg2ETH8o3eYm79-BEWweWS53wDqa1DIsZ8WtWA32Xic,730
|
|
335
|
+
mistralai/models/ftmodelcard.py,sha256=cySwWhcdlox5hsxuI8T0LTFg8Yx0JtiHUkvWZbVU7pg,3525
|
|
336
|
+
mistralai/models/function.py,sha256=QaQriwBCCIS65IHO5Ge2OnMW6L1dS-o8JS8zlGYKSRU,534
|
|
337
|
+
mistralai/models/functioncall.py,sha256=VvvBe4bVq1Irqo5t4_n1iq60UF7hLf8tE_GjkbyM8iE,556
|
|
338
|
+
mistralai/models/functioncallentry.py,sha256=6CGh3q9tBG8MxgCSfJ0_ZZ0-RkP93DLunqLqQHUoaig,2232
|
|
339
|
+
mistralai/models/functioncallentryarguments.py,sha256=9ouc9p97SGUKrBh_fyPLqP5JYFVdqTVVwzMXoTu-WjA,424
|
|
340
|
+
mistralai/models/functioncallevent.py,sha256=icCXyPxKjW2JsmvMEW1d-Wv8QNAOemf8kGYHxkm4Hks,811
|
|
341
|
+
mistralai/models/functionname.py,sha256=jgd0moI9eORQtEAQI4ROiMSKpWSbCLmK6IhDn7uppKY,467
|
|
342
|
+
mistralai/models/functionresultentry.py,sha256=FRBJhWOoeWm9QJKPl6wOjozapEAO_v1_Zu7DpCA4oAo,2045
|
|
343
|
+
mistralai/models/functiontool.py,sha256=uuFQxafQLyOY2chv5w5l-ASqEEPeM8DLcWHx-NGky9c,549
|
|
344
|
+
mistralai/models/githubrepositoryin.py,sha256=At2Fz-fnfumYg-yGkS9OwIzwES_KvVft8tDrdvtyUV8,1709
|
|
345
|
+
mistralai/models/githubrepositoryout.py,sha256=ZReGZTRkh3T4eXOLc9aqZSxnULOKuB4wtmwfcaDeJlo,1722
|
|
346
|
+
mistralai/models/httpvalidationerror.py,sha256=B91BF1WCHHygFEZe_u5H-b62Ykv15py91cLB5fq4MEk,840
|
|
347
|
+
mistralai/models/imagegenerationtool.py,sha256=EcfC78l7gIQzsP8b6y9XjcHPicrrYhc1yc_frdzcTwk,494
|
|
348
|
+
mistralai/models/imageurl.py,sha256=9ItYx55HH71XsElJVt7kuVfGJ4YvcTNUDKank8-r9h8,1371
|
|
349
|
+
mistralai/models/imageurlchunk.py,sha256=SyRcRLZYkEbnPD0CJArdCAup07okx-AL5QO9xTB4zGg,995
|
|
350
|
+
mistralai/models/inputentries.py,sha256=scejXvTmYHAsh0W5Xfworg2sgeQKj9lxL05FsZPPIQE,1199
|
|
351
|
+
mistralai/models/inputs.py,sha256=KqOi7I6tCs51puGHIcTMXIYhJ6tbGONOLcqUBTNV_MM,1707
|
|
352
|
+
mistralai/models/instructrequest.py,sha256=8Y63pPlhD6l8OhfHgoEykUvruRFCmghP7_w354J9ovY,1323
|
|
353
|
+
mistralai/models/jobin.py,sha256=W2kKOf1iTGw03Z8upSAMgx2epL5CyCH-vqx5rnUacM8,5522
|
|
354
|
+
mistralai/models/jobmetadataout.py,sha256=2tQfEgOcEYzv-u8SkpzDncwS0EkfRevW8v7KHkoD_M4,2418
|
|
355
|
+
mistralai/models/jobs_api_routes_batch_cancel_batch_jobop.py,sha256=3Q-YaI2zAX550v--wedoh9XoWg2rRSVFIYOrv2SjhG8,514
|
|
356
|
+
mistralai/models/jobs_api_routes_batch_get_batch_jobop.py,sha256=eyZ2MYPCl9NynhpBnqlwBMPbA3WNqHfyp9xpsmuXgK8,1725
|
|
357
|
+
mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py,sha256=jeEJ07MeYdoV8-hN0Wwj35smu0Yk13sjdvkKDojpqUI,3280
|
|
358
|
+
mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py,sha256=pevOFk9Ji8iebXVadr5d882kKjrvT6_R6b8qBTYkQAU,628
|
|
359
|
+
mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py,sha256=biN40DJv0iQ1Pr1fA0fs6zV5j11C1zlcYt4XLNQILSI,1473
|
|
360
|
+
mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py,sha256=V_sr_0pSoXVkrQszTa2zRmLff_B3WW4PE27GU-fokk8,1270
|
|
361
|
+
mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py,sha256=0QGbsTA2VAHeTsQw15cn_dzurWOrzUWtkIE05meBSNA,1460
|
|
362
|
+
mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=t1JhyqIQMMWyLBSL9PUXese6cUPqSY-JCctmluu-Zys,5768
|
|
363
|
+
mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py,sha256=e9b5T3Jjq-y7ZTEGo8w16KrJwcutiD5N-5aFBtZGQTc,1388
|
|
364
|
+
mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py,sha256=_pkyhD7OzG-59fgcajI9NmSLTLDktkCxXo_IuvWeyfs,636
|
|
365
|
+
mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py,sha256=YsjSBijG3EHurZoqXCMjWIa0tz4e_oyMjQzyVD2CoQM,1728
|
|
366
|
+
mistralai/models/jobsout.py,sha256=93zoxSqzA1Kc2Q2xP6LQwSbDraAe-9zrrFZhhK_rETo,1184
|
|
367
|
+
mistralai/models/jsonschema.py,sha256=wkhM2CwHk5BqWiWZYn6XYdppc5IitXWirepfxKiDENY,1658
|
|
368
|
+
mistralai/models/legacyjobmetadataout.py,sha256=-ukf4uSPxIyVUalPEGYJOxN5TWqH_MQBPSTPQO4yTFw,4494
|
|
369
|
+
mistralai/models/libraries_delete_v1op.py,sha256=5oWbIQ_Dfp5yeA7-dW6Ghbe6h4I81bM__ENImQ24Z-M,492
|
|
370
|
+
mistralai/models/libraries_documents_delete_v1op.py,sha256=8xm_RNUnrVwRfuMwVNx4BKnm7_fn_KwmjaSSaVjmPTU,648
|
|
371
|
+
mistralai/models/libraries_documents_get_extracted_text_signed_url_v1op.py,sha256=g-SBfUeSERo4PBZI7l53GO7MMne0Gxienpx6Pb_m3h8,686
|
|
372
|
+
mistralai/models/libraries_documents_get_signed_url_v1op.py,sha256=WCH8_B-kN8CljM7Q5poCSDdBqzX96cKAlD3JpsXm_jY,660
|
|
373
|
+
mistralai/models/libraries_documents_get_status_v1op.py,sha256=81fElPloAbNxUlYo45MoZIWdFeUmpJlQX_3Ga1Z1-z4,654
|
|
374
|
+
mistralai/models/libraries_documents_get_text_content_v1op.py,sha256=nnlleDWpjiLisTUnJkJ9c_C7DUd6KtWbSrAgPQhQeRk,664
|
|
375
|
+
mistralai/models/libraries_documents_get_v1op.py,sha256=BwT2_FiefLzaphvuWExqgjR9wiPgk7fBfENdwr9k1pU,642
|
|
376
|
+
mistralai/models/libraries_documents_list_v1op.py,sha256=unJTwAEmBGJcRR8l52fLxGeVaebIwwdLX45LYBE7V_Q,2813
|
|
377
|
+
mistralai/models/libraries_documents_reprocess_v1op.py,sha256=8y11VgqC89OG4auvxq0OdvRTfOpueYW-wpGlxxX9xWM,654
|
|
378
|
+
mistralai/models/libraries_documents_update_v1op.py,sha256=WaKTmJaKml8ZtiIlr5Gr95ZlU1LXo_ttGD7rBNNIEt4,936
|
|
379
|
+
mistralai/models/libraries_documents_upload_v1op.py,sha256=ob6qZgfJtia8uzaShVrXUWrvlNYifovpF_HNubTupKw,1781
|
|
380
|
+
mistralai/models/libraries_get_v1op.py,sha256=P9bVGWHDgV_gOLSWu_aTFkMVN0P0adHg_hl4xFjMhqo,486
|
|
381
|
+
mistralai/models/libraries_share_create_v1op.py,sha256=y-D1Uln-ExaEUZnkDdlU60b9b0N1tWGAM3-375fZPxk,730
|
|
382
|
+
mistralai/models/libraries_share_delete_v1op.py,sha256=WyCgHI55nQYLgfcuWgDtW-QSYL5j4HvMz8REbtMZoZs,767
|
|
383
|
+
mistralai/models/libraries_share_list_v1op.py,sha256=O0twyrmtYEKAT-3J0Wo7hWOLQTTvozA7MTr02-est_o,498
|
|
384
|
+
mistralai/models/libraries_update_v1op.py,sha256=xnngL31KbL6p_4JmBfhc-qlEQwfExpFkvkwlaeZHsvc,773
|
|
385
|
+
mistralai/models/libraryin.py,sha256=OEMepJTcX1qnvVYow5R-66WNNvymrH9EWreVX7lmb-k,1513
|
|
386
|
+
mistralai/models/libraryinupdate.py,sha256=Mnq2xhPAo_dWeD_uMkDl91LXOh0JttHKUSsXbz4P3JM,1472
|
|
387
|
+
mistralai/models/libraryout.py,sha256=vxyutShR1vrZGRHJLE-mxSduw7k5JQrpzleg6lMCcjI,3019
|
|
388
|
+
mistralai/models/listdocumentout.py,sha256=L8IQiYYNI3N-NK0uzXqGtWfs6X0fhDYPYlheqWxI8TQ,555
|
|
389
|
+
mistralai/models/listfilesout.py,sha256=kybWd5AwVkyV9SS8weF7b7oAbURKuPQzhaOj1r8pfrk,1525
|
|
390
|
+
mistralai/models/listlibraryout.py,sha256=cCMe2v7j03GFEriIVuf_U35uQFNYZVLjefmFPjqxfug,408
|
|
391
|
+
mistralai/models/listsharingout.py,sha256=w6WChWGxjah_qc8ly_ljumLo01IhnymufWILw56LVr0,408
|
|
392
|
+
mistralai/models/messageentries.py,sha256=vExZZIyOTkmEi-3Bvw2UG1GwGbGr59U_bX-biwIl0Tk,581
|
|
393
|
+
mistralai/models/messageinputcontentchunks.py,sha256=n2Tpd9ybGn_ey8-mhOfBD3WSTJpPclRzWCSgdWGECg0,924
|
|
394
|
+
mistralai/models/messageinputentry.py,sha256=8iseifHkTaqV7hNf2bvRAs8ru7M6TG71x-CPTu5xtBU,2834
|
|
395
|
+
mistralai/models/messageoutputcontentchunks.py,sha256=dlnavt4P-mTTYdb80ovuF6cRhvwEvKCwQ1E8T3EbKG0,1120
|
|
396
|
+
mistralai/models/messageoutputentry.py,sha256=DO7eLQe2Y3JxJlSjHQim2kKzC1-S2j4GnglpQlJ7hQI,2948
|
|
397
|
+
mistralai/models/messageoutputevent.py,sha256=tY05n_aLlKDbPQKCfNYnpQ7WJ5VOsOXWJLSpj1zg-5k,2719
|
|
398
|
+
mistralai/models/metricout.py,sha256=dMSDFB4CnYIADYLDcKs3rUrDtOhyRVs8ClKr7uu5yrs,2040
|
|
399
|
+
mistralai/models/mistralerror.py,sha256=ugicwln8uTBgYDCMWAsSKJCo_2Tkxy7GQjkSDznopGw,956
|
|
400
|
+
mistralai/models/mistralpromptmode.py,sha256=nqGAd-DjsazX0-vqw_ObTyA_Nf551PeRnePPMw-Gxjg,254
|
|
401
|
+
mistralai/models/modelcapabilities.py,sha256=VjP7j0euii23FNkArBeEGoZt9eHk1xVnbus7xSRXH1I,985
|
|
402
|
+
mistralai/models/modelconversation.py,sha256=66Ghr7GA4XerWjkLFJLoiKG0iCSzirMcwLdc6xAPdRo,4697
|
|
403
|
+
mistralai/models/modellist.py,sha256=D4Y784kQkx0ARhofFrpEqGLfxa-jTY8ev0TQMrD_n8I,995
|
|
404
|
+
mistralai/models/moderationobject.py,sha256=mmzFEcccsT7G9PjmQrsYMijmICbfBtUpVN_ZisuhYbY,655
|
|
405
|
+
mistralai/models/moderationresponse.py,sha256=kxIRI3UJdddj2Hz-E9q21gKQAbacxZoG4hdoZjrae5M,508
|
|
406
|
+
mistralai/models/no_response_error.py,sha256=DaZukP5ManflzAN-11MtmBitfTIct37sRvfszvfM13o,467
|
|
407
|
+
mistralai/models/ocrimageobject.py,sha256=bIYt82TlTbDSavxM9UWuTmeqhha130v1CJyhUGlDHls,2808
|
|
408
|
+
mistralai/models/ocrpagedimensions.py,sha256=oP4v80I8d6ZELSZt6cRoECd6uIONgdyCeeFalm-4OvM,609
|
|
409
|
+
mistralai/models/ocrpageobject.py,sha256=GQxf-9WyUqMsDeUcveCaPz3F5wYaN7YovJK2XFN5FqE,2938
|
|
410
|
+
mistralai/models/ocrrequest.py,sha256=dZ6PUb6BBFYBQ_gKffhJpHIGcbtPExrbCGu3gzxZvwo,5297
|
|
411
|
+
mistralai/models/ocrresponse.py,sha256=Z7n6oKu7Dp6I4IlJuh_MhPcKmt0GW7FdtBtPg7060k0,2048
|
|
412
|
+
mistralai/models/ocrtableobject.py,sha256=adcXaTi-UDGWw3Hfk0zYdwCDT2AyIlxCMDhClfsL6fU,805
|
|
413
|
+
mistralai/models/ocrusageinfo.py,sha256=eVedgqaPwqbHaPH80RKq3ccFl-JBh-bXfBbdLEbthG4,1577
|
|
414
|
+
mistralai/models/outputcontentchunks.py,sha256=nPlDIHxsZamkZKn4K8Y0iwn72vREG2Ijb70i7fIbzAM,1092
|
|
415
|
+
mistralai/models/paginationinfo.py,sha256=kEZ66Emg0bpHoGQUXbR4IDDd-pjiejrY4wdcQ5aJRM8,473
|
|
416
|
+
mistralai/models/prediction.py,sha256=neGtaqjZGngdVtvy1XDadZhcLBvr0bMz8rcfMy90RIw,978
|
|
417
|
+
mistralai/models/processingstatusout.py,sha256=kKS_e3oG7IrioJSHdWInJGa47TqtfC7bFufd9W9nZEs,372
|
|
418
|
+
mistralai/models/referencechunk.py,sha256=yfs9_dOIrT95TqEomDurtGP5-blUUiNXvlPbxCZiVFs,520
|
|
419
|
+
mistralai/models/requestsource.py,sha256=-v7UHMh8bwPHDZ01kfKbaSyx36lq4CNTW_mf6eDVhhE,217
|
|
420
|
+
mistralai/models/responsedoneevent.py,sha256=Wo8B-rDDOgIGiwkpmzNyogKkZetCrHPudC3Fs61sIIA,780
|
|
421
|
+
mistralai/models/responseerrorevent.py,sha256=mr-G235b7KH5IcVrPuiuw1oTKSOndck-yGl2upitJyo,686
|
|
422
|
+
mistralai/models/responseformat.py,sha256=JWEBbJYGVsd9_vDg-cBVLaMASaxJiKrkbZlz2Q1M490,2635
|
|
423
|
+
mistralai/models/responseformats.py,sha256=qvCzdCD1R9F_R0qkL0QzsIWjof0ACkOMBLrZo9WBbLo,216
|
|
424
|
+
mistralai/models/responsestartedevent.py,sha256=EEhWHG-n-uhct4p5kNRq1t4v4h1-cKLdmIxvKO1Uqus,687
|
|
425
|
+
mistralai/models/responsevalidationerror.py,sha256=4CvcTqPDZCXo5KVuKLFWCE0yQRWlyWJx2zv-601-ASY,753
|
|
426
|
+
mistralai/models/retrieve_model_v1_models_model_id_getop.py,sha256=N9_JFwiz9tz4zRXJ9c1V0c_anFEVxVzPDoFt2Wrer4M,1388
|
|
427
|
+
mistralai/models/retrievefileout.py,sha256=jZJxRS8rHSGnrvt981ax0MQk8Usz9VA0Cqcxidqv0zs,2607
|
|
428
|
+
mistralai/models/sampletype.py,sha256=IL9X5n1KvBM8G3Agbpp2Od00lel2Lqs2cMVCYw2NRFk,363
|
|
429
|
+
mistralai/models/sdkerror.py,sha256=h9ulejNx8tl_uRL9Hl9IV_VbCw_UiNWT077sBW4938M,1286
|
|
430
|
+
mistralai/models/security.py,sha256=RQn-xHLq3q4OEzrx9BcJMuT49UaCvwABXrqBEcqyKmA,686
|
|
431
|
+
mistralai/models/shareenum.py,sha256=xOi45Lyr8v44-dvMkslOzUJmKrz6SsNJ4GBWQW44LLY,286
|
|
432
|
+
mistralai/models/sharingdelete.py,sha256=v33RWE3TxGQBn36KYXNPpAKvazu3tEL036GoqBAwSvQ,1777
|
|
433
|
+
mistralai/models/sharingin.py,sha256=Ry_bzpW0Gtkx3KuvMA5BTIDOvvBigqU_CjN1MSkw-LE,1845
|
|
434
|
+
mistralai/models/sharingout.py,sha256=Ki4D6oE53JzbL1LJwNj9uNTngFYCDqUaA4FhnPLR_So,1596
|
|
435
|
+
mistralai/models/source.py,sha256=dlZPF__sVvA-kU-pH_RvSZNqBdSyExKh-bytj6UcKDs,306
|
|
436
|
+
mistralai/models/ssetypes.py,sha256=xJlN3JFQ-EaF90nkD88zwjSSsgRN1C59JPZ97K1kASc,531
|
|
437
|
+
mistralai/models/systemmessage.py,sha256=hF8kFYxYzMcxt6Jj5v4Q7cIIiqk0G9cM_mtOjAuHLmQ,890
|
|
438
|
+
mistralai/models/systemmessagecontentchunks.py,sha256=zO5Hfr7u5E-DDsH1lPVmUg88pI3ZOjpXBDAwnea-RHk,732
|
|
439
|
+
mistralai/models/textchunk.py,sha256=pSzE1pP67KKvrfylmdXc19x8WNvCjfLHCvyhkPXvPZw,449
|
|
440
|
+
mistralai/models/thinkchunk.py,sha256=QDZg4DM2DvYZcKCqGvG0Qf9WGITsi7mQSm6dWTiPl5c,1085
|
|
441
|
+
mistralai/models/timestampgranularity.py,sha256=b7sNpuEH5oCtcNubtoRxPC9Q-UgJbMjw2IAfXN3mNE0,180
|
|
442
|
+
mistralai/models/tool.py,sha256=tmsW453BZFQgvbcHLZPjFNhu4xzMl8DLRdLhqYURaXg,495
|
|
443
|
+
mistralai/models/toolcall.py,sha256=fff9fDWXgVaUkGo9ATj1yC0gcdZbXzyktGSm6BQoNU4,638
|
|
444
|
+
mistralai/models/toolchoice.py,sha256=4eWJqRfGJMVHTEtDPOjV-raW7dibG57HlXhDWaIBZ5w,835
|
|
445
|
+
mistralai/models/toolchoiceenum.py,sha256=amwfjTYyoGdJ8NHdjOGiMx3zl_qISL_jh6sXcxaNp8o,216
|
|
446
|
+
mistralai/models/toolexecutiondeltaevent.py,sha256=eLsuzy--7HXvF1Ts3BnhSOQiKJZVu6FN7olwirNMTnM,1172
|
|
447
|
+
mistralai/models/toolexecutiondoneevent.py,sha256=i2FDjzHTi3iN5wVckzbJr2wHFKMjmp8n5XfieJsFJ08,1212
|
|
448
|
+
mistralai/models/toolexecutionentry.py,sha256=OdFaYLrqJKEtm3PABLshY0i1NfCmxQPE0LPGoTKtyFc,2349
|
|
449
|
+
mistralai/models/toolexecutionstartedevent.py,sha256=u9__xih69RQw78YHN6U-X6nFLHpXwlZyfyM_ia0gHSg,1198
|
|
450
|
+
mistralai/models/toolfilechunk.py,sha256=_1DdG-o-E0PJ_hwHoqc4TGpz8IKFDwjrJBTHbUWbS2E,2035
|
|
451
|
+
mistralai/models/toolmessage.py,sha256=ZD908y6u2leIowxEudduuC0_kqAGsXLsfrbfiaMFB_U,2045
|
|
452
|
+
mistralai/models/toolreferencechunk.py,sha256=WJ3Yhw-JTWCvQh0B8lRjOvaAU48L1vhVF-cvP9Bdxwk,2192
|
|
453
|
+
mistralai/models/tooltypes.py,sha256=wtGLsJ_yXvA3nJQlXOYH3Q3jLynRtLvpGKALq4h3Kms,245
|
|
454
|
+
mistralai/models/trainingfile.py,sha256=IlwKP2GL8gL0VHVJ_zUDV-Q0F7obdLzMMRDDJatSjwo,400
|
|
455
|
+
mistralai/models/transcriptionresponse.py,sha256=TZbPF5tfxEfssuZ0bRB7wvKuZwltQO8d63DVW_Q0W7c,2316
|
|
456
|
+
mistralai/models/transcriptionsegmentchunk.py,sha256=gYlzHpqMhzDjAcEvOGonHtEWGNbCZlxmIWCN2YDGCak,1059
|
|
457
|
+
mistralai/models/transcriptionstreamdone.py,sha256=erSP6x5ipPV7Ws_839mLoNNqNwLERGOcVsi16K_6cNM,2523
|
|
458
|
+
mistralai/models/transcriptionstreamevents.py,sha256=2DdMR83hWsfpn_Am2gsTVxhNltN93BUPQZAZzmtlzOI,1907
|
|
459
|
+
mistralai/models/transcriptionstreameventtypes.py,sha256=OF-zkyl10irv2Kpc217UQmr-17x36V6Z5zkX6cUZIqQ,297
|
|
460
|
+
mistralai/models/transcriptionstreamlanguage.py,sha256=-MhtbxCg8aUUl0zU9_Cx74JqQi_i0cy7MTVb2LMwMw0,1100
|
|
461
|
+
mistralai/models/transcriptionstreamsegmentdelta.py,sha256=CNKprqLZApMZwOOpI58Kg6Ga7Xj8QkoQ3Obsw6uFUM0,1164
|
|
462
|
+
mistralai/models/transcriptionstreamtextdelta.py,sha256=01rbzjlHH31ucrWSDcU5hlIDMoTyMB2sKkMIjasvpuQ,1089
|
|
463
|
+
mistralai/models/unarchiveftmodelout.py,sha256=nY7SKLpkOAaAhtbGrPp9DsescJczeLBWWVugN30gcx4,577
|
|
464
|
+
mistralai/models/updateftmodelin.py,sha256=MyiLZb5VUmd3TGINQrjnpGfUFel7wLZYBu1ILGrxo7E,1472
|
|
465
|
+
mistralai/models/uploadfileout.py,sha256=wthsPKXvoYwRRPR2z5QM_EMi3qUr01NvnGgK2pCHUBU,2566
|
|
466
|
+
mistralai/models/usageinfo.py,sha256=-SQ6l9wUo-k3Zebsy_WnKBBc6UWPL_5M3AcirkSkJ20,2318
|
|
467
|
+
mistralai/models/usermessage.py,sha256=VJO7eASTAm4P_7HIJZxf7Ag9G4qvgjrtctc__sG17SI,1800
|
|
468
|
+
mistralai/models/validationerror.py,sha256=DouDBJmBhbW4KPsF5rZEyBdnB_adC-l32kuHC0bvO2I,526
|
|
469
|
+
mistralai/models/wandbintegration.py,sha256=sNp1Irt9Su4_-kFqG4A6BjtUOJC2kiWFCA-jetpNbHg,2160
|
|
470
|
+
mistralai/models/wandbintegrationout.py,sha256=odiXJWd1pcgoIlnlQ3eldOL6XHSkJny2iOKyGEMfYNQ,2118
|
|
471
|
+
mistralai/models/websearchpremiumtool.py,sha256=iRGIUv5BHW77kW0RVOP0zKUcLLRGEKSazng7On-H5L8,503
|
|
472
|
+
mistralai/models/websearchtool.py,sha256=8RDQTjDc7rz89PvRqu0CujrR41L_XOY9E2ttlvRwTAM,452
|
|
473
|
+
mistralai/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
474
|
+
mistralai/types/basemodel.py,sha256=MULDVywSVxR0lo8h5wMnXnkBFXLK5DXmBKD1eXAVKgE,2879
|
|
475
|
+
mistralai/utils/__init__.py,sha256=rIeddnHALPXhBP408MS8XDH7kO53V3kiXv25yTOv2UY,5765
|
|
476
|
+
mistralai/utils/annotations.py,sha256=FvfvVTUj8TUclm4HbGgY5yi2Ap7EzGmu2UPFU4FwC1w,2755
|
|
477
|
+
mistralai/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
478
|
+
mistralai/utils/enums.py,sha256=wAgjjw7USk6IRpN2UJE5Sl8rfmEFiRwyrwMhhznnDIc,5147
|
|
479
|
+
mistralai/utils/eventstreaming.py,sha256=SgFqMcUOYKlrTQ4gAp_dNcKLvDXukeiEMNU3DP8mXk8,6692
|
|
480
|
+
mistralai/utils/forms.py,sha256=HzltKnYH5-ULoEz8JYfIUcw13I9dMZjw-1lQKNkH5fw,7178
|
|
481
|
+
mistralai/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
|
|
482
|
+
mistralai/utils/logger.py,sha256=TOF0Mqsua4GlsDhmrZz9hgMRvwd9zK7ytuqly3Vevxo,675
|
|
483
|
+
mistralai/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
|
|
484
|
+
mistralai/utils/queryparams.py,sha256=dxtFQDJ8dlbm_hh_fhdFC1qMWOOHR2MszNycKmME8bQ,6326
|
|
485
|
+
mistralai/utils/requestbodies.py,sha256=7bi6slrGKAbmfg4BoOUjSVGrbg9NvIFvCKUEgjwyJEw,2108
|
|
486
|
+
mistralai/utils/retries.py,sha256=stPJEFtmK8gOM6aT0DpEJp9Z39oXX1-8I69jpa2n3Ww,8130
|
|
487
|
+
mistralai/utils/security.py,sha256=vWlpkikOnGN_HRRhJ7Pb8ywVAjiM3d3ey3oTWtM6jTU,6008
|
|
488
|
+
mistralai/utils/serializers.py,sha256=ueUga5yv_08r10eQiaVIk0o726j0TRno8603jUksasA,5585
|
|
489
|
+
mistralai/utils/unmarshal_json_response.py,sha256=KKRr5Hf_1_dOE04-aMpmR1Nr88WURbKalfoqoAyMR4A,874
|
|
490
|
+
mistralai/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
491
|
+
mistralai/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
492
|
+
mistralai-1.11.1.dist-info/METADATA,sha256=qT3N_FXx5Jy4DaPXv7P01r2OqI7YQYfq059FUyqzNSw,33108
|
|
493
|
+
mistralai-1.11.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
494
|
+
mistralai-1.11.1.dist-info/licenses/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
|
|
495
|
+
mistralai-1.11.1.dist-info/RECORD,,
|
mistralai_azure/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "mistralai_azure"
|
|
6
|
-
__version__: str = "1.
|
|
6
|
+
__version__: str = "1.8.1"
|
|
7
7
|
__openapi_doc_version__: str = "1.0.0"
|
|
8
|
-
__gen_version__: str = "2.
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 1.
|
|
8
|
+
__gen_version__: str = "2.794.1"
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 1.8.1 2.794.1 1.0.0 mistralai_azure"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
mistralai_azure/basesdk.py
CHANGED
|
@@ -15,9 +15,19 @@ from urllib.parse import parse_qs, urlparse
|
|
|
15
15
|
|
|
16
16
|
class BaseSDK:
|
|
17
17
|
sdk_configuration: SDKConfiguration
|
|
18
|
+
parent_ref: Optional[object] = None
|
|
19
|
+
"""
|
|
20
|
+
Reference to the root SDK instance, if any. This will prevent it from
|
|
21
|
+
being garbage collected while there are active streams.
|
|
22
|
+
"""
|
|
18
23
|
|
|
19
|
-
def __init__(
|
|
24
|
+
def __init__(
|
|
25
|
+
self,
|
|
26
|
+
sdk_config: SDKConfiguration,
|
|
27
|
+
parent_ref: Optional[object] = None,
|
|
28
|
+
) -> None:
|
|
20
29
|
self.sdk_configuration = sdk_config
|
|
30
|
+
self.parent_ref = parent_ref
|
|
21
31
|
|
|
22
32
|
def _get_url(self, base_url, url_variables):
|
|
23
33
|
sdk_url, sdk_variables = self.sdk_configuration.get_server_details()
|
|
@@ -50,6 +60,7 @@ class BaseSDK:
|
|
|
50
60
|
] = None,
|
|
51
61
|
url_override: Optional[str] = None,
|
|
52
62
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
63
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
53
64
|
) -> httpx.Request:
|
|
54
65
|
client = self.sdk_configuration.async_client
|
|
55
66
|
return self._build_request_with_client(
|
|
@@ -70,6 +81,7 @@ class BaseSDK:
|
|
|
70
81
|
get_serialized_body,
|
|
71
82
|
url_override,
|
|
72
83
|
http_headers,
|
|
84
|
+
allow_empty_value,
|
|
73
85
|
)
|
|
74
86
|
|
|
75
87
|
def _build_request(
|
|
@@ -92,6 +104,7 @@ class BaseSDK:
|
|
|
92
104
|
] = None,
|
|
93
105
|
url_override: Optional[str] = None,
|
|
94
106
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
107
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
95
108
|
) -> httpx.Request:
|
|
96
109
|
client = self.sdk_configuration.client
|
|
97
110
|
return self._build_request_with_client(
|
|
@@ -112,6 +125,7 @@ class BaseSDK:
|
|
|
112
125
|
get_serialized_body,
|
|
113
126
|
url_override,
|
|
114
127
|
http_headers,
|
|
128
|
+
allow_empty_value,
|
|
115
129
|
)
|
|
116
130
|
|
|
117
131
|
def _build_request_with_client(
|
|
@@ -135,6 +149,7 @@ class BaseSDK:
|
|
|
135
149
|
] = None,
|
|
136
150
|
url_override: Optional[str] = None,
|
|
137
151
|
http_headers: Optional[Mapping[str, str]] = None,
|
|
152
|
+
allow_empty_value: Optional[List[str]] = None,
|
|
138
153
|
) -> httpx.Request:
|
|
139
154
|
query_params = {}
|
|
140
155
|
|
|
@@ -150,6 +165,7 @@ class BaseSDK:
|
|
|
150
165
|
query_params = utils.get_query_params(
|
|
151
166
|
request if request_has_query_params else None,
|
|
152
167
|
_globals if request_has_query_params else None,
|
|
168
|
+
allow_empty_value,
|
|
153
169
|
)
|
|
154
170
|
else:
|
|
155
171
|
# Pick up the query parameter from the override so they can be
|
|
@@ -244,7 +260,7 @@ class BaseSDK:
|
|
|
244
260
|
|
|
245
261
|
if http_res is None:
|
|
246
262
|
logger.debug("Raising no response SDK error")
|
|
247
|
-
raise models.
|
|
263
|
+
raise models.NoResponseError("No response received")
|
|
248
264
|
|
|
249
265
|
logger.debug(
|
|
250
266
|
"Response:\nStatus Code: %s\nURL: %s\nHeaders: %s\nBody: %s",
|
|
@@ -265,7 +281,7 @@ class BaseSDK:
|
|
|
265
281
|
http_res = result
|
|
266
282
|
else:
|
|
267
283
|
logger.debug("Raising unexpected SDK error")
|
|
268
|
-
raise models.SDKError("Unexpected error occurred")
|
|
284
|
+
raise models.SDKError("Unexpected error occurred", http_res)
|
|
269
285
|
|
|
270
286
|
return http_res
|
|
271
287
|
|
|
@@ -316,7 +332,7 @@ class BaseSDK:
|
|
|
316
332
|
|
|
317
333
|
if http_res is None:
|
|
318
334
|
logger.debug("Raising no response SDK error")
|
|
319
|
-
raise models.
|
|
335
|
+
raise models.NoResponseError("No response received")
|
|
320
336
|
|
|
321
337
|
logger.debug(
|
|
322
338
|
"Response:\nStatus Code: %s\nURL: %s\nHeaders: %s\nBody: %s",
|
|
@@ -337,7 +353,7 @@ class BaseSDK:
|
|
|
337
353
|
http_res = result
|
|
338
354
|
else:
|
|
339
355
|
logger.debug("Raising unexpected SDK error")
|
|
340
|
-
raise models.SDKError("Unexpected error occurred")
|
|
356
|
+
raise models.SDKError("Unexpected error occurred", http_res)
|
|
341
357
|
|
|
342
358
|
return http_res
|
|
343
359
|
|