mistralai 1.8.1__py3-none-any.whl → 1.9.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. mistralai/_hooks/types.py +7 -0
  2. mistralai/_version.py +3 -3
  3. mistralai/agents.py +16 -0
  4. mistralai/basesdk.py +12 -20
  5. mistralai/beta.py +1 -1
  6. mistralai/chat.py +16 -0
  7. mistralai/classifiers.py +8 -0
  8. mistralai/conversations.py +35 -15
  9. mistralai/embeddings.py +2 -0
  10. mistralai/extra/run/context.py +2 -4
  11. mistralai/files.py +12 -0
  12. mistralai/fim.py +4 -0
  13. mistralai/httpclient.py +6 -16
  14. mistralai/jobs.py +10 -0
  15. mistralai/mistral_agents.py +10 -0
  16. mistralai/mistral_jobs.py +8 -0
  17. mistralai/models/__init__.py +1357 -722
  18. mistralai/models/agent.py +1 -1
  19. mistralai/models/agentconversation.py +1 -1
  20. mistralai/models/agentcreationrequest.py +1 -1
  21. mistralai/models/agenthandoffentry.py +1 -1
  22. mistralai/models/agents_api_v1_conversations_getop.py +2 -0
  23. mistralai/models/agents_api_v1_conversations_historyop.py +2 -0
  24. mistralai/models/agents_api_v1_conversations_messagesop.py +2 -0
  25. mistralai/models/agents_api_v1_conversations_restart_streamop.py +2 -0
  26. mistralai/models/agents_api_v1_conversations_restartop.py +2 -0
  27. mistralai/models/agentscompletionrequest.py +13 -3
  28. mistralai/models/agentscompletionstreamrequest.py +13 -3
  29. mistralai/models/agentupdaterequest.py +1 -1
  30. mistralai/models/assistantmessage.py +1 -1
  31. mistralai/models/basemodelcard.py +8 -6
  32. mistralai/models/batchjobin.py +1 -1
  33. mistralai/models/batchjobout.py +1 -1
  34. mistralai/models/chatcompletionrequest.py +20 -3
  35. mistralai/models/chatcompletionstreamrequest.py +20 -3
  36. mistralai/models/classifierdetailedjobout.py +1 -1
  37. mistralai/models/classifierftmodelout.py +1 -1
  38. mistralai/models/classifierjobout.py +1 -1
  39. mistralai/models/classifiertargetin.py +1 -1
  40. mistralai/models/classifiertrainingparameters.py +1 -1
  41. mistralai/models/classifiertrainingparametersin.py +1 -1
  42. mistralai/models/completionargs.py +1 -1
  43. mistralai/models/completiondetailedjobout.py +1 -1
  44. mistralai/models/completionftmodelout.py +1 -1
  45. mistralai/models/completionjobout.py +1 -1
  46. mistralai/models/completionresponsestreamchoice.py +1 -1
  47. mistralai/models/completiontrainingparameters.py +1 -1
  48. mistralai/models/completiontrainingparametersin.py +1 -1
  49. mistralai/models/contentchunk.py +3 -0
  50. mistralai/models/conversationrequest.py +1 -1
  51. mistralai/models/conversationstreamrequest.py +1 -1
  52. mistralai/models/conversationusageinfo.py +1 -1
  53. mistralai/models/deltamessage.py +1 -1
  54. mistralai/models/documenturlchunk.py +1 -1
  55. mistralai/models/embeddingrequest.py +1 -1
  56. mistralai/models/eventout.py +1 -1
  57. mistralai/models/filechunk.py +23 -0
  58. mistralai/models/files_api_routes_list_filesop.py +1 -1
  59. mistralai/models/fileschema.py +1 -1
  60. mistralai/models/fimcompletionrequest.py +1 -1
  61. mistralai/models/fimcompletionstreamrequest.py +1 -1
  62. mistralai/models/ftmodelcard.py +9 -6
  63. mistralai/models/functioncallentry.py +1 -1
  64. mistralai/models/functionresultentry.py +1 -1
  65. mistralai/models/githubrepositoryin.py +1 -1
  66. mistralai/models/githubrepositoryout.py +1 -1
  67. mistralai/models/imageurl.py +1 -1
  68. mistralai/models/inputentries.py +21 -2
  69. mistralai/models/jobin.py +1 -1
  70. mistralai/models/jobmetadataout.py +1 -1
  71. mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py +1 -1
  72. mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +1 -1
  73. mistralai/models/jsonschema.py +1 -1
  74. mistralai/models/legacyjobmetadataout.py +1 -1
  75. mistralai/models/messageinputentry.py +4 -4
  76. mistralai/models/messageoutputentry.py +1 -1
  77. mistralai/models/messageoutputevent.py +1 -1
  78. mistralai/models/metricout.py +1 -1
  79. mistralai/models/mistralpromptmode.py +8 -0
  80. mistralai/models/modelcapabilities.py +3 -0
  81. mistralai/models/modelconversation.py +1 -1
  82. mistralai/models/ocrimageobject.py +1 -1
  83. mistralai/models/ocrpageobject.py +1 -1
  84. mistralai/models/ocrrequest.py +5 -3
  85. mistralai/models/ocrresponse.py +1 -1
  86. mistralai/models/ocrusageinfo.py +1 -1
  87. mistralai/models/responseformat.py +1 -1
  88. mistralai/models/retrievefileout.py +1 -1
  89. mistralai/models/toolexecutionentry.py +1 -1
  90. mistralai/models/toolfilechunk.py +1 -1
  91. mistralai/models/toolmessage.py +1 -1
  92. mistralai/models/toolreferencechunk.py +1 -1
  93. mistralai/models/updateftmodelin.py +1 -1
  94. mistralai/models/uploadfileout.py +1 -1
  95. mistralai/models/usermessage.py +1 -1
  96. mistralai/models/wandbintegration.py +1 -1
  97. mistralai/models/wandbintegrationout.py +1 -1
  98. mistralai/models_.py +14 -2
  99. mistralai/ocr.py +2 -0
  100. mistralai/sdk.py +68 -40
  101. mistralai/sdkconfiguration.py +0 -7
  102. mistralai/types/basemodel.py +3 -3
  103. mistralai/utils/__init__.py +131 -45
  104. mistralai/utils/datetimes.py +23 -0
  105. mistralai/utils/enums.py +67 -27
  106. mistralai/utils/forms.py +49 -28
  107. mistralai/utils/serializers.py +32 -3
  108. {mistralai-1.8.1.dist-info → mistralai-1.9.1.dist-info}/METADATA +13 -6
  109. {mistralai-1.8.1.dist-info → mistralai-1.9.1.dist-info}/RECORD +111 -108
  110. {mistralai-1.8.1.dist-info → mistralai-1.9.1.dist-info}/LICENSE +0 -0
  111. {mistralai-1.8.1.dist-info → mistralai-1.9.1.dist-info}/WHEEL +0 -0
mistralai/utils/forms.py CHANGED
@@ -86,11 +86,39 @@ def _populate_form(
86
86
  return form
87
87
 
88
88
 
89
+ def _extract_file_properties(file_obj: Any) -> Tuple[str, Any, Any]:
90
+ """Extract file name, content, and content type from a file object."""
91
+ file_fields: Dict[str, FieldInfo] = file_obj.__class__.model_fields
92
+
93
+ file_name = ""
94
+ content = None
95
+ content_type = None
96
+
97
+ for file_field_name in file_fields:
98
+ file_field = file_fields[file_field_name]
99
+
100
+ file_metadata = find_field_metadata(file_field, MultipartFormMetadata)
101
+ if file_metadata is None:
102
+ continue
103
+
104
+ if file_metadata.content:
105
+ content = getattr(file_obj, file_field_name, None)
106
+ elif file_field_name == "content_type":
107
+ content_type = getattr(file_obj, file_field_name, None)
108
+ else:
109
+ file_name = getattr(file_obj, file_field_name)
110
+
111
+ if file_name == "" or content is None:
112
+ raise ValueError("invalid multipart/form-data file")
113
+
114
+ return file_name, content, content_type
115
+
116
+
89
117
  def serialize_multipart_form(
90
118
  media_type: str, request: Any
91
- ) -> Tuple[str, Dict[str, Any], Dict[str, Any]]:
119
+ ) -> Tuple[str, Dict[str, Any], List[Tuple[str, Any]]]:
92
120
  form: Dict[str, Any] = {}
93
- files: Dict[str, Any] = {}
121
+ files: List[Tuple[str, Any]] = []
94
122
 
95
123
  if not isinstance(request, BaseModel):
96
124
  raise TypeError("invalid request body type")
@@ -112,39 +140,32 @@ def serialize_multipart_form(
112
140
  f_name = field.alias if field.alias else name
113
141
 
114
142
  if field_metadata.file:
115
- file_fields: Dict[str, FieldInfo] = val.__class__.model_fields
116
-
117
- file_name = ""
118
- content = None
119
- content_type = None
120
-
121
- for file_field_name in file_fields:
122
- file_field = file_fields[file_field_name]
143
+ if isinstance(val, List):
144
+ # Handle array of files
145
+ for file_obj in val:
146
+ if not _is_set(file_obj):
147
+ continue
148
+
149
+ file_name, content, content_type = _extract_file_properties(file_obj)
123
150
 
124
- file_metadata = find_field_metadata(file_field, MultipartFormMetadata)
125
- if file_metadata is None:
126
- continue
151
+ if content_type is not None:
152
+ files.append((f_name + "[]", (file_name, content, content_type)))
153
+ else:
154
+ files.append((f_name + "[]", (file_name, content)))
155
+ else:
156
+ # Handle single file
157
+ file_name, content, content_type = _extract_file_properties(val)
127
158
 
128
- if file_metadata.content:
129
- content = getattr(val, file_field_name, None)
130
- elif file_field_name == "content_type":
131
- content_type = getattr(val, file_field_name, None)
159
+ if content_type is not None:
160
+ files.append((f_name, (file_name, content, content_type)))
132
161
  else:
133
- file_name = getattr(val, file_field_name)
134
-
135
- if file_name == "" or content is None:
136
- raise ValueError("invalid multipart/form-data file")
137
-
138
- if content_type is not None:
139
- files[f_name] = (file_name, content, content_type)
140
- else:
141
- files[f_name] = (file_name, content)
162
+ files.append((f_name, (file_name, content)))
142
163
  elif field_metadata.json:
143
- files[f_name] = (
164
+ files.append((f_name, (
144
165
  None,
145
166
  marshal_json(val, request_field_types[name]),
146
167
  "application/json",
147
- )
168
+ )))
148
169
  else:
149
170
  if isinstance(val, List):
150
171
  values = []
@@ -1,13 +1,16 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from decimal import Decimal
4
+ import functools
4
5
  import json
5
- from typing import Any, Dict, List, Union, get_args
6
- import httpx
6
+ import typing
7
+ from typing import Any, Dict, List, Tuple, Union, get_args
8
+ import typing_extensions
7
9
  from typing_extensions import get_origin
10
+
11
+ import httpx
8
12
  from pydantic import ConfigDict, create_model
9
13
  from pydantic_core import from_json
10
- from typing_inspection.typing_objects import is_union
11
14
 
12
15
  from ..types.basemodel import BaseModel, Nullable, OptionalNullable, Unset
13
16
 
@@ -185,6 +188,13 @@ def is_nullable(field):
185
188
  return False
186
189
 
187
190
 
191
+ def is_union(obj: object) -> bool:
192
+ """
193
+ Returns True if the given object is a typing.Union or typing_extensions.Union.
194
+ """
195
+ return any(obj is typing_obj for typing_obj in _get_typing_objects_by_name_of("Union"))
196
+
197
+
188
198
  def stream_to_text(stream: httpx.Response) -> str:
189
199
  return "".join(stream.iter_text())
190
200
 
@@ -217,3 +227,22 @@ def _contains_pydantic_model(data: Any) -> bool:
217
227
  return any(_contains_pydantic_model(value) for value in data.values())
218
228
 
219
229
  return False
230
+
231
+
232
+ @functools.cache
233
+ def _get_typing_objects_by_name_of(name: str) -> Tuple[Any, ...]:
234
+ """
235
+ Get typing objects by name from typing and typing_extensions.
236
+ Reference: https://typing-extensions.readthedocs.io/en/latest/#runtime-use-of-types
237
+ """
238
+ result = tuple(
239
+ getattr(module, name)
240
+ for module in (typing, typing_extensions)
241
+ if hasattr(module, name)
242
+ )
243
+ if not result:
244
+ raise ValueError(
245
+ f"Neither typing nor typing_extensions has an object called {name!r}"
246
+ )
247
+ return result
248
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mistralai
3
- Version: 1.8.1
3
+ Version: 1.9.1
4
4
  Summary: Python Client SDK for the Mistral AI API.
5
5
  Author: Mistral
6
6
  Requires-Python: >=3.9
@@ -169,7 +169,7 @@ with Mistral(
169
169
  "content": "Who is the best French painter? Answer in one short sentence.",
170
170
  "role": "user",
171
171
  },
172
- ])
172
+ ], stream=False)
173
173
 
174
174
  # Handle response
175
175
  print(res)
@@ -195,7 +195,7 @@ async def main():
195
195
  "content": "Who is the best French painter? Answer in one short sentence.",
196
196
  "role": "user",
197
197
  },
198
- ])
198
+ ], stream=False)
199
199
 
200
200
  # Handle response
201
201
  print(res)
@@ -271,7 +271,7 @@ with Mistral(
271
271
  "content": "Who is the best French painter? Answer in one short sentence.",
272
272
  "role": "user",
273
273
  },
274
- ], agent_id="<id>")
274
+ ], agent_id="<id>", stream=False)
275
275
 
276
276
  # Handle response
277
277
  print(res)
@@ -297,7 +297,7 @@ async def main():
297
297
  "content": "Who is the best French painter? Answer in one short sentence.",
298
298
  "role": "user",
299
299
  },
300
- ], agent_id="<id>")
300
+ ], agent_id="<id>", stream=False)
301
301
 
302
302
  # Handle response
303
303
  print(res)
@@ -574,7 +574,14 @@ with Mistral(
574
574
  api_key=os.getenv("MISTRAL_API_KEY", ""),
575
575
  ) as mistral:
576
576
 
577
- res = mistral.beta.conversations.start_stream(inputs="<value>")
577
+ res = mistral.beta.conversations.start_stream(inputs=[
578
+ {
579
+ "object": "entry",
580
+ "type": "function.result",
581
+ "tool_call_id": "<id>",
582
+ "result": "<value>",
583
+ },
584
+ ], stream=True)
578
585
 
579
586
  with res as event_stream:
580
587
  for event in event_stream:
@@ -138,18 +138,18 @@ mistralai/_hooks/custom_user_agent.py,sha256=cHfp43RcsNvHusq8WVxWrCS3w-pmzJ8uNuv
138
138
  mistralai/_hooks/deprecation_warning.py,sha256=eyEOf7-o9uqqNWJnufD2RXp3dYrGV4in9q76yLC1zog,921
139
139
  mistralai/_hooks/registration.py,sha256=ML0W-XbE4WYdJ4eGks_XxF2aLCJTaIWjQATFGzFwvyU,861
140
140
  mistralai/_hooks/sdkhooks.py,sha256=s-orhdvnV89TmI3QiPC2LWQtYeM9RrsG1CTll-fYZmQ,2559
141
- mistralai/_hooks/types.py,sha256=z3AUFDpRJHj2m3h5PklvUeEcGohY0cfph4jL6-nGIzs,2812
142
- mistralai/_version.py,sha256=ov7SFKb_NFEoxMwoKD6j1BNiqtY8jnujwybVOhD60gY,460
143
- mistralai/agents.py,sha256=o_apyuwiDzxv-U252T84ynAHCb5fn1q7MMXqrZ4oHLo,32652
141
+ mistralai/_hooks/types.py,sha256=70IiFr5bfsJYafuDkXQWVfl6nY4dQkA5SZoEBCircqs,3047
142
+ mistralai/_version.py,sha256=ZtC79UUPgLX2HaQu3wqpdegceaS6uMMTzejYcY2hpg0,460
143
+ mistralai/agents.py,sha256=3E-c1YZOp3mS1PqA6OYekZmOcAdLCqWfq1o-hqUMsIw,33960
144
144
  mistralai/async_client.py,sha256=KUdYxIIqoD6L7vB0EGwUR6lQ0NK5iCTHjnLVR9CVcJY,355
145
- mistralai/basesdk.py,sha256=GsU5bp8O5fBCl34tKxaYmeYSIIM971eAPeFBBC_BpFo,12191
145
+ mistralai/basesdk.py,sha256=Ri8PbeqeDKsRWmc7rFsBtrZ8mKglXUkjwqnY543kywQ,11865
146
146
  mistralai/batch.py,sha256=YN4D0Duwrap9Ysmp_lRpADYp1Znay7THE_z8ERGvDds,501
147
- mistralai/beta.py,sha256=wiOFmXiXNKeRMOEdgeIwVqAWg6E_3sqHc_ojwU9oZoY,728
148
- mistralai/chat.py,sha256=1XVVVvDi726bq6HXCur6-dsmFfzQAEpEWbKT_3sTZ4A,40549
149
- mistralai/classifiers.py,sha256=Cbrb6X_eq3-Yz5ZhWkOsFDTGbo3hkgh-vtIEQmU_UdI,33776
147
+ mistralai/beta.py,sha256=zcRqEzVxBsog2vWbX4X7ZraozAvhNyCo1_oXxLbBuAo,727
148
+ mistralai/chat.py,sha256=m6qGMxAAw4hQCRlhuT-LAukCIHdO4X2yVAI5ft9ImjU,41857
149
+ mistralai/classifiers.py,sha256=EsAvZi0dxM4qDw8xl84h6kZBWm4zdiP-f0eslqvDxAo,34152
150
150
  mistralai/client.py,sha256=hrPg-LciKMKiascF0WbRRmqQyCv1lb2yDh6j-aaKVNo,509
151
- mistralai/conversations.py,sha256=53wWkEymYuoiuGpKwdoAVe5drJYTKT3JsuEQSt59uOA,109317
152
- mistralai/embeddings.py,sha256=SHG4s0yKwCdKhYKGXKdzPXmcD4_WXI9BBnrM7cSI3gw,9258
151
+ mistralai/conversations.py,sha256=lwc8oIqBHvbcLo_Bp00arT8xU-2fGFxi1RQcpHTKLCU,110846
152
+ mistralai/embeddings.py,sha256=L0jk6bXAc3FUYv0Rqk6CPXXabqhwfYG1OXLMlaille8,9352
153
153
  mistralai/extra/README.md,sha256=BTS9fy0ijkiUP7ZVoFQ7FVBxHtXIXqucYZyy_ucFjo4,1739
154
154
  mistralai/extra/__init__.py,sha256=8DsU_omYYadqcwlmBOoakBwkWKcSohwLmtB8v-jkn2M,392
155
155
  mistralai/extra/exceptions.py,sha256=4EEygCfdsniYiroHEFVSVDqerQZkpRG027mlJXvMqns,428
@@ -159,7 +159,7 @@ mistralai/extra/mcp/base.py,sha256=OyvpekpR_SMYLWSzNW5HyVqTpBKBlikhw54B5-Oj1DU,5
159
159
  mistralai/extra/mcp/sse.py,sha256=ikAw5YDVPY_nYT9zzB3-RYrZg9tVmt4WaY9Rki-fMsM,6385
160
160
  mistralai/extra/mcp/stdio.py,sha256=n_70r_MhD46lVZIMmsa8wfZ0czxFdPb_k3axoimV0fc,647
161
161
  mistralai/extra/run/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
162
- mistralai/extra/run/context.py,sha256=VEFqiN771VO7aK9vp6o9-okHUOeaP-Zr04rSlR1zarA,11146
162
+ mistralai/extra/run/context.py,sha256=59KkZl96y96S2oEVPkuCrz_J-AkJEu7Do8-TQvhVjRY,11110
163
163
  mistralai/extra/run/result.py,sha256=SN9yGovPD4eMkDbz6qqn4uYzkkrKNeTb2GQ87b-lJCQ,7149
164
164
  mistralai/extra/run/tools.py,sha256=XhghR3qn0H91Kn1Ld3qNgpoD3Wj73ZP1V7zOXnuBw8k,7698
165
165
  mistralai/extra/run/utils.py,sha256=lmqxqCuwLwYsjua460-I6q4OK2om8BxgvWm4NPiV7fs,1169
@@ -170,19 +170,19 @@ mistralai/extra/tests/test_utils.py,sha256=VesGDR_IiE6u0iY7yOi1iERd7esdJgi2aL4xZ
170
170
  mistralai/extra/utils/__init__.py,sha256=SExo5t_hx0ybiQhVJIG3r3hOA-Pfny3lIO_WsqNXlN8,116
171
171
  mistralai/extra/utils/_pydantic_helper.py,sha256=_mzrbZGU07M96CzcxgjcV25NtIGu5EUfotaN8NDUoFc,883
172
172
  mistralai/extra/utils/response_format.py,sha256=uDNpvOHhk2se3JTXweWYMbnkyOcOqhMe2yxZ2lYNe1k,913
173
- mistralai/files.py,sha256=uejTIBoumK7wMp51e9F2TZsiRDXX9NRnBGgMuaM21eg,45763
174
- mistralai/fim.py,sha256=UMx-bFYbaSyANZug8VrCabHsqePdiHoYQO1YMKB2MvY,27935
173
+ mistralai/files.py,sha256=K53vNyP21U7Ip6ilZvyZyYM-NQ2JRK7HZznMn45vmII,46327
174
+ mistralai/fim.py,sha256=TDd8FN2M3SKGRjcWcvvS1zot5S4bk_IXZR94IpxsN9Y,28123
175
175
  mistralai/fine_tuning.py,sha256=UENQqfE054VEsAYxdruV-TBLFIFfO-joXNznH08GUvE,477
176
- mistralai/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
177
- mistralai/jobs.py,sha256=1DZE14ad348Vg82VHhLRyXhu7SIh8_KgWXc_jP2oFIA,46767
178
- mistralai/mistral_agents.py,sha256=FrIUGExYpwz3EyMOetLKsD-LtcsoB1xrWR86zp1WwzE,45573
179
- mistralai/mistral_jobs.py,sha256=EQHFFxFkkx6XvPX-9S8TRZvVSOLUL7z91cg56J8pskQ,31114
180
- mistralai/models/__init__.py,sha256=h-8plap2U1shoIGyNyeNpQmSH5GvIsVZfoT4wC_4Fcc,43395
181
- mistralai/models/agent.py,sha256=dx_uXYDNWoENtgK4InGqs1A9eCw1xDphMPCF_Pv43VQ,4185
182
- mistralai/models/agentconversation.py,sha256=WaPQn3pGiD2c6bNaP7Ya1akVQt54aK7qDtAEnHAjwrk,2086
183
- mistralai/models/agentcreationrequest.py,sha256=u9WM95ywRmDqnwx0yfEOT1FnJbiPY8lNtju71d3ix4A,3952
176
+ mistralai/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
177
+ mistralai/jobs.py,sha256=BUeEMx-SR3QrB8tyjjDndtcCTF-cs3640I38AWYW18w,47237
178
+ mistralai/mistral_agents.py,sha256=6osNLzBNN9IFRhpeNzt6VGpqHlCo_6HnmMBvxzqd3F4,46043
179
+ mistralai/mistral_jobs.py,sha256=NZtJNtLI9uFzCqLKRHpQrm3JKEni-TkLYWcBxfQcD04,31490
180
+ mistralai/models/__init__.py,sha256=i8vvFJ2Fgt7nzbbMiiLHzafe3I8SfUQQgxpcLST6GhA,81217
181
+ mistralai/models/agent.py,sha256=kM3lPW08V5B3CfBuIFZrEYAyClECj0Ial7-cQztfGmA,4191
182
+ mistralai/models/agentconversation.py,sha256=-vqTZ116MNx4JRs9N6cabsGXn4tILg_JP3JcL-iJpK0,2092
183
+ mistralai/models/agentcreationrequest.py,sha256=VdCCQEnBVfZU2m1EtRy5vEm_zsPIGPGLF21TXKjOm7E,3958
184
184
  mistralai/models/agenthandoffdoneevent.py,sha256=HDGDAni5U_NXuUSZEvcqjIjDVjAjZrYZfxzN0D_YLBM,813
185
- mistralai/models/agenthandoffentry.py,sha256=Sdw0ToQ3Goe5cLCWRC1cYyecMo_wAVrWedILen1FbjU,2150
185
+ mistralai/models/agenthandoffentry.py,sha256=qJMZLfg8JksJjzibYsRlTDvYoVQhf4a9AQK3s0o1irA,2156
186
186
  mistralai/models/agenthandoffstartedevent.py,sha256=8J07a6u6EnuBjtGtMcCqUzWJxfnaVy8N6PNoFeyqU4Q,850
187
187
  mistralai/models/agents_api_v1_agents_getop.py,sha256=BdrUpxf-rVGvxFlLEnBLj8MGHE82jHSpWWb5xqvzwDA,494
188
188
  mistralai/models/agents_api_v1_agents_listop.py,sha256=1NJOQ9vTXDYiT7nvATN1KxnXsl1S5FMjmwnpJZQulD4,735
@@ -190,155 +190,157 @@ mistralai/models/agents_api_v1_agents_update_versionop.py,sha256=-ANBszFQ1Ig5sIB
190
190
  mistralai/models/agents_api_v1_agents_updateop.py,sha256=BFslxxeejm4kyLbWGTFaWNQ2ilFLavfbEUfi0SwjELE,802
191
191
  mistralai/models/agents_api_v1_conversations_append_streamop.py,sha256=ZnhYubtb4wwxfbFqV19LyMvMW9V22F-fEsr1RmBZVRA,1072
192
192
  mistralai/models/agents_api_v1_conversations_appendop.py,sha256=uKPtHvaJEZTc-N6SPmKk_wEuPDTDLXeuCYyx2l0zKTk,1016
193
- mistralai/models/agents_api_v1_conversations_getop.py,sha256=LZCWCtU6XT9DpOuX2A64o9cbsi2qMAahCV2YNfnql2Y,1176
194
- mistralai/models/agents_api_v1_conversations_historyop.py,sha256=dHPJVbxPNDkgOQq4auAEiBX2NUuy5ZjKE6kIHWeuYow,530
193
+ mistralai/models/agents_api_v1_conversations_getop.py,sha256=SS2tOzjHhvPVmqJ_zhf7IxKjwkywXa0v8g3RSizPqfM,1318
194
+ mistralai/models/agents_api_v1_conversations_historyop.py,sha256=7mufGwn2hJ75I0oukJvXFqgmVVXxG6E-K7fj_46iJO4,670
195
195
  mistralai/models/agents_api_v1_conversations_listop.py,sha256=N7bwRL4VtP3-a9Q-15ck37TvWux3br1O4flNp97-D0g,1163
196
- mistralai/models/agents_api_v1_conversations_messagesop.py,sha256=4V1voPx6mGB4Go5uAsYbkOKgHR0HSUYfadDUoFS0sj0,532
197
- mistralai/models/agents_api_v1_conversations_restart_streamop.py,sha256=7QZ8fEnDPcIRiTqgg68siLZCSPO13_r2-qdQ7bVsxwY,957
198
- mistralai/models/agents_api_v1_conversations_restartop.py,sha256=QNA8A3ewD3AwxtayUvrCQpqUfqr13-e7-Y9UgrSbp-A,901
199
- mistralai/models/agentscompletionrequest.py,sha256=gyGoh1KsCGbOpfmaqk9d_hf1CYhWIriH4vaeQoEDfzU,7920
200
- mistralai/models/agentscompletionstreamrequest.py,sha256=ZI4iFtl6qDJZ5QTIZ7vDIyFQ9n9rqVqN6tJQAdjpQjA,7365
201
- mistralai/models/agentupdaterequest.py,sha256=w3K74yFRqilUDc64bS6ulmnvgY8WMJ0evSbzwu3ukLc,4094
196
+ mistralai/models/agents_api_v1_conversations_messagesop.py,sha256=MC7ExiTo7R2EenYoSfTyE02zJmLFebS6mJranxdK5gk,674
197
+ mistralai/models/agents_api_v1_conversations_restart_streamop.py,sha256=cNuV80H-OxH606FV5zIAcceqS0fD9vwlPmqHyXOBmWk,1095
198
+ mistralai/models/agents_api_v1_conversations_restartop.py,sha256=pjsbjzKTeWgSBiviDzMx50gVqRIGP4dKr3FqG-SOSoY,1039
199
+ mistralai/models/agentscompletionrequest.py,sha256=9eQ3v_F4pIOFP0d2mph27_3PS45a0UvQzDSFO88EhAk,8589
200
+ mistralai/models/agentscompletionstreamrequest.py,sha256=hTypANJ-SHYTpWt7wWzQWCHuvcnahZoGdDJ1COQsdys,8034
201
+ mistralai/models/agentupdaterequest.py,sha256=uoqwrx1KypzBrRNYECuoD_Z6r0ahsxqDiPvhuqnaH4E,4100
202
202
  mistralai/models/apiendpoint.py,sha256=Hvar5leWsJR_FYb0UzRlSw3vRdBZhk_6BR5r2pIb214,400
203
203
  mistralai/models/archiveftmodelout.py,sha256=VdppiqIB9JGNB2B0-Y6XQfQgDmB-hOa1Bta3v_StbLs,565
204
- mistralai/models/assistantmessage.py,sha256=pmOhSINRB8sJ11lNtfKEL0k6-JnTEJ7cjlWW9D0pIMM,2624
205
- mistralai/models/basemodelcard.py,sha256=nv-xjoZFCuIdjKBl98dVH5puT7qh0AC2MaE7WTsMxfs,2985
204
+ mistralai/models/assistantmessage.py,sha256=3qbCraZpjX_clXjT1wgOBeQuQBjX22XLQMIlR3v5fZw,2630
205
+ mistralai/models/basemodelcard.py,sha256=5HUKthg3BQse-FnSkbwOIsf6AEqzXb8liSnGdSwwyo0,3206
206
206
  mistralai/models/batcherror.py,sha256=tThkO9B-g-6eDSBCm1Emd-zDI4B3mk2vAl0L1MI3pdQ,390
207
- mistralai/models/batchjobin.py,sha256=1GDaaHJeGVo71F4HVZkTdX92bmr3DieNB0ZuHFzBIeE,1850
208
- mistralai/models/batchjobout.py,sha256=LYtHa6WTsDGWUdQfdWll7W6JZ0b1F7osF9ic6ljJpVI,2834
207
+ mistralai/models/batchjobin.py,sha256=E6f66Wu4tGfOY_wMLL6waswlzeYXHkJ_Ij1s4JbVmuQ,1856
208
+ mistralai/models/batchjobout.py,sha256=otj3W1vf6OznXKzYJjnLgdSIAiBAH0ZT6i5pSyjlyyk,2840
209
209
  mistralai/models/batchjobsout.py,sha256=8ZpO0Lxuygz_4p5cemhJo7ks9YsTmio0EaHvrjyr0Jc,636
210
210
  mistralai/models/batchjobstatus.py,sha256=WlrIl5vWQGfLmgQA91_9CnCMKhWN6Lli458fT-4Asj4,294
211
211
  mistralai/models/builtinconnectors.py,sha256=cX1M7Q_2tsWeuH-lKWomXED7xN7Du6BJKvYpep1vD30,284
212
212
  mistralai/models/chatclassificationrequest.py,sha256=PmU036oOlGqfd75hNESDUJiN4uJNYguACoCt6CzBC2M,534
213
213
  mistralai/models/chatcompletionchoice.py,sha256=6iIFLZj2KYx0HFfzS3-E3sNXG6mPEAlDyXxIA5iZI_U,849
214
- mistralai/models/chatcompletionrequest.py,sha256=6Innwpi7UnKmyauATOJForAVvW0tkSnbjsiQOOp5OKg,9777
214
+ mistralai/models/chatcompletionrequest.py,sha256=aSzEtkHVm7O-txPhhbXswxNxtClpMwCZQwxM17ay030,10529
215
215
  mistralai/models/chatcompletionresponse.py,sha256=px0hjCapAtTP50u36hiQdPcC9X6LU81Nq5aJ3AlofjM,709
216
- mistralai/models/chatcompletionstreamrequest.py,sha256=0NFa_nMMRmHU66Hsgu1Zm4fggT0AzvW_imrkyZ4sUxc,9465
216
+ mistralai/models/chatcompletionstreamrequest.py,sha256=__8jzGuFidSO2rtDXXiQCo6mKEPSccgo3ZQyHuXY4Ys,10217
217
217
  mistralai/models/chatmoderationrequest.py,sha256=x1eAoxx_GhaxqGRe4wsqNaUi59K39HQakkedLJVUVD8,2236
218
218
  mistralai/models/checkpointout.py,sha256=A2kXS8-VT_1lbg3brifVjZD6tXdsET8vLqBm2a-yXgA,1109
219
219
  mistralai/models/classificationrequest.py,sha256=FqQfSrGYwLUjVw78Ft7tbmhAkUN0FqolCn4MNArOuR8,922
220
220
  mistralai/models/classificationresponse.py,sha256=tiQzQnqDr34oFJnMmbI_wleKqAGHdn3W6iFyL0cZ-uY,607
221
221
  mistralai/models/classificationtargetresult.py,sha256=EOJeumiN8JsB_85MxOgeo6c9-Upal3yfPrQjNkI0YjA,371
222
- mistralai/models/classifierdetailedjobout.py,sha256=6hdvuu3W9QelAcyEeDNWCZSYPVI1tM1H37sYRwrZaZA,4802
223
- mistralai/models/classifierftmodelout.py,sha256=onQ-OuqpGo1K7p66Et7yr4lJU6t9jfWcHcMjo9naa0M,2752
224
- mistralai/models/classifierjobout.py,sha256=2WPRQzERIjT3thedZ0ag-CMs7GyaMIgMY9xrBlFO2zw,5997
225
- mistralai/models/classifiertargetin.py,sha256=gmJdDRojg5um4SAzfTlzRe-X6Aliq084cfCq1BXcSBU,1673
222
+ mistralai/models/classifierdetailedjobout.py,sha256=QBHqeh1VLpuKY2IaWqnj7c12UwC43i5KPBd2CQuAM6k,4808
223
+ mistralai/models/classifierftmodelout.py,sha256=pqKsnPT8KwIVt6TFMi0DGPEK_Nq_sAkFzXzf0C_BCW0,2758
224
+ mistralai/models/classifierjobout.py,sha256=OLn9JY-IcPKX8FQKU22R_UN0E20Zjx3kxnSVplLZ9bI,6003
225
+ mistralai/models/classifiertargetin.py,sha256=eMNNBpEagig9jvkS-jxDSL9xELUiReHkHNoS-kPykCc,1679
226
226
  mistralai/models/classifiertargetout.py,sha256=WK94y6c1EsxcC7bCnUFus0ljxHQ4Q-b4eudswKpOrmU,561
227
- mistralai/models/classifiertrainingparameters.py,sha256=_UmhfQAALRjhUJIMrKlz2kRmOEVhui_tjzCy_R50qHo,2176
228
- mistralai/models/classifiertrainingparametersin.py,sha256=k1SSzy6S3BdY7oX2JqhY9nc9aX7vI8QXEpMFw63b218,4456
227
+ mistralai/models/classifiertrainingparameters.py,sha256=ty7hE0wzQAIeMyaPvTby30NxsjB2kX31IiZcBp5auxI,2182
228
+ mistralai/models/classifiertrainingparametersin.py,sha256=6fb8UpKCunrP4na0j3-U-owHe8h3hqRpO7-dmo1ZlfI,4462
229
229
  mistralai/models/codeinterpretertool.py,sha256=aSM8mi2sRft1o04aGlB24sFl3s49xM1zEnWP50MBMLU,493
230
- mistralai/models/completionargs.py,sha256=ST8O_6y6R01o6svlD9J5nLLVfY0K4DdLBSZ8C8a52Fo,3161
230
+ mistralai/models/completionargs.py,sha256=sxxIJkmxCe8lZu8Mr8arZZFegLLVKeQe3NwBX-K4m8c,3167
231
231
  mistralai/models/completionargsstop.py,sha256=3TB3uIYxTPWXzMNnQb9bkYlLD5u92G0xBdzP_dIZNjQ,371
232
232
  mistralai/models/completionchunk.py,sha256=Cdq-FBWa1oBhrxapoOAj8qr6xmkeIPsfPQSbjeK6NLY,871
233
- mistralai/models/completiondetailedjobout.py,sha256=qbUrYfpgNXt7g5s91aB5k07gcUlo8J7OPHivBvWeUVw,5021
233
+ mistralai/models/completiondetailedjobout.py,sha256=P3nIHdwnftrW4XZl7WpbRhsF2YnPbYYXmyAzZ54lK3s,5027
234
234
  mistralai/models/completionevent.py,sha256=rFc5dJBRnNOzspI95Jhkjd9WyM476u48cN0T1Vh-Cxw,399
235
- mistralai/models/completionftmodelout.py,sha256=vosnNC1lqatAMBxCSnu6Xmuku0dfIcP487G_XvLFGdk,2499
236
- mistralai/models/completionjobout.py,sha256=U9sxERBs0MGUWV_bmhAZoerNSqicFTweq9mSTNIuyz0,6153
237
- mistralai/models/completionresponsestreamchoice.py,sha256=gw5-_iOyznuimumDtBV65E3zwUW0KH1OHP55dGCAsAA,1927
238
- mistralai/models/completiontrainingparameters.py,sha256=psrP9mBbjc0JeaYJV53FqIAmoFu6h-tw5Wa3_8a5RPc,2318
239
- mistralai/models/completiontrainingparametersin.py,sha256=OlQ95h2ZBlQbtwbZlWrnrNFMYDfbdEcTPvZHB1eQvf4,4576
240
- mistralai/models/contentchunk.py,sha256=V8-d2u9ReICA6uXZwJTUXu88VfKRIAsLRO6o113Mcw8,1073
235
+ mistralai/models/completionftmodelout.py,sha256=8P5vS7l0CeEwlxje4hY3_00HuF0LvD4QDbyOICe3HCs,2505
236
+ mistralai/models/completionjobout.py,sha256=DmoGzVMylZCFuCY0gZ-3S2c_FSoIoLnU86lwm1lmi0k,6159
237
+ mistralai/models/completionresponsestreamchoice.py,sha256=tFAEbhr2C9v1QIqWINONnHmeQ8A1pyW29Ye5vFQ_ANY,1933
238
+ mistralai/models/completiontrainingparameters.py,sha256=vx5fWGul8npjXAY1pCWsJhHCcMOY7goIKqzGN4-BvMg,2324
239
+ mistralai/models/completiontrainingparametersin.py,sha256=6d6grsIMPX7SZoaunp3kR1cC66VMtEM_OlxU-gz1KXA,4582
240
+ mistralai/models/contentchunk.py,sha256=6OEVsjChgk5ZVHsWRDnuSJRmzocJertuPibQ4eK0_aw,1197
241
241
  mistralai/models/conversationappendrequest.py,sha256=wYOL4zWCLat6M8bakwtq9_JiUm_DBRR5cnu7DM-dTk4,1282
242
242
  mistralai/models/conversationappendstreamrequest.py,sha256=Pa3YahEch0aG1h7sVC-V1rVCpwrCRpWf-2cuJqBu7ig,1327
243
243
  mistralai/models/conversationevents.py,sha256=PvH27_rHVVO_XMIqjbaIauguO8eMC3_o649wENUdw94,2767
244
244
  mistralai/models/conversationhistory.py,sha256=dSCA9sM2jeqMKbTqTxCUiC_6FIO23zsfind6qpY2MRI,1759
245
245
  mistralai/models/conversationinputs.py,sha256=S0jyBRBx2WKxwGQx2QdbXCEWqmLZ1obocxquvCXk9Po,460
246
246
  mistralai/models/conversationmessages.py,sha256=kUvWLKuyPyZLQbBd2lJAZ8FQoM0RIGw_PlJc4Cwltwk,873
247
- mistralai/models/conversationrequest.py,sha256=d8yCjDYB4H8yp_eY2Gsd5Tu63gvVskmRdrMZgj2INNY,4336
247
+ mistralai/models/conversationrequest.py,sha256=mJytNIG-IoRTGx-N0Y4a5hHYBDgmEIRrLB-7-t_SGvY,4342
248
248
  mistralai/models/conversationresponse.py,sha256=Md9E4q-jDVHlHuYe27vHT9Gv6i4AnzNjLSrA9jtcBn8,1646
249
249
  mistralai/models/conversationrestartrequest.py,sha256=CYM0lb286pGgZKhHCCKAH1ODysVNo0MOvHabQALQtaQ,1514
250
250
  mistralai/models/conversationrestartstreamrequest.py,sha256=ZvMewcQgHlt7oDz6HxvViL8UAcd_4LUEF99MxXDc7r4,1559
251
- mistralai/models/conversationstreamrequest.py,sha256=S5aqRIL3ZQIFMG1Pul-ZBIkJ1xFulKnPYDfgs66rJ0M,4563
252
- mistralai/models/conversationusageinfo.py,sha256=XIguPFz_ToZF1xVCr1G96KueW3NtT2977QuuQdVH76w,1931
251
+ mistralai/models/conversationstreamrequest.py,sha256=QYAhy6YCbKFbFAh8xb9fsUg4BPMXFM9AZiceRja1b68,4569
252
+ mistralai/models/conversationusageinfo.py,sha256=K9XqE-TgF4sytMjEj-eMhPZKoO4HgJKZKwCotQrBUko,1937
253
253
  mistralai/models/delete_model_v1_models_model_id_deleteop.py,sha256=lnVRFX-G0jkn1dCFC89sXY2Pj_w4QfMDeF1tPjS4hWE,602
254
254
  mistralai/models/deletefileout.py,sha256=s3a-H2RgFQ9HX0kYSmP6GwmwE1jghz7dBj-3G0NBVSY,587
255
255
  mistralai/models/deletemodelout.py,sha256=W_crO0WtksoKUgq5s9Yh8zS8RxSuyKYQCBt1i8vB1sE,693
256
- mistralai/models/deltamessage.py,sha256=7NtvEjdmBOl86rwOx7x2fcCCJSzIF8K6-eu-G9Wr9PI,1939
256
+ mistralai/models/deltamessage.py,sha256=3C0YZ9pQksIoE-i_0FqP5GUAQ90EeKUzQnHkqmhJAlc,1945
257
257
  mistralai/models/documentlibrarytool.py,sha256=EN50sX8wgfAw7mF6W8BkOwKyqRvEzGvHgINn-evuCcg,654
258
- mistralai/models/documenturlchunk.py,sha256=j3JB_Cy1eIRY7fTJe8AvQrdrLEA6xsJcM1l9_a1Sh68,1704
258
+ mistralai/models/documenturlchunk.py,sha256=yiqte4P63DCyDKDIYKD0pP9S4HjFNXHCXob4nnzY6nY,1710
259
259
  mistralai/models/embeddingdtype.py,sha256=c7L-PKhBgPVPZeMGuMub0ZOs0MdxMbpW2ebE0t7oEpU,209
260
- mistralai/models/embeddingrequest.py,sha256=BE3L0ImjkdmzwOSUQnC_vCsnvyeQqWmqRw4xgzX6vJc,2258
260
+ mistralai/models/embeddingrequest.py,sha256=G-JirOJnoE8qUCorqbRSUAjeG8db5LPFPsIf8RuBdKE,2264
261
261
  mistralai/models/embeddingresponse.py,sha256=te6E_LYEzRjHJ9QREmsFp5PeNP2J_8ALVjyb1T20pNA,663
262
262
  mistralai/models/embeddingresponsedata.py,sha256=fJ3mrZqyBBBE40a6iegOJX3DVDfgyMRq23ByeGSTLFk,534
263
- mistralai/models/eventout.py,sha256=TouRJeISBLphMTPHfgSOpuoOmbGDVohPOrdgHyExMpw,1633
263
+ mistralai/models/eventout.py,sha256=UMqHEJMMJH68gbPA7uKF8bnPZmVzKSa-fXibFyXqTOg,1639
264
+ mistralai/models/filechunk.py,sha256=GhF5wtOAa-M0uQaQgLrzYB8HN9wsasm3WJ6j9Et_LsY,641
264
265
  mistralai/models/filepurpose.py,sha256=lQk45E78j4bJyMi59jLH5IjU1rCUsqprF28P4ArGQoo,263
265
266
  mistralai/models/files_api_routes_delete_fileop.py,sha256=HOx-hJxphSYF-JV3zOGe2eucWQUpfVqxG0IDaSa3dcE,500
266
267
  mistralai/models/files_api_routes_download_fileop.py,sha256=y3sLFZ-j4eUuxCyIP0L-exy0ViqskDLkghkOccElBQQ,504
267
268
  mistralai/models/files_api_routes_get_signed_urlop.py,sha256=e_XczBgInaylmHJ9m5wJQ78hfCp2PrrTrT8bxGGi8BI,879
268
- mistralai/models/files_api_routes_list_filesop.py,sha256=ztzOPSCg7VfmRDxwxnquhTpLPRbI-wJAvkASOsv2g8w,3130
269
+ mistralai/models/files_api_routes_list_filesop.py,sha256=81Zl85ibq1GW0mHAigB67RJd5ejfmtjpx_v6_T7hOkY,3136
269
270
  mistralai/models/files_api_routes_retrieve_fileop.py,sha256=8DjSbYqUqFoPq-qcNXyVADeBVSsoCfHFlkRfmwYk-ns,504
270
271
  mistralai/models/files_api_routes_upload_fileop.py,sha256=gIGH5xcPryWYkj1FmNv_0-9He-QB_rRf1a5nUYBNDTU,2213
271
- mistralai/models/fileschema.py,sha256=n_IjCdNOrC2fuzkv75wJn01XvqGTmPK3JqAFSHaOiMA,2597
272
+ mistralai/models/fileschema.py,sha256=_rmrySQWDp8Qssi0JHnAHYP4xeUINvxtjaMRnRBIwIU,2603
272
273
  mistralai/models/filesignedurl.py,sha256=VwvuhzhJulAB99Qxz6zr-2F1aINosAfaSxU0IhytDSU,289
273
- mistralai/models/fimcompletionrequest.py,sha256=wWDCkQ_PMnjB8DrIuIvVJlPGqQtTpVDHt4p7xJ204Ug,6565
274
+ mistralai/models/fimcompletionrequest.py,sha256=PiIWU_T3UyN87FWWiwWXDmLbfSMxtbVenBf9z4_Waco,6571
274
275
  mistralai/models/fimcompletionresponse.py,sha256=qNgb2WFVgkaW7Isfkk2Aol1gTV9UkhQomcDAhoPDeYw,707
275
- mistralai/models/fimcompletionstreamrequest.py,sha256=fxuR8FDOWMwIqlYU9ttAfGeRdVgTz4l2k26_OEfxelg,5944
276
+ mistralai/models/fimcompletionstreamrequest.py,sha256=URsZjjxq9W08TaDivivtkFrvXZ75WOIXMKc4ElTotY0,5950
276
277
  mistralai/models/finetuneablemodeltype.py,sha256=XmTpXeQU8AINnn1kVmXldFUauCaEnRtJNFAXUTVb6RQ,197
277
278
  mistralai/models/ftclassifierlossfunction.py,sha256=ApQB8ssAh2yE26-CljxPO7Jc5lxq3OoBPR4rUp-Td9U,203
278
279
  mistralai/models/ftmodelcapabilitiesout.py,sha256=Cg2ETH8o3eYm79-BEWweWS53wDqa1DIsZ8WtWA32Xic,730
279
- mistralai/models/ftmodelcard.py,sha256=G3dioHDMOhbI5HIw5gCaxZDb1sCthBzkXIAYMNHwya8,3300
280
+ mistralai/models/ftmodelcard.py,sha256=a0Xz0G_DWfv5HhiGo8HphykUmGMFJ_IX_TL7IzBR8Lo,3507
280
281
  mistralai/models/function.py,sha256=QaQriwBCCIS65IHO5Ge2OnMW6L1dS-o8JS8zlGYKSRU,534
281
282
  mistralai/models/functioncall.py,sha256=VvvBe4bVq1Irqo5t4_n1iq60UF7hLf8tE_GjkbyM8iE,556
282
- mistralai/models/functioncallentry.py,sha256=LjfvQ1eJC2Hv5jfUNwk3ZPODHyL8nPA2rcBk-cWU_X0,2223
283
+ mistralai/models/functioncallentry.py,sha256=eDWd_nHeEMgSJG-EgnrJlYZQ5-PiIikk1dnfSN7DCm0,2229
283
284
  mistralai/models/functioncallentryarguments.py,sha256=9ouc9p97SGUKrBh_fyPLqP5JYFVdqTVVwzMXoTu-WjA,424
284
285
  mistralai/models/functioncallevent.py,sha256=XRCC2yTEurXHRRdgfqz44HcLX0VYDOfxUwojUgnigYc,810
285
286
  mistralai/models/functionname.py,sha256=jgd0moI9eORQtEAQI4ROiMSKpWSbCLmK6IhDn7uppKY,467
286
- mistralai/models/functionresultentry.py,sha256=0vP9JdoQ16zgJuE1pBigu41KJspczm2ZU80vYAJmlEA,2036
287
+ mistralai/models/functionresultentry.py,sha256=sw-E0j_bQgQo2KdmzL4KHoGfo1LUYcHaqCXA6IVuEiE,2042
287
288
  mistralai/models/functiontool.py,sha256=dtVRauH6JGbvOeaFnWjxjDS0h2jbZbnmIQEGx3CczvU,548
288
- mistralai/models/githubrepositoryin.py,sha256=lor7fCIHPPIo0k1mHwO00RhgMdvxq-VHEFPtSWbGCN0,1702
289
- mistralai/models/githubrepositoryout.py,sha256=BsngXozaA5MDMtWsZmYpHYisiaAUd8t5Qy70Szqmkbs,1715
289
+ mistralai/models/githubrepositoryin.py,sha256=wCo1N8F69CSQu_5tP1XQHYmJ093K7LIAcXTD1xQVgP8,1708
290
+ mistralai/models/githubrepositoryout.py,sha256=vTiNoCE62eF0rfg-259UWJZJC7uZK-tSwlDp6i4IYs0,1721
290
291
  mistralai/models/httpvalidationerror.py,sha256=l47dL2BTqauhRn4_GdSl3TC-QWsdL98HoloMvp6vtRQ,604
291
292
  mistralai/models/imagegenerationtool.py,sha256=VCN82DgLJm9ZwvxYsOfRW8WzBAcSoEy2hB823BsPFqg,493
292
- mistralai/models/imageurl.py,sha256=6Fpt-8V3XYK-3u_Lw85gbMnyFWUdbNhOxjldqCvSpKs,1365
293
+ mistralai/models/imageurl.py,sha256=9ItYx55HH71XsElJVt7kuVfGJ4YvcTNUDKank8-r9h8,1371
293
294
  mistralai/models/imageurlchunk.py,sha256=yHgdAi_jOw-e5aXd4Dlr7YCtJcyw-W3QYol8-MAAT1Y,994
294
- mistralai/models/inputentries.py,sha256=uT1ZenU1waDOYZkd4iGNBelMWF-G9tdifJZJ6NsUEig,578
295
+ mistralai/models/inputentries.py,sha256=3r3UdRfr1XzfYdgF6Q6WPWrLxfohbN2-oT8LV93_h0Q,1199
295
296
  mistralai/models/inputs.py,sha256=KqOi7I6tCs51puGHIcTMXIYhJ6tbGONOLcqUBTNV_MM,1707
296
297
  mistralai/models/instructrequest.py,sha256=8Y63pPlhD6l8OhfHgoEykUvruRFCmghP7_w354J9ovY,1323
297
- mistralai/models/jobin.py,sha256=0mHw2FUWNw5YJ1TROHe7rakL785ziOGeIudUwSQ4mJs,5516
298
- mistralai/models/jobmetadataout.py,sha256=wtKbig55Uheqwxp-VUr8Q3KH8eSSB0Vt067Ux7_caEo,2412
298
+ mistralai/models/jobin.py,sha256=W2kKOf1iTGw03Z8upSAMgx2epL5CyCH-vqx5rnUacM8,5522
299
+ mistralai/models/jobmetadataout.py,sha256=2tQfEgOcEYzv-u8SkpzDncwS0EkfRevW8v7KHkoD_M4,2418
299
300
  mistralai/models/jobs_api_routes_batch_cancel_batch_jobop.py,sha256=3Q-YaI2zAX550v--wedoh9XoWg2rRSVFIYOrv2SjhG8,514
300
301
  mistralai/models/jobs_api_routes_batch_get_batch_jobop.py,sha256=8kCUZZZKrkDCXFtvWZVcF1XObl8QhLEajBjjfZrd12o,508
301
- mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py,sha256=yfqGy1yIaFETbLC96HmSXSmBv0BaRWpqDYeSlAUooY0,3049
302
+ mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py,sha256=rvHo6unnS52aY633fYIkOeFZnhoP1NG3dDlqwxapqMU,3055
302
303
  mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py,sha256=pevOFk9Ji8iebXVadr5d882kKjrvT6_R6b8qBTYkQAU,628
303
304
  mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py,sha256=biN40DJv0iQ1Pr1fA0fs6zV5j11C1zlcYt4XLNQILSI,1473
304
305
  mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py,sha256=V_sr_0pSoXVkrQszTa2zRmLff_B3WW4PE27GU-fokk8,1270
305
306
  mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py,sha256=0QGbsTA2VAHeTsQw15cn_dzurWOrzUWtkIE05meBSNA,1460
306
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=NWaXxPY4kmpDQsYAlhZfNbUBWbhkIb-JP5bTW9341LY,5762
307
+ mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=t1JhyqIQMMWyLBSL9PUXese6cUPqSY-JCctmluu-Zys,5768
307
308
  mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py,sha256=e9b5T3Jjq-y7ZTEGo8w16KrJwcutiD5N-5aFBtZGQTc,1388
308
309
  mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py,sha256=_pkyhD7OzG-59fgcajI9NmSLTLDktkCxXo_IuvWeyfs,636
309
310
  mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py,sha256=YsjSBijG3EHurZoqXCMjWIa0tz4e_oyMjQzyVD2CoQM,1728
310
311
  mistralai/models/jobsout.py,sha256=WD9_RHk39ftEEgVJ5Pd6d6WQz0QudeNf0mXf1b30xAM,1183
311
- mistralai/models/jsonschema.py,sha256=Itbk3BS9M9nnEPwShGyyOCVmqfbP6y44XsIUn6d7cDY,1652
312
- mistralai/models/legacyjobmetadataout.py,sha256=KrKrOG58lmUiISX886l-6eKV1a3-GvERdMYjCFRMMSg,4487
312
+ mistralai/models/jsonschema.py,sha256=wkhM2CwHk5BqWiWZYn6XYdppc5IitXWirepfxKiDENY,1658
313
+ mistralai/models/legacyjobmetadataout.py,sha256=r2ThsBXEhrNYEZxGWddc8NeL_EymoEMT1UoThRLBY6g,4493
313
314
  mistralai/models/listfilesout.py,sha256=tW2fNabLKcftc5kytkjwVaChlOzWRL4FKtNzDak9MNs,468
314
315
  mistralai/models/messageentries.py,sha256=vExZZIyOTkmEi-3Bvw2UG1GwGbGr59U_bX-biwIl0Tk,581
315
316
  mistralai/models/messageinputcontentchunks.py,sha256=3F8GoSMWv4_JIGUavlyn8aFnHC7KuPiDDbS0U3sW0y0,827
316
- mistralai/models/messageinputentry.py,sha256=Hb3R0pT8UIiZ69LJ2lxtZ1yHOwBAq4UTvdeuS6HhHJc,2653
317
+ mistralai/models/messageinputentry.py,sha256=Z7HvPYnF5Hhk01QZ4pRBvEW-DT3hP9sLSZYDr7ywxaQ,2608
317
318
  mistralai/models/messageoutputcontentchunks.py,sha256=LRvAb-Hn0XSKBBRrBdwW7CtMC_X29hzcyPKQ39WlWyo,982
318
- mistralai/models/messageoutputentry.py,sha256=Ow-V0HXFMEowBed_T09281m_ysK4Q8jvWYqAHYxVGqI,2936
319
- mistralai/models/messageoutputevent.py,sha256=64MdFYY92WOWofmRm6amp2yO6W7q-dv3uKZ1npr8ONo,2709
320
- mistralai/models/metricout.py,sha256=dXQMMU4Nk6-Zr06Jx1TWilFi6cOwiVLjSanCFn0cPxo,2034
321
- mistralai/models/modelcapabilities.py,sha256=No-Dl09zT1sG4MxsWnx4s8Yo1tUeMQ7k-HR_iQFIMFc,703
322
- mistralai/models/modelconversation.py,sha256=j8bO1HyDRHp4Dp_Bo68jA11z90CIhdt3L8DjfCscuDo,4437
319
+ mistralai/models/messageoutputentry.py,sha256=KyhPyXMm1pizXP9QQVFofOoUYOf5AvzXMb37wHVeebI,2942
320
+ mistralai/models/messageoutputevent.py,sha256=5iEtdssMYt27kgobk5SrfTaYE3BrmeDj8sCZtdhqEHg,2715
321
+ mistralai/models/metricout.py,sha256=dMSDFB4CnYIADYLDcKs3rUrDtOhyRVs8ClKr7uu5yrs,2040
322
+ mistralai/models/mistralpromptmode.py,sha256=v0UKuu6N0kcM_gjy3C7pVUWBs9tuMKtbHG6nLF9jtoI,253
323
+ mistralai/models/modelcapabilities.py,sha256=FpZZfrk7fg49y3SUinTT1kNOg9ikN6adHobzPiHmJeE,785
324
+ mistralai/models/modelconversation.py,sha256=6_QmpwiY5pfA8dtSF2ZenuAGEZTJSCRr07fe7y2JIYM,4443
323
325
  mistralai/models/modellist.py,sha256=D4Y784kQkx0ARhofFrpEqGLfxa-jTY8ev0TQMrD_n8I,995
324
326
  mistralai/models/moderationobject.py,sha256=mmzFEcccsT7G9PjmQrsYMijmICbfBtUpVN_ZisuhYbY,655
325
327
  mistralai/models/moderationresponse.py,sha256=kxIRI3UJdddj2Hz-E9q21gKQAbacxZoG4hdoZjrae5M,508
326
- mistralai/models/ocrimageobject.py,sha256=vnBLzA3p7KlpfNYMq1QJYiyA6YDpmWmL2J4SX3CIdQs,2802
328
+ mistralai/models/ocrimageobject.py,sha256=bIYt82TlTbDSavxM9UWuTmeqhha130v1CJyhUGlDHls,2808
327
329
  mistralai/models/ocrpagedimensions.py,sha256=oP4v80I8d6ZELSZt6cRoECd6uIONgdyCeeFalm-4OvM,609
328
- mistralai/models/ocrpageobject.py,sha256=s0OzcCA0cLTFYahNOr0-r4ds7WOsXYhEx-QcNLngW7M,2085
329
- mistralai/models/ocrrequest.py,sha256=leCP781cr_ruG_QFtvgn84iDa_CIGEQh-N5xpB0hld0,4242
330
- mistralai/models/ocrresponse.py,sha256=yFjiKSEtdyYkswhEW3lA51Fg2yAWk0s_tJV_QsYMxR0,2042
331
- mistralai/models/ocrusageinfo.py,sha256=cWtxHxXyJn3U1qJgG-XU-1xfC7poGHvhVtPqdrFrfII,1571
330
+ mistralai/models/ocrpageobject.py,sha256=eu24xe_wLyDlOg0cKIB6zUZTy_FkTTsc7QtxlJINaBI,2091
331
+ mistralai/models/ocrrequest.py,sha256=eCuFVSZuvR5t-2dr5Hfg3LpW_8AVlA94-8zZZ9tzVOQ,4337
332
+ mistralai/models/ocrresponse.py,sha256=Z7n6oKu7Dp6I4IlJuh_MhPcKmt0GW7FdtBtPg7060k0,2048
333
+ mistralai/models/ocrusageinfo.py,sha256=eVedgqaPwqbHaPH80RKq3ccFl-JBh-bXfBbdLEbthG4,1577
332
334
  mistralai/models/outputcontentchunks.py,sha256=x8Wn5NtHWHjbf_XGTvTOu7kCGZsx-jcrTuifXBkiLbM,954
333
335
  mistralai/models/prediction.py,sha256=BgWbbeSi1eD9Rh1xk8srXlRgD7Xooj8nLsbSQ21pNRo,718
334
336
  mistralai/models/referencechunk.py,sha256=A9vV5pZv-tUqGlswdu0HOyCYy0Q-UIJY0Oc9ZfM6XJA,519
335
337
  mistralai/models/responsedoneevent.py,sha256=NRyPmBrTsYvlblAJaXOPx1l6vA2JLN6_aoNhcBUMdCM,779
336
338
  mistralai/models/responseerrorevent.py,sha256=JUlo0JopINhAjKeWDjTBR_ZyxE4IgvZ2uD-UJovqOIk,685
337
- mistralai/models/responseformat.py,sha256=-TAPGth3_FAiNl-kuE4COI5cSP5fxQ7xewFSV989i58,2225
339
+ mistralai/models/responseformat.py,sha256=c3b40GwpVfZ4qUSyZ11-FuMpISR0WCQfuRMw-t6Rwuc,2231
338
340
  mistralai/models/responseformats.py,sha256=O9lwS2M9m53DsRxTC4uRP12SvRhgaQoMjIYsDys5A7s,503
339
341
  mistralai/models/responsestartedevent.py,sha256=1VJl_4F5yIpbrX8GwVq6vYxjDFeTf4OdYhqKpQy1r4M,686
340
342
  mistralai/models/retrieve_model_v1_models_model_id_getop.py,sha256=N9_JFwiz9tz4zRXJ9c1V0c_anFEVxVzPDoFt2Wrer4M,1388
341
- mistralai/models/retrievefileout.py,sha256=nAjSITJCHj0daChhpwOZTmps-74mmYZO4IckGA0yIvQ,2644
343
+ mistralai/models/retrievefileout.py,sha256=9bBnfQH18yiKk5sfHTz6gAZFAoi6yjhOsarz74S2XC4,2650
342
344
  mistralai/models/sampletype.py,sha256=zowUiTFxum8fltBs6j__BrFPio-dQdG0CIyLj-5icG8,316
343
345
  mistralai/models/sdkerror.py,sha256=kd75e3JYF2TXNgRZopcV-oGdBWoBZqRcvrwqn2fsFYs,528
344
346
  mistralai/models/security.py,sha256=RQn-xHLq3q4OEzrx9BcJMuT49UaCvwABXrqBEcqyKmA,686
@@ -351,35 +353,36 @@ mistralai/models/toolcall.py,sha256=T5-3XQ-CKduBKTWwOeSBuaF90yk4yBgqmyLuXVB5uXQ,
351
353
  mistralai/models/toolchoice.py,sha256=dGeb5koPp9eqHQuG1u-kP7T5Od6-cPL2rEe06-dqzcs,1021
352
354
  mistralai/models/toolchoiceenum.py,sha256=Ca4ileCwuOjfPzIXLRIxT3RkE5zR7oqV6nXU-UjW0w0,197
353
355
  mistralai/models/toolexecutiondoneevent.py,sha256=lZorvXo4lyaPXY_hLPZ5hstDu-BIjYLz2CSf_YGhbM0,920
354
- mistralai/models/toolexecutionentry.py,sha256=nRkecGyktn0o4lenznKWMQciMlY9Oacb6dYhvRF2WtE,2154
356
+ mistralai/models/toolexecutionentry.py,sha256=47gKbOJoAUo9nCztNKB4f1X6_cG3kN2ADutnFKzu1Nc,2160
355
357
  mistralai/models/toolexecutionstartedevent.py,sha256=I38g-96moe25vHbj86l9SRq_XMgY2iVdr6f0_EHb-lA,849
356
- mistralai/models/toolfilechunk.py,sha256=E3G98E1IVrxFaf9g2pantigYFw2OYSJbZLcVoSBD_EE,1797
357
- mistralai/models/toolmessage.py,sha256=zcu054y_vBaGbsCWmq58DsY8aiRrSNwzC4LJz_5kUVg,2038
358
- mistralai/models/toolreferencechunk.py,sha256=CsZ4gSAYhXDl2Eg66maRvflOAOfgy8ckU8vABClzmNw,1792
358
+ mistralai/models/toolfilechunk.py,sha256=sSDwXSC6YDBjOE8pjhst6EgZZnk_HtR6syYOpHTncIg,1803
359
+ mistralai/models/toolmessage.py,sha256=onVw1JYf-cwvN19ipk_UERppO4mmQPUGJtreCPJ3TOQ,2044
360
+ mistralai/models/toolreferencechunk.py,sha256=mmP0GcWzsJKUP71o0fyzF4JEVVZ3_EWWp65qO1faZ9s,1798
359
361
  mistralai/models/tooltypes.py,sha256=NcvRsZA_ORf4WY_gn6WjgX6eEXmR2faVG3Q1sLlzdG8,244
360
362
  mistralai/models/trainingfile.py,sha256=IlwKP2GL8gL0VHVJ_zUDV-Q0F7obdLzMMRDDJatSjwo,400
361
363
  mistralai/models/unarchiveftmodelout.py,sha256=IY0oHKupATBYjAn7Xz1AVqyoSeap1l4nnWeMsLTK7yI,576
362
- mistralai/models/updateftmodelin.py,sha256=Slabh0wwDFP8bzXWFqDzGoLh3KPnOAEyc7vttabSqX8,1466
363
- mistralai/models/uploadfileout.py,sha256=q05j3XeaoF-AHqIshXJ73dUL5zOMxxQAF-w-u2tmVNU,2603
364
+ mistralai/models/updateftmodelin.py,sha256=MyiLZb5VUmd3TGINQrjnpGfUFel7wLZYBu1ILGrxo7E,1472
365
+ mistralai/models/uploadfileout.py,sha256=5nKsa1azQX5oxTKbvIZemDqRgv6lZDiSS4OFe0tRYhI,2609
364
366
  mistralai/models/usageinfo.py,sha256=66AzKK8cOFft498eUOUx6C_mCFAt5LmIFrYthJfLWpU,401
365
- mistralai/models/usermessage.py,sha256=kjS5HudMsaRNfeUhFFBCyY8l-umlHvGk8wvTIq6-qzY,1793
367
+ mistralai/models/usermessage.py,sha256=DLsGSy9LdyE8zkxx3EXooQAqrM4FYRNGhcL_AFItnVI,1799
366
368
  mistralai/models/validationerror.py,sha256=DouDBJmBhbW4KPsF5rZEyBdnB_adC-l32kuHC0bvO2I,526
367
- mistralai/models/wandbintegration.py,sha256=X8V86L3EwheoI-0LI7zwmTtn_4SKz5s62SJN3x5BTxE,2153
368
- mistralai/models/wandbintegrationout.py,sha256=wohSfHGF8Y9OfIhM1qr9mssLRg63b3CMLDpi4TQKYEk,2111
369
+ mistralai/models/wandbintegration.py,sha256=PbDvTC7hrS8u3mkYQlvzCFilDZdTtkCrKWlXb-9R9Ag,2159
370
+ mistralai/models/wandbintegrationout.py,sha256=nDVAi7dismF5ktEBaEM8A8QsAtOVR0ReblTxF0_VWtg,2117
369
371
  mistralai/models/websearchpremiumtool.py,sha256=wU3_oOKRWFLOXrZ-SrqAnGC7kb5uaSjLaTfUthuFoLY,502
370
372
  mistralai/models/websearchtool.py,sha256=qpzzCo_nJunxRHlkwJE3vuEd-qPA_cW1X55qEXw3_KY,451
371
- mistralai/models_.py,sha256=2tiJEMwjixY0Rz5dDt4gDQNEu9peecly2zWmi7YeQhQ,46398
372
- mistralai/ocr.py,sha256=GvG5SMy85s3xUTGLSnQ3h9GkNYw9KBy8umBnkC9Ciho,11991
373
+ mistralai/models_.py,sha256=9An0wbEEX_aAmcHONd9j8TEoq8wBss5qiAs79u-Z9hQ,46974
374
+ mistralai/ocr.py,sha256=OSooZTdeLoWIVEk3Uv4N7lj_Ud9hybMu7WJsaoMcYw8,12085
373
375
  mistralai/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
374
- mistralai/sdk.py,sha256=MjwSZrvLovNWA2-RUQkD4ughBkrTMzlG7qR0vCDV8Ac,6549
375
- mistralai/sdkconfiguration.py,sha256=88GOgda6cRq40OSFI5FIarLvGNrMaHTzinPI_GyqTvk,1873
376
+ mistralai/sdk.py,sha256=op42fb-5kIGhJ9PQcPVgND1Rhf-s-8bbf9MYt7fVkGU,7709
377
+ mistralai/sdkconfiguration.py,sha256=8BDzcYQqDIM7pXsdsfmEZPUexeqdsL-8HMyhWiQeupE,1716
376
378
  mistralai/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
377
- mistralai/types/basemodel.py,sha256=PexI39iKiOkIlobB8Ueo0yn8PLHp6_wb-WO-zelNDZY,1170
378
- mistralai/utils/__init__.py,sha256=A7_RAc6uLoQYKGunLRFg8cTYYvM4WgoM7Da50PYZOoU,2456
379
+ mistralai/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
380
+ mistralai/utils/__init__.py,sha256=BQt6xIdX86A6mOHAnxAXBXaPgdUJtDy2-_4ymAsII_Y,5436
379
381
  mistralai/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
380
- mistralai/utils/enums.py,sha256=VzjeslROrAr2luZOTJlvu-4UlxgTaGOKlRYtJJ7IfyY,1006
382
+ mistralai/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
383
+ mistralai/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
381
384
  mistralai/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
382
- mistralai/utils/forms.py,sha256=YSSijXrsM2nfrRHlPQejh1uRRKfoILomHL3d9xpJiy8,6058
385
+ mistralai/utils/forms.py,sha256=EJdnrfIkuwpDtekyHutla0HjI_FypTYcmYNyPKEu_W0,6874
383
386
  mistralai/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
384
387
  mistralai/utils/logger.py,sha256=TOF0Mqsua4GlsDhmrZz9hgMRvwd9zK7ytuqly3Vevxo,675
385
388
  mistralai/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
@@ -387,11 +390,11 @@ mistralai/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEt
387
390
  mistralai/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
388
391
  mistralai/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
389
392
  mistralai/utils/security.py,sha256=vWlpkikOnGN_HRRhJ7Pb8ywVAjiM3d3ey3oTWtM6jTU,6008
390
- mistralai/utils/serializers.py,sha256=EGH40Pgp3sSK9uM4PxL7_SYzSHtmo-Uy6QIE5xLVg68,5198
393
+ mistralai/utils/serializers.py,sha256=hiHBXM1AY8_N2Z_rvFfNSYwvLBkSQlPGFp8poasdU4s,5986
391
394
  mistralai/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
392
395
  mistralai/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
393
396
  mistralai/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
394
- mistralai-1.8.1.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
395
- mistralai-1.8.1.dist-info/METADATA,sha256=zvxBN6ahY13VTUqmneFHFNXCrEK7Fl5nlhKFGkj_PKw,33379
396
- mistralai-1.8.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
397
- mistralai-1.8.1.dist-info/RECORD,,
397
+ mistralai-1.9.1.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
398
+ mistralai-1.9.1.dist-info/METADATA,sha256=KWzyqeGFxfYA2NclcNoZgjfjRNyfDGgPxAZFPJzASxI,33606
399
+ mistralai-1.9.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
400
+ mistralai-1.9.1.dist-info/RECORD,,