mistralai 1.0.3__py3-none-any.whl → 1.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (230) hide show
  1. mistralai/__init__.py +4 -0
  2. mistralai/_hooks/sdkhooks.py +23 -4
  3. mistralai/_hooks/types.py +27 -9
  4. mistralai/_version.py +12 -0
  5. mistralai/agents.py +334 -164
  6. mistralai/basesdk.py +90 -5
  7. mistralai/batch.py +17 -0
  8. mistralai/chat.py +316 -166
  9. mistralai/classifiers.py +396 -0
  10. mistralai/embeddings.py +79 -55
  11. mistralai/files.py +487 -194
  12. mistralai/fim.py +206 -132
  13. mistralai/fine_tuning.py +3 -2
  14. mistralai/jobs.py +392 -263
  15. mistralai/mistral_jobs.py +733 -0
  16. mistralai/models/__init__.py +593 -50
  17. mistralai/models/agentscompletionrequest.py +70 -17
  18. mistralai/models/agentscompletionstreamrequest.py +72 -17
  19. mistralai/models/apiendpoint.py +9 -0
  20. mistralai/models/archiveftmodelout.py +15 -5
  21. mistralai/models/assistantmessage.py +22 -10
  22. mistralai/models/{modelcard.py → basemodelcard.py} +53 -14
  23. mistralai/models/batcherror.py +17 -0
  24. mistralai/models/batchjobin.py +58 -0
  25. mistralai/models/batchjobout.py +117 -0
  26. mistralai/models/batchjobsout.py +30 -0
  27. mistralai/models/batchjobstatus.py +15 -0
  28. mistralai/models/chatclassificationrequest.py +104 -0
  29. mistralai/models/chatcompletionchoice.py +13 -6
  30. mistralai/models/chatcompletionrequest.py +86 -21
  31. mistralai/models/chatcompletionresponse.py +8 -4
  32. mistralai/models/chatcompletionstreamrequest.py +88 -21
  33. mistralai/models/checkpointout.py +4 -3
  34. mistralai/models/classificationobject.py +21 -0
  35. mistralai/models/classificationrequest.py +59 -0
  36. mistralai/models/classificationresponse.py +21 -0
  37. mistralai/models/completionchunk.py +12 -5
  38. mistralai/models/completionevent.py +2 -3
  39. mistralai/models/completionresponsestreamchoice.py +22 -8
  40. mistralai/models/contentchunk.py +13 -10
  41. mistralai/models/delete_model_v1_models_model_id_deleteop.py +5 -5
  42. mistralai/models/deletefileout.py +4 -3
  43. mistralai/models/deletemodelout.py +5 -4
  44. mistralai/models/deltamessage.py +23 -11
  45. mistralai/models/detailedjobout.py +70 -12
  46. mistralai/models/embeddingrequest.py +14 -9
  47. mistralai/models/embeddingresponse.py +7 -3
  48. mistralai/models/embeddingresponsedata.py +5 -4
  49. mistralai/models/eventout.py +11 -6
  50. mistralai/models/filepurpose.py +8 -0
  51. mistralai/models/files_api_routes_delete_fileop.py +5 -5
  52. mistralai/models/files_api_routes_download_fileop.py +16 -0
  53. mistralai/models/files_api_routes_list_filesop.py +96 -0
  54. mistralai/models/files_api_routes_retrieve_fileop.py +5 -5
  55. mistralai/models/files_api_routes_upload_fileop.py +33 -14
  56. mistralai/models/fileschema.py +22 -15
  57. mistralai/models/fimcompletionrequest.py +44 -16
  58. mistralai/models/fimcompletionresponse.py +8 -4
  59. mistralai/models/fimcompletionstreamrequest.py +44 -16
  60. mistralai/models/finetuneablemodel.py +7 -1
  61. mistralai/models/ftmodelcapabilitiesout.py +6 -4
  62. mistralai/models/ftmodelcard.py +121 -0
  63. mistralai/models/ftmodelout.py +39 -9
  64. mistralai/models/function.py +5 -4
  65. mistralai/models/functioncall.py +4 -3
  66. mistralai/models/functionname.py +17 -0
  67. mistralai/models/githubrepositoryin.py +24 -7
  68. mistralai/models/githubrepositoryout.py +24 -7
  69. mistralai/models/httpvalidationerror.py +1 -3
  70. mistralai/models/imageurl.py +47 -0
  71. mistralai/models/imageurlchunk.py +38 -0
  72. mistralai/models/jobin.py +24 -7
  73. mistralai/models/jobmetadataout.py +32 -8
  74. mistralai/models/jobout.py +65 -12
  75. mistralai/models/jobs_api_routes_batch_cancel_batch_jobop.py +16 -0
  76. mistralai/models/jobs_api_routes_batch_get_batch_jobop.py +16 -0
  77. mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py +95 -0
  78. mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py +5 -5
  79. mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py +5 -5
  80. mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py +3 -2
  81. mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py +5 -5
  82. mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +85 -18
  83. mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py +5 -5
  84. mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py +5 -5
  85. mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py +10 -6
  86. mistralai/models/jobsout.py +13 -5
  87. mistralai/models/legacyjobmetadataout.py +55 -9
  88. mistralai/models/listfilesout.py +7 -3
  89. mistralai/models/metricout.py +12 -8
  90. mistralai/models/modelcapabilities.py +9 -4
  91. mistralai/models/modellist.py +21 -7
  92. mistralai/models/responseformat.py +7 -8
  93. mistralai/models/responseformats.py +8 -0
  94. mistralai/models/retrieve_model_v1_models_model_id_getop.py +25 -6
  95. mistralai/models/retrievefileout.py +25 -15
  96. mistralai/models/sampletype.py +6 -2
  97. mistralai/models/security.py +14 -5
  98. mistralai/models/source.py +3 -2
  99. mistralai/models/systemmessage.py +10 -9
  100. mistralai/models/textchunk.py +14 -5
  101. mistralai/models/tool.py +10 -9
  102. mistralai/models/toolcall.py +10 -8
  103. mistralai/models/toolchoice.py +29 -0
  104. mistralai/models/toolchoiceenum.py +7 -0
  105. mistralai/models/toolmessage.py +13 -6
  106. mistralai/models/tooltypes.py +8 -0
  107. mistralai/models/trainingfile.py +4 -4
  108. mistralai/models/trainingparameters.py +34 -8
  109. mistralai/models/trainingparametersin.py +36 -10
  110. mistralai/models/unarchiveftmodelout.py +15 -5
  111. mistralai/models/updateftmodelin.py +9 -6
  112. mistralai/models/uploadfileout.py +22 -15
  113. mistralai/models/usageinfo.py +4 -3
  114. mistralai/models/usermessage.py +42 -10
  115. mistralai/models/validationerror.py +5 -3
  116. mistralai/models/wandbintegration.py +23 -7
  117. mistralai/models/wandbintegrationout.py +23 -8
  118. mistralai/models_.py +416 -294
  119. mistralai/sdk.py +31 -19
  120. mistralai/sdkconfiguration.py +9 -11
  121. mistralai/utils/__init__.py +14 -1
  122. mistralai/utils/annotations.py +13 -2
  123. mistralai/utils/logger.py +4 -1
  124. mistralai/utils/retries.py +2 -1
  125. mistralai/utils/security.py +13 -6
  126. mistralai/utils/serializers.py +25 -0
  127. {mistralai-1.0.3.dist-info → mistralai-1.2.0.dist-info}/METADATA +171 -66
  128. mistralai-1.2.0.dist-info/RECORD +276 -0
  129. {mistralai-1.0.3.dist-info → mistralai-1.2.0.dist-info}/WHEEL +1 -1
  130. mistralai_azure/__init__.py +4 -0
  131. mistralai_azure/_hooks/sdkhooks.py +23 -4
  132. mistralai_azure/_hooks/types.py +27 -9
  133. mistralai_azure/_version.py +12 -0
  134. mistralai_azure/basesdk.py +91 -6
  135. mistralai_azure/chat.py +308 -166
  136. mistralai_azure/models/__init__.py +164 -16
  137. mistralai_azure/models/assistantmessage.py +29 -11
  138. mistralai_azure/models/chatcompletionchoice.py +15 -6
  139. mistralai_azure/models/chatcompletionrequest.py +94 -22
  140. mistralai_azure/models/chatcompletionresponse.py +8 -4
  141. mistralai_azure/models/chatcompletionstreamrequest.py +96 -22
  142. mistralai_azure/models/completionchunk.py +12 -5
  143. mistralai_azure/models/completionevent.py +2 -3
  144. mistralai_azure/models/completionresponsestreamchoice.py +19 -8
  145. mistralai_azure/models/contentchunk.py +4 -11
  146. mistralai_azure/models/deltamessage.py +30 -12
  147. mistralai_azure/models/function.py +5 -4
  148. mistralai_azure/models/functioncall.py +4 -3
  149. mistralai_azure/models/functionname.py +17 -0
  150. mistralai_azure/models/httpvalidationerror.py +1 -3
  151. mistralai_azure/models/responseformat.py +7 -8
  152. mistralai_azure/models/responseformats.py +8 -0
  153. mistralai_azure/models/security.py +13 -5
  154. mistralai_azure/models/systemmessage.py +10 -9
  155. mistralai_azure/models/textchunk.py +14 -5
  156. mistralai_azure/models/tool.py +10 -9
  157. mistralai_azure/models/toolcall.py +10 -8
  158. mistralai_azure/models/toolchoice.py +29 -0
  159. mistralai_azure/models/toolchoiceenum.py +7 -0
  160. mistralai_azure/models/toolmessage.py +20 -7
  161. mistralai_azure/models/tooltypes.py +8 -0
  162. mistralai_azure/models/usageinfo.py +4 -3
  163. mistralai_azure/models/usermessage.py +42 -10
  164. mistralai_azure/models/validationerror.py +5 -3
  165. mistralai_azure/sdkconfiguration.py +9 -11
  166. mistralai_azure/utils/__init__.py +16 -3
  167. mistralai_azure/utils/annotations.py +13 -2
  168. mistralai_azure/utils/forms.py +10 -9
  169. mistralai_azure/utils/headers.py +8 -8
  170. mistralai_azure/utils/logger.py +6 -0
  171. mistralai_azure/utils/queryparams.py +16 -14
  172. mistralai_azure/utils/retries.py +2 -1
  173. mistralai_azure/utils/security.py +12 -6
  174. mistralai_azure/utils/serializers.py +42 -8
  175. mistralai_azure/utils/url.py +13 -8
  176. mistralai_azure/utils/values.py +6 -0
  177. mistralai_gcp/__init__.py +4 -0
  178. mistralai_gcp/_hooks/sdkhooks.py +23 -4
  179. mistralai_gcp/_hooks/types.py +27 -9
  180. mistralai_gcp/_version.py +12 -0
  181. mistralai_gcp/basesdk.py +91 -6
  182. mistralai_gcp/chat.py +308 -166
  183. mistralai_gcp/fim.py +198 -132
  184. mistralai_gcp/models/__init__.py +186 -18
  185. mistralai_gcp/models/assistantmessage.py +29 -11
  186. mistralai_gcp/models/chatcompletionchoice.py +15 -6
  187. mistralai_gcp/models/chatcompletionrequest.py +91 -22
  188. mistralai_gcp/models/chatcompletionresponse.py +8 -4
  189. mistralai_gcp/models/chatcompletionstreamrequest.py +93 -22
  190. mistralai_gcp/models/completionchunk.py +12 -5
  191. mistralai_gcp/models/completionevent.py +2 -3
  192. mistralai_gcp/models/completionresponsestreamchoice.py +19 -8
  193. mistralai_gcp/models/contentchunk.py +4 -11
  194. mistralai_gcp/models/deltamessage.py +30 -12
  195. mistralai_gcp/models/fimcompletionrequest.py +51 -17
  196. mistralai_gcp/models/fimcompletionresponse.py +8 -4
  197. mistralai_gcp/models/fimcompletionstreamrequest.py +51 -17
  198. mistralai_gcp/models/function.py +5 -4
  199. mistralai_gcp/models/functioncall.py +4 -3
  200. mistralai_gcp/models/functionname.py +17 -0
  201. mistralai_gcp/models/httpvalidationerror.py +1 -3
  202. mistralai_gcp/models/responseformat.py +7 -8
  203. mistralai_gcp/models/responseformats.py +8 -0
  204. mistralai_gcp/models/security.py +13 -5
  205. mistralai_gcp/models/systemmessage.py +10 -9
  206. mistralai_gcp/models/textchunk.py +14 -5
  207. mistralai_gcp/models/tool.py +10 -9
  208. mistralai_gcp/models/toolcall.py +10 -8
  209. mistralai_gcp/models/toolchoice.py +29 -0
  210. mistralai_gcp/models/toolchoiceenum.py +7 -0
  211. mistralai_gcp/models/toolmessage.py +20 -7
  212. mistralai_gcp/models/tooltypes.py +8 -0
  213. mistralai_gcp/models/usageinfo.py +4 -3
  214. mistralai_gcp/models/usermessage.py +42 -10
  215. mistralai_gcp/models/validationerror.py +5 -3
  216. mistralai_gcp/sdk.py +6 -7
  217. mistralai_gcp/sdkconfiguration.py +9 -11
  218. mistralai_gcp/utils/__init__.py +16 -3
  219. mistralai_gcp/utils/annotations.py +13 -2
  220. mistralai_gcp/utils/forms.py +10 -9
  221. mistralai_gcp/utils/headers.py +8 -8
  222. mistralai_gcp/utils/logger.py +6 -0
  223. mistralai_gcp/utils/queryparams.py +16 -14
  224. mistralai_gcp/utils/retries.py +2 -1
  225. mistralai_gcp/utils/security.py +12 -6
  226. mistralai_gcp/utils/serializers.py +42 -8
  227. mistralai_gcp/utils/url.py +13 -8
  228. mistralai_gcp/utils/values.py +6 -0
  229. mistralai-1.0.3.dist-info/RECORD +0 -236
  230. {mistralai-1.0.3.dist-info → mistralai-1.2.0.dist-info}/LICENSE +0 -0
@@ -10,6 +10,8 @@ from httpx import Response
10
10
  from pydantic import BaseModel
11
11
  from pydantic.fields import FieldInfo
12
12
 
13
+ from ..types.basemodel import Unset
14
+
13
15
  from .serializers import marshal_json
14
16
 
15
17
  from .metadata import ParamMetadata, find_field_metadata
@@ -126,3 +128,7 @@ def _get_serialized_params(
126
128
  params[field_name] = marshal_json(obj, typ)
127
129
 
128
130
  return params
131
+
132
+
133
+ def _is_set(value: Any) -> bool:
134
+ return value is not None and not isinstance(value, Unset)
@@ -1,236 +0,0 @@
1
- mistralai_azure/__init__.py,sha256=GiuvHuZHfHOt3Gy9V7IFS9rncGA536cO4qI9WhouYfY,146
2
- mistralai_azure/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
3
- mistralai_azure/_hooks/custom_user_agent.py,sha256=1VAY7_oknRQGL8QNO0uCRHg6r7XYlssOMTj3gzyIVyk,538
4
- mistralai_azure/_hooks/registration.py,sha256=5BN-U92pwP5kUaN7EOso2vWrwZlLvRcU5Coccibqp20,741
5
- mistralai_azure/_hooks/sdkhooks.py,sha256=tHpz-Hco6up3lnQRDRq8OsMd5FEFjYY9MG4oefXKtdc,2460
6
- mistralai_azure/_hooks/types.py,sha256=mJZS5ItPpWpgWwcNOx4oLQwLelqxEw_zP5yw10FeQAw,2410
7
- mistralai_azure/basesdk.py,sha256=GSAnDHO8lUXfqmDHhcEcbLgBGauVUqzcQcuPsSXzFFE,9043
8
- mistralai_azure/chat.py,sha256=kmLoTzYaaa1iaILhjz3WZmY0jgyBR68NW_YP9c-4Zdw,25897
9
- mistralai_azure/httpclient.py,sha256=S_ItzEchFX-znIdHD6i5-a91H0Dn5QxpT0KhucdHBbI,2595
10
- mistralai_azure/models/__init__.py,sha256=0Lsjv_5jgWT2bSC-3HxkUjFMKx8yXihH_CLqXsKDRSI,3832
11
- mistralai_azure/models/assistantmessage.py,sha256=IC1-M2Xx8G7dRM7JbJnf4icadOiSJq3-lmJufpfXdcY,2186
12
- mistralai_azure/models/chatcompletionchoice.py,sha256=P7-UcLPurgRZ0kN539DuSyaUNoVCQN5wbumR0I9hJ94,668
13
- mistralai_azure/models/chatcompletionrequest.py,sha256=G89trrb43afkuuhPqucxYyzPCBIkHZjcSQkueUvleMQ,7016
14
- mistralai_azure/models/chatcompletionresponse.py,sha256=x4C878hm7VmzR7AY7cHqXCOdmAvH34E82E3OuxujT6k,802
15
- mistralai_azure/models/chatcompletionstreamrequest.py,sha256=jA7Yvp7ssXo866awFWcD2QAw5NbXuVYdTGb3oPBjqSs,6128
16
- mistralai_azure/models/completionchunk.py,sha256=vE4iSLdX2DpDqYCSJctRgIKdau_inSJu6o7DC0exs4Q,868
17
- mistralai_azure/models/completionevent.py,sha256=LKbNJfEXbtl-e68h8H0YC3dtLbBWV_6rsOCTMbQHkYg,403
18
- mistralai_azure/models/completionresponsestreamchoice.py,sha256=qLiyoqhRRc2V91SG5DQqzDc_UCrGrbv88VXWuavUP_o,1498
19
- mistralai_azure/models/contentchunk.py,sha256=vFt7cRYpGkzxsiSpj1MY3letwp2w8GLLu8Q8dNfewMQ,462
20
- mistralai_azure/models/deltamessage.py,sha256=1eIPdqxJIt9QsMfbvB151uySBeljzmiadhfwqtoy8dk,1588
21
- mistralai_azure/models/function.py,sha256=RclkdSPCi-Vl5TRlYatxnxsjUzMRLDRxnE5Vzs_KEGs,480
22
- mistralai_azure/models/functioncall.py,sha256=ZUUTVpgavjkDq4Zm1zTpJy5I-LzW0ELyKiNjAMHR9-o,461
23
- mistralai_azure/models/httpvalidationerror.py,sha256=RLgOLt2Jk3dMdvLoEdRD7w-cAPZznS7J-QXgFAvV2ns,649
24
- mistralai_azure/models/responseformat.py,sha256=NK6c75wQKwFS1nvzWgVCRpge6Fk5bMLVJZBNE-8x6F0,766
25
- mistralai_azure/models/sdkerror.py,sha256=kd75e3JYF2TXNgRZopcV-oGdBWoBZqRcvrwqn2fsFYs,528
26
- mistralai_azure/models/security.py,sha256=hq1l5hcumpksUyXKzxhKKFCUq5nxfAG8X-6fTLDUGrA,530
27
- mistralai_azure/models/systemmessage.py,sha256=3OdHJj0bD-bfRLIIJtUb0fCkAZ2YChDm17LTrWWx8JE,648
28
- mistralai_azure/models/textchunk.py,sha256=RQ6S1m-jy1jYfwyZ1ClfvdLNrdgf8gf145HfinlCgGI,456
29
- mistralai_azure/models/tool.py,sha256=NCIN0C5Ogh8Oo7V3YYpBz3YHGL61Nmjzu3BRy2GBLHs,760
30
- mistralai_azure/models/toolcall.py,sha256=AxnDwkPc8yUMEvZrxT_WLEYY8p4uHjydsz9bUz7AUI0,832
31
- mistralai_azure/models/toolmessage.py,sha256=HUv8QRiiVYBE_oGOkkX8po22QFve0HrzkHxvbQXHY8o,1599
32
- mistralai_azure/models/usageinfo.py,sha256=CZyJp70P0L1c6joHOk939ASLfTTYw8UOloaRax2NcKs,403
33
- mistralai_azure/models/usermessage.py,sha256=UY8Wju52_4NuLANzkvaK7Z1GykYYwAidRGLAx2kd0eA,702
34
- mistralai_azure/models/validationerror.py,sha256=HFNnkyfSo5P1adxVF6Jmh1kGSxAnu3PRZNiBMuQb20M,442
35
- mistralai_azure/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
36
- mistralai_azure/sdk.py,sha256=ZVPE9lFzswEMlHw_kiG_j5vzoJ5BwEYlVLCYGmYDjpA,3936
37
- mistralai_azure/sdkconfiguration.py,sha256=9QdFclpx8-f6qq0MaDCwn_tqbxjviKBPf4pNVWKm9Pw,1711
38
- mistralai_azure/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
39
- mistralai_azure/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
40
- mistralai_azure/utils/__init__.py,sha256=O_jurPNtDogMYZx1-k5L5Qm1zinMhqb2tXg79nLvKAw,2132
41
- mistralai_azure/utils/annotations.py,sha256=475O8UTbQNQiawh8ZoJi_NDPKqhgW7vzy046ffMU8jI,655
42
- mistralai_azure/utils/enums.py,sha256=VzjeslROrAr2luZOTJlvu-4UlxgTaGOKlRYtJJ7IfyY,1006
43
- mistralai_azure/utils/eventstreaming.py,sha256=klSQ0FURc-hqYz1si1EG92VCFhfaxyBo_xP2mX3BBWo,4917
44
- mistralai_azure/utils/forms.py,sha256=JVg7suFdwOZ1T2oE_HD3kDs_BSbA3vegcNy52WdVl9I,6246
45
- mistralai_azure/utils/headers.py,sha256=-p4ps3CqUV9jhM3T_VWvWDaIi1z58fqttOJA5xEddSY,3627
46
- mistralai_azure/utils/logger.py,sha256=cUIh-hpJBvZp_gYL2b2oRg-d_H6es0fgKFRHqKaIrfA,456
47
- mistralai_azure/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
48
- mistralai_azure/utils/queryparams.py,sha256=vlVjKtLvtgtojqFNsaTfewDCriBfMurYKpHSHnyrt8o,5856
49
- mistralai_azure/utils/requestbodies.py,sha256=PXmttCHm1zWGmwbrTyXYXxbeULavRWqxfD54Jx2CdJE,2084
50
- mistralai_azure/utils/retries.py,sha256=Mg6S9TaL3AF6DS7LToKwNSpCXBjkdyhRc4YwVeTnSaA,6324
51
- mistralai_azure/utils/security.py,sha256=t9x-rRwWYsS15lGcnGu1sQhos3MTyKwI1ewGuzu8aEc,5326
52
- mistralai_azure/utils/serializers.py,sha256=YRBVvAQ9Ywl2N2DanYlEKc2tKys2xcsiUY_lfG0lG10,4132
53
- mistralai_azure/utils/url.py,sha256=Bvu71MYt9NJFYOmPcWVylrdUf3QtytbjqllNkWTCRHE,5195
54
- mistralai_azure/utils/values.py,sha256=KauGimRv4_lfIfijquDLWd1v4HbqnQiG8Rn61Stdxbg,3294
55
- mistralai_gcp/__init__.py,sha256=GiuvHuZHfHOt3Gy9V7IFS9rncGA536cO4qI9WhouYfY,146
56
- mistralai_gcp/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
57
- mistralai_gcp/_hooks/custom_user_agent.py,sha256=1VAY7_oknRQGL8QNO0uCRHg6r7XYlssOMTj3gzyIVyk,538
58
- mistralai_gcp/_hooks/registration.py,sha256=5BN-U92pwP5kUaN7EOso2vWrwZlLvRcU5Coccibqp20,741
59
- mistralai_gcp/_hooks/sdkhooks.py,sha256=ep2bHxkj-EOe79ZpDji0CRtat1f1Rpra6DUUv9AOz38,2458
60
- mistralai_gcp/_hooks/types.py,sha256=dZ0vmT5UJE4A_nNOTJFT4I8u3MYJl1cuE8gSeETJhOk,2408
61
- mistralai_gcp/basesdk.py,sha256=LpFulSdv3xVC3VaZW7G03W2cFV6QEXVQfWEimwLNvc0,9037
62
- mistralai_gcp/chat.py,sha256=G9OlwW1IzScczNFWSgoRLC2mQUcRhharGDYNmRuRCLA,25813
63
- mistralai_gcp/fim.py,sha256=ASHlsFp4LsKmzxfW4Dx6RWZo8nlla4BLMbwjVy1K5ss,23609
64
- mistralai_gcp/httpclient.py,sha256=S_ItzEchFX-znIdHD6i5-a91H0Dn5QxpT0KhucdHBbI,2595
65
- mistralai_gcp/models/__init__.py,sha256=_CvvHmznZcHsbxzVrxcOj3Wh9EQj43Jc5W4O3eAF2Jk,4572
66
- mistralai_gcp/models/assistantmessage.py,sha256=DIntIcFq_cw7zvRgdv1ff9ZW_pT10eOheOD7YBix80E,2184
67
- mistralai_gcp/models/chatcompletionchoice.py,sha256=vXjVoPEQ_O83osXpprT7bwrdfOck1RX3ZcKqbhp3Has,666
68
- mistralai_gcp/models/chatcompletionrequest.py,sha256=GU6RoHe-P0DrGVfv5SH8FcvYCq_EuVW4uBUYZ2sVU9U,7088
69
- mistralai_gcp/models/chatcompletionresponse.py,sha256=lljI1r6VwGsPvCI0zR85UtACyRY9PwQT0TznLXNgSP8,800
70
- mistralai_gcp/models/chatcompletionstreamrequest.py,sha256=ME0styuDaQQYlXHssviO6fmKF-sD_DkgzVmOEJYcOwQ,6200
71
- mistralai_gcp/models/completionchunk.py,sha256=6l_sWiZR20mf2hAYD410xk2PnTkNM2uI_eGoxEY4QKQ,866
72
- mistralai_gcp/models/completionevent.py,sha256=lfH9lU5AZSUFdJhYtZIfsxD93SuyBRiqvoygTmQ-8eU,401
73
- mistralai_gcp/models/completionresponsestreamchoice.py,sha256=NAcFvBMP2GIzZjL5A29e8XbW8ioDbt7Xig-stmXg4Rk,1496
74
- mistralai_gcp/models/contentchunk.py,sha256=ZnGbO7Bh8-FVKw4I-MLFBcs-xEUtLIj7a03Y0zoBTr8,460
75
- mistralai_gcp/models/deltamessage.py,sha256=mefBr5_7G1nFbwzFzCl-UwUss3b4aQvDO_CNmtL42KY,1586
76
- mistralai_gcp/models/fimcompletionrequest.py,sha256=4DAHyryQLduo-sraVitm9oUNpM-pLMKmYH9fM_qzQvU,5902
77
- mistralai_gcp/models/fimcompletionresponse.py,sha256=UH6etES-gDOFQog9_VZ78HSCDVIOnpS2yagRR-tWzw0,798
78
- mistralai_gcp/models/fimcompletionstreamrequest.py,sha256=dsArBrPSOqHoIPXoos-k8FGIBnrFGvcLhgMnTj-z1DM,5269
79
- mistralai_gcp/models/function.py,sha256=J4thGl0Mpr017thKTPSFZzZhN4kh6KuBy_vXeZN-y_4,478
80
- mistralai_gcp/models/functioncall.py,sha256=4wcNa_LVHd8dzq06nD9rXLVDcWcji8JsXi29h6aHvmE,459
81
- mistralai_gcp/models/httpvalidationerror.py,sha256=4Myo8QsWdLviidnab4rvsSH5XCYFNgL-qdMNlbnIgsE,645
82
- mistralai_gcp/models/responseformat.py,sha256=VmlgNxK1GanCgkGaehmEkKPD9cahnuFGo8SEFarUtio,764
83
- mistralai_gcp/models/sdkerror.py,sha256=kd75e3JYF2TXNgRZopcV-oGdBWoBZqRcvrwqn2fsFYs,528
84
- mistralai_gcp/models/security.py,sha256=nkq31t3ybeZdQmyM3mKke4kk2n5V68Lfn3MQZtwwtWc,526
85
- mistralai_gcp/models/systemmessage.py,sha256=fZqB6zV9qujw6AcoCarKn_wLLJ5NJ8DDpKWAMA5fW4o,646
86
- mistralai_gcp/models/textchunk.py,sha256=by-at5dVgV_yjo85T9lOT1p8NbcRT6Uc9RJ9_YCiBK4,454
87
- mistralai_gcp/models/tool.py,sha256=CqsvK4lB-EDe4mQRmbwhv87mqLLGWmxCldx-_R9TppI,756
88
- mistralai_gcp/models/toolcall.py,sha256=lv4qLnfDTkfB3Gl0ZBhNwxMLhpu5_UyuLnkWv4isIcc,828
89
- mistralai_gcp/models/toolmessage.py,sha256=Eew07JE_HWiLIXinAQKRyMb8nKhAyW9wE7LShN791Qw,1597
90
- mistralai_gcp/models/usageinfo.py,sha256=kTFYFhieGnuNlqrOHUDW2fURMYHTqf9W641BM1JwNro,401
91
- mistralai_gcp/models/usermessage.py,sha256=tPRjmmTW78AYQq9R_aCGUcGpUtADT5m0C2Yvsn0sLEw,700
92
- mistralai_gcp/models/validationerror.py,sha256=a4pmlDNdXFw9zMiP0JVAYUWQKcbGBcQgWB2IjK-ODG4,440
93
- mistralai_gcp/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
94
- mistralai_gcp/sdk.py,sha256=RNrWOcxtaBoZZUvSwUmkjd5mVVtnM18j2v7QzLPePW8,6540
95
- mistralai_gcp/sdkconfiguration.py,sha256=LfztRmnUXLidnh2H3Gx2mIoHFbAbndHtP6FSLwYY-8A,1705
96
- mistralai_gcp/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
97
- mistralai_gcp/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
98
- mistralai_gcp/utils/__init__.py,sha256=O_jurPNtDogMYZx1-k5L5Qm1zinMhqb2tXg79nLvKAw,2132
99
- mistralai_gcp/utils/annotations.py,sha256=475O8UTbQNQiawh8ZoJi_NDPKqhgW7vzy046ffMU8jI,655
100
- mistralai_gcp/utils/enums.py,sha256=VzjeslROrAr2luZOTJlvu-4UlxgTaGOKlRYtJJ7IfyY,1006
101
- mistralai_gcp/utils/eventstreaming.py,sha256=klSQ0FURc-hqYz1si1EG92VCFhfaxyBo_xP2mX3BBWo,4917
102
- mistralai_gcp/utils/forms.py,sha256=JVg7suFdwOZ1T2oE_HD3kDs_BSbA3vegcNy52WdVl9I,6246
103
- mistralai_gcp/utils/headers.py,sha256=-p4ps3CqUV9jhM3T_VWvWDaIi1z58fqttOJA5xEddSY,3627
104
- mistralai_gcp/utils/logger.py,sha256=cUIh-hpJBvZp_gYL2b2oRg-d_H6es0fgKFRHqKaIrfA,456
105
- mistralai_gcp/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
106
- mistralai_gcp/utils/queryparams.py,sha256=vlVjKtLvtgtojqFNsaTfewDCriBfMurYKpHSHnyrt8o,5856
107
- mistralai_gcp/utils/requestbodies.py,sha256=PXmttCHm1zWGmwbrTyXYXxbeULavRWqxfD54Jx2CdJE,2084
108
- mistralai_gcp/utils/retries.py,sha256=Mg6S9TaL3AF6DS7LToKwNSpCXBjkdyhRc4YwVeTnSaA,6324
109
- mistralai_gcp/utils/security.py,sha256=t9x-rRwWYsS15lGcnGu1sQhos3MTyKwI1ewGuzu8aEc,5326
110
- mistralai_gcp/utils/serializers.py,sha256=YRBVvAQ9Ywl2N2DanYlEKc2tKys2xcsiUY_lfG0lG10,4132
111
- mistralai_gcp/utils/url.py,sha256=Bvu71MYt9NJFYOmPcWVylrdUf3QtytbjqllNkWTCRHE,5195
112
- mistralai_gcp/utils/values.py,sha256=KauGimRv4_lfIfijquDLWd1v4HbqnQiG8Rn61Stdxbg,3294
113
- py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
114
- mistralai/__init__.py,sha256=GiuvHuZHfHOt3Gy9V7IFS9rncGA536cO4qI9WhouYfY,146
115
- mistralai/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
116
- mistralai/_hooks/custom_user_agent.py,sha256=Q_bKWa4cqUr7nOybJLIqdR63K3jVzdeXh101nyngFaA,543
117
- mistralai/_hooks/deprecation_warning.py,sha256=eyEOf7-o9uqqNWJnufD2RXp3dYrGV4in9q76yLC1zog,921
118
- mistralai/_hooks/registration.py,sha256=ML0W-XbE4WYdJ4eGks_XxF2aLCJTaIWjQATFGzFwvyU,861
119
- mistralai/_hooks/sdkhooks.py,sha256=WCbPewN31708amCF7rTVqmQcpnxQpuG2Xdb38qXCq6A,2454
120
- mistralai/_hooks/types.py,sha256=eDaXqYBqW_D_3Tn424cNCE1frBeh139JLso0hYrQka8,2404
121
- mistralai/agents.py,sha256=V4wItSOV9oAeq3C_S37YFSirLoaa09I0laEROw0IxOw,22965
122
- mistralai/async_client.py,sha256=KUdYxIIqoD6L7vB0EGwUR6lQ0NK5iCTHjnLVR9CVcJY,355
123
- mistralai/basesdk.py,sha256=3B65XR2C6WqgC8cewEZbMQ8t0ZilkRZeS7fl1jWtlTs,9090
124
- mistralai/chat.py,sha256=viWa61aCmjG-90MGB1r5Z5_4wtcMOV7foZRk1yk2_mc,26770
125
- mistralai/client.py,sha256=hrPg-LciKMKiascF0WbRRmqQyCv1lb2yDh6j-aaKVNo,509
126
- mistralai/embeddings.py,sha256=g96-XaDcbQ8k0FrPyiEFcRisqT0y7mzmF1QGsqtOM-0,7357
127
- mistralai/files.py,sha256=VxhZulNK47p0OsWfovdeJGb_fn9CGNU-fM6WuRScDlM,24255
128
- mistralai/fim.py,sha256=qJyEH8mk1pKard_1W_L2PPqWGsc-b_2LKUL5TNx1IvA,23794
129
- mistralai/fine_tuning.py,sha256=gjgC4_IeY1lxT-_NZkmmO8QlsWOxCBxtknL9EeTAXts,484
130
- mistralai/httpclient.py,sha256=S_ItzEchFX-znIdHD6i5-a91H0Dn5QxpT0KhucdHBbI,2595
131
- mistralai/jobs.py,sha256=YL7-CNWf_J5t5PghWd8JDWYYLnFVvLuQLBxu8Marxrc,37319
132
- mistralai/models/__init__.py,sha256=QrkQNkQjbo2Y46Dj2KPSWJjMQeEnUZu82YzGJ32ekHY,14617
133
- mistralai/models/agentscompletionrequest.py,sha256=MuciJfMXAzKdRZV4FU91pvFnECDRJdJWQI9n0-nX80E,5403
134
- mistralai/models/agentscompletionstreamrequest.py,sha256=l75zSDB7bBn3RBOz75XeZ0Mbvpeg1Jwx39sF7itKbp0,4812
135
- mistralai/models/archiveftmodelout.py,sha256=zlRFK0BTdFkf1z1ubhKRW8C4naILRJWhZsN8vc2MWDA,621
136
- mistralai/models/assistantmessage.py,sha256=2gpV5zzh8HnDPOJA_JwA2Ggq-cQLFJP9v3k8AJrq_CE,2180
137
- mistralai/models/chatcompletionchoice.py,sha256=STFTDCHEB4ie1-LCeeowZYUVvKzXdpZ6SdVn5x0cmnM,602
138
- mistralai/models/chatcompletionrequest.py,sha256=MKJEn60hcfd1ZahtgW4ggR3g2i-pYu_JdPyw1ARgpHU,7081
139
- mistralai/models/chatcompletionresponse.py,sha256=qRgYtu_lGzn-0D2Q3lWHX3Y0qCZs-3S9m5XRvOE8bfg,796
140
- mistralai/models/chatcompletionstreamrequest.py,sha256=gBo7BlJ1CVNd6SJAkpIDfdnT3rPtxss9cs_9_7oJiF4,6721
141
- mistralai/models/checkpointout.py,sha256=gWrM4kwQ4ttyxFPbWHeGyG4bfiFRs17JTJluBPKdnRc,1105
142
- mistralai/models/completionchunk.py,sha256=js9omyCN6anHGecrEpJTfZwEzFstmbhjOdgIgPDSmJQ,862
143
- mistralai/models/completionevent.py,sha256=GSDcIK9lrME3bvo8fSCSIDhlx5V1xqUPGsrBoB_eDf8,397
144
- mistralai/models/completionresponsestreamchoice.py,sha256=8BN_6aM0Z-LHdK9ZN3LJvH0si-rs_kXGxDoAjSlmh3Y,1582
145
- mistralai/models/contentchunk.py,sha256=VHVp8t2Wcc1kuN3bBs-xMZIR6WCpGgDFNc_6KKU3lVI,456
146
- mistralai/models/delete_model_v1_models_model_id_deleteop.py,sha256=W7_mpqAbgSVeWjPlEfbYoRrxjkkR-43cqU2mrCtpMhE,615
147
- mistralai/models/deletefileout.py,sha256=OnzP03JES5Gyguh9S9di5VevDdDTbdTY1L0gTv9RdMQ,583
148
- mistralai/models/deletemodelout.py,sha256=9aRBZFP_IOX_v0gTP00qkrZjuMveZWnRKFp80Wx3bHk,700
149
- mistralai/models/deltamessage.py,sha256=cWDE5XmLV65nsPF0MGMfVamzJp57SEstfwuj-OkmMj4,1582
150
- mistralai/models/detailedjobout.py,sha256=wswOiEaF2kz_eUpWAhjXludcYGIsRjsk_7RT6acL7Yc,4398
151
- mistralai/models/embeddingrequest.py,sha256=LjQf-nsGkkwdPU3X9nKsGqSQSQSLHZ3WeNQhMnhgBoY,1844
152
- mistralai/models/embeddingresponse.py,sha256=3ny1ziseq-pYFkPV1IzsrEFH-tIojDYbs6oh99MjFi4,639
153
- mistralai/models/embeddingresponsedata.py,sha256=M7cCJNf6jOXW4doA4ArMz9BI-ygmoiFdT7ttGx8mwNk,541
154
- mistralai/models/eventout.py,sha256=Vrvc4ga_BE9KA93JpUaPxDuaJ3CNeW8716kWXXdilGI,1565
155
- mistralai/models/files_api_routes_delete_fileop.py,sha256=eNXQdg248zA06BGiVEyq_8roxen71jM0pNQlwxjBswc,513
156
- mistralai/models/files_api_routes_retrieve_fileop.py,sha256=rXDIMC-zRHkZb86cn9pfTEpdwAjpvuFhUeYNFRBidcU,517
157
- mistralai/models/files_api_routes_upload_fileop.py,sha256=ioTqdXAauvhO1ntQoQt59k_IF5Td4-InHleH89t5XeY,2270
158
- mistralai/models/fileschema.py,sha256=aThJTdqXWu3K11wsrPXOpeBQJlVVHcWtocen0Q4porY,2711
159
- mistralai/models/fimcompletionrequest.py,sha256=LfqU2sn7b4GZSz-HWV7xGF7Ju_rw41fwdUqZeY8cCJo,5898
160
- mistralai/models/fimcompletionresponse.py,sha256=WniZPWtPKptxmboqThX84-SL4wfTpxT0UQJbjGWSi8Q,794
161
- mistralai/models/fimcompletionstreamrequest.py,sha256=Euk_jwpsAfd5rfBW4iiY2h1Up354Zu3zfPJnw8e7mYM,5265
162
- mistralai/models/finetuneablemodel.py,sha256=EN9zh1KqgSrhVcJ0dcSMh3mBUHVdLojvMCrophjjTaM,316
163
- mistralai/models/ftmodelcapabilitiesout.py,sha256=d6fgSickqwb5_fre7hRdqWmfTJ6nZdNMpGzIjkkamkU,654
164
- mistralai/models/ftmodelout.py,sha256=kPqYEYmapBrRuiwU1IpYYwgIRn0d9HPrRM3AOt0Tysc,2192
165
- mistralai/models/function.py,sha256=RRA1DgD3HG00gR8Moe-POFAH9ccu3wqqy31_1voQ4JU,474
166
- mistralai/models/functioncall.py,sha256=Hu5rfS2sfkvvYPn-WeQ4dIlr62epjPK71rr2vzQ6G1c,455
167
- mistralai/models/githubrepositoryin.py,sha256=Mav5ixyd1qKDxocU_VlNNtd5Vq2keIPzcq4qHUQJtLc,1681
168
- mistralai/models/githubrepositoryout.py,sha256=zqbIcC_aHQVZcWYiTPoev7AIc0jBdMjbV6XhkBbOq3U,1693
169
- mistralai/models/httpvalidationerror.py,sha256=E3O9wiCji3PUjrCsh3Sr1LCx3C-kE1JZFFj9x4obMEo,637
170
- mistralai/models/jobin.py,sha256=AatPvIIyjywt1q1yFdNHTTlE7mSXU9A46_H_87wxNuA,4301
171
- mistralai/models/jobmetadataout.py,sha256=kkUxNv5b628RvYn0lZ3JrAlSRaiGfpESCub0RPk4d18,2168
172
- mistralai/models/jobout.py,sha256=onHRnO32G4r1h7_8p0d2DOWypHUaimR3B65B7s7k06Y,5650
173
- mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py,sha256=RsWO0jJaU7MNv1qepPNH36ORLvShfQQvvUG9E9syG4E,641
174
- mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py,sha256=_RrA1AI50Cp8f204cP5l7EIspn7UfFGUf2woWrGP4K0,627
175
- mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py,sha256=6QdnKjqt9XPL_dFwd4_HtWxD-7dqqeKuuGiFMDSXHcc,493
176
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py,sha256=TcfYkUuX3XycsuncG_u5PeOHcufkiVgzm_vdHBB4AiY,623
177
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=H4vXIp7auiwXewyoVKWEQrZM9qX4BQGUbypLky9HMuU,4964
178
- mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py,sha256=S53w_mTDWYJiWMlPfkqkbJboB4Of30LuT8b8yj99baY,545
179
- mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py,sha256=3nq6mRCmZzE2fnCrAXMuFuylJUE0c6zoqAiEESzjeuw,649
180
- mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py,sha256=rJqiVUxTFiwqCSZQte89uvShBrjtXO5wx_yQeT_VMT4,896
181
- mistralai/models/jobsout.py,sha256=4Yfrs60jG6CQOpBIkhnrzi1DNhu_YMvIEJuqzQae4Pk,652
182
- mistralai/models/legacyjobmetadataout.py,sha256=7KkZPOcG9ps1drnECxTAGywwnar_2e_qacKFQK7_dp0,4194
183
- mistralai/models/listfilesout.py,sha256=ynGUG0oi9boSfHVBFqlkOSkDz2QVf974hG444yF-aOY,416
184
- mistralai/models/metricout.py,sha256=FVKlaBcLe9qXUYlyZu44kC-fgCjMaV8PVb1D5nL0YJ8,1992
185
- mistralai/models/modelcapabilities.py,sha256=bGPtxjm4vnUP0BrMbMgGKAaAkMcJs1jmflPXjNQyVVs,643
186
- mistralai/models/modelcard.py,sha256=LM4anayV1SnnYJ7sy0_8a4rtd7lZAQjYUGftUivkbwc,2369
187
- mistralai/models/modellist.py,sha256=wdUWOzSQU2C0aL2fKoXez62ZFICdtHz_ViTGtT0gjjU,519
188
- mistralai/models/responseformat.py,sha256=QwA36MujDZQ_5y3jEaxZk_xA-TGnLBdBLSFRj6T-3Ww,760
189
- mistralai/models/retrieve_model_v1_models_model_id_getop.py,sha256=eG-VrMPX57egDI6b_Weu0bPSgnoyTDDEWVl6h01ThY4,617
190
- mistralai/models/retrievefileout.py,sha256=EyzDwHVT7_Fx67I7M9xBM0J_Mxd8QKSObZJxpQUN2iw,2731
191
- mistralai/models/sampletype.py,sha256=AHVeruPkMqLwaXTQVMiqrWxCv29ErNAOQenNxRaYFfc,182
192
- mistralai/models/sdkerror.py,sha256=kd75e3JYF2TXNgRZopcV-oGdBWoBZqRcvrwqn2fsFYs,528
193
- mistralai/models/security.py,sha256=RyMjZxtU-_-xoqReeS4gZ61yXpk8Bd1NTU2Xsbhb8YU,571
194
- mistralai/models/source.py,sha256=i__XC0fCs5hAyp3uHzGK-gY6jcC8lE431V8-YpzCNso,178
195
- mistralai/models/systemmessage.py,sha256=EC7sfVzkF9C0pN5hL8LZZ2z3tn9bvKi-rPXlnBzDrC4,642
196
- mistralai/models/textchunk.py,sha256=PTQeBlqG9w4PudvceZnN4oLyYfBfdiiz9cKciaq9PI8,450
197
- mistralai/models/tool.py,sha256=rCz-vBP9xpluV04TOau8qjY_twI4HJ0dkz630DlkHnI,748
198
- mistralai/models/toolcall.py,sha256=1ERaFEBQ5JOh4u53SUgx2zbUO8GdWonolPKz01ShGio,820
199
- mistralai/models/toolmessage.py,sha256=SvpHgri0kEpJbLFJ-N3ONShwQYn2ROn81JeOSitOX9I,1593
200
- mistralai/models/trainingfile.py,sha256=fqH-7Z5Ynrd0JNY9MEG1mcjxgi82snM4dMVW23Y8KBg,408
201
- mistralai/models/trainingparameters.py,sha256=RyvaHhZhLctJ7IWvrpTDODcAGt14zVQYJIxYPNavnvs,1943
202
- mistralai/models/trainingparametersin.py,sha256=oPw-f-IGYD9tUpNO4o9776a9yihwsUE7pGpiSNe59IE,4209
203
- mistralai/models/unarchiveftmodelout.py,sha256=SAsx8zPbPuKTswjJqJKmMxqbNaj-vamUCZeePPZ6RFY,630
204
- mistralai/models/updateftmodelin.py,sha256=BicrkRH-NMfatFO1eAM9BVEPAOgAhKAY5rfz7tkCcJw,1417
205
- mistralai/models/uploadfileout.py,sha256=oha8PkzjjImu65bkeHZCLPxPCtOJ7xs0Q6QB7tlZJXo,2697
206
- mistralai/models/usageinfo.py,sha256=HaINgSEQgJzJuSc31qXfktjOPuwycLOXu0PyusbKsOw,397
207
- mistralai/models/usermessage.py,sha256=1vRfJzEFsNGaFC7myNdjcL5SzkS-AoMnhWSlC1ggYcg,696
208
- mistralai/models/validationerror.py,sha256=gYLU8SsPHO06ItvXIT5pNoDf_EN3rqy7j-mba6XonEw,436
209
- mistralai/models/wandbintegration.py,sha256=Qdt2c11bGNn9I5t_oXgESwWgiuSsa8qPYo5EKnRc-Uo,2135
210
- mistralai/models/wandbintegrationout.py,sha256=d34eUKXcuFXk948yNYAuQVeEE_DZtSEEfzhaJZL9Oos,1963
211
- mistralai/models_.py,sha256=umktQr0ejwXlXMbs1wuR45qrhPx74dx-KKGRU2FejD4,37297
212
- mistralai/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
213
- mistralai/sdk.py,sha256=NVD3gj_E4QlBHQlcBrIp1ZYvttIxQeivEYTGNY2TnUk,4663
214
- mistralai/sdkconfiguration.py,sha256=riQAJDnjhq3tdTDzuZ17gjrztOCWNASnb3bluL2hZSo,1695
215
- mistralai/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
216
- mistralai/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
217
- mistralai/utils/__init__.py,sha256=9qazjFztcyuQzo_O6QbwyDrPdPPxclel_0pVmiwN93U,2201
218
- mistralai/utils/annotations.py,sha256=475O8UTbQNQiawh8ZoJi_NDPKqhgW7vzy046ffMU8jI,655
219
- mistralai/utils/enums.py,sha256=VzjeslROrAr2luZOTJlvu-4UlxgTaGOKlRYtJJ7IfyY,1006
220
- mistralai/utils/eventstreaming.py,sha256=klSQ0FURc-hqYz1si1EG92VCFhfaxyBo_xP2mX3BBWo,4917
221
- mistralai/utils/forms.py,sha256=L-y62DiD0FXnq7WIyw8BAMbdr7sZDwhZ_3YsdviBbaA,6325
222
- mistralai/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
223
- mistralai/utils/logger.py,sha256=dGAjBvOomf7xwBjmHCMZJ5abD_RSehZ_zCG6VmNpwrI,672
224
- mistralai/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
225
- mistralai/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
226
- mistralai/utils/requestbodies.py,sha256=PXmttCHm1zWGmwbrTyXYXxbeULavRWqxfD54Jx2CdJE,2084
227
- mistralai/utils/retries.py,sha256=Mg6S9TaL3AF6DS7LToKwNSpCXBjkdyhRc4YwVeTnSaA,6324
228
- mistralai/utils/security.py,sha256=fOa_NmT-LmowcgvtewR_v7LX5GMlagEIw16WbMgyN9E,5821
229
- mistralai/utils/serializers.py,sha256=FRCVu7wAf3VCss55ve62zuvdwnjDIHLQUDHc8fkGO4c,4383
230
- mistralai/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
231
- mistralai/utils/values.py,sha256=_89YXPTI_BU6SXJBzFR4pIzTCBPQW9tsOTN1jeBBIDs,3428
232
- mistralai/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
233
- mistralai-1.0.3.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
234
- mistralai-1.0.3.dist-info/METADATA,sha256=wGlK3Tcr8LpOu9B6f_mfTcBYGRUO6PuX2R_XZw_umL0,19576
235
- mistralai-1.0.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
236
- mistralai-1.0.3.dist-info/RECORD,,