mistralai 1.6.0__py3-none-any.whl → 1.7.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 (58) hide show
  1. mistralai/_version.py +3 -3
  2. mistralai/classifiers.py +431 -19
  3. mistralai/embeddings.py +6 -2
  4. mistralai/extra/utils/_pydantic_helper.py +2 -1
  5. mistralai/jobs.py +84 -38
  6. mistralai/mistral_jobs.py +2 -2
  7. mistralai/models/__init__.py +197 -46
  8. mistralai/models/archiveftmodelout.py +3 -11
  9. mistralai/models/batchjobout.py +3 -9
  10. mistralai/models/batchjobsout.py +3 -9
  11. mistralai/models/chatclassificationrequest.py +20 -0
  12. mistralai/models/chatmoderationrequest.py +4 -7
  13. mistralai/models/classificationresponse.py +12 -9
  14. mistralai/models/classificationtargetresult.py +14 -0
  15. mistralai/models/classifierdetailedjobout.py +156 -0
  16. mistralai/models/classifierftmodelout.py +101 -0
  17. mistralai/models/classifierjobout.py +165 -0
  18. mistralai/models/classifiertargetin.py +55 -0
  19. mistralai/models/classifiertargetout.py +24 -0
  20. mistralai/models/classifiertrainingparameters.py +73 -0
  21. mistralai/models/classifiertrainingparametersin.py +85 -0
  22. mistralai/models/{detailedjobout.py → completiondetailedjobout.py} +34 -34
  23. mistralai/models/{ftmodelout.py → completionftmodelout.py} +12 -12
  24. mistralai/models/{jobout.py → completionjobout.py} +25 -24
  25. mistralai/models/{trainingparameters.py → completiontrainingparameters.py} +7 -7
  26. mistralai/models/{trainingparametersin.py → completiontrainingparametersin.py} +7 -7
  27. mistralai/models/embeddingrequest.py +6 -4
  28. mistralai/models/finetuneablemodeltype.py +7 -0
  29. mistralai/models/ftclassifierlossfunction.py +7 -0
  30. mistralai/models/ftmodelcapabilitiesout.py +3 -0
  31. mistralai/models/githubrepositoryin.py +3 -11
  32. mistralai/models/githubrepositoryout.py +3 -11
  33. mistralai/models/inputs.py +54 -0
  34. mistralai/models/instructrequest.py +42 -0
  35. mistralai/models/jobin.py +52 -12
  36. mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py +3 -3
  37. mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py +29 -2
  38. mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py +21 -4
  39. mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py +29 -2
  40. mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +8 -0
  41. mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py +29 -2
  42. mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py +28 -2
  43. mistralai/models/jobsout.py +24 -13
  44. mistralai/models/legacyjobmetadataout.py +3 -12
  45. mistralai/models/{classificationobject.py → moderationobject.py} +6 -6
  46. mistralai/models/moderationresponse.py +21 -0
  47. mistralai/models/ocrimageobject.py +7 -1
  48. mistralai/models/ocrrequest.py +15 -0
  49. mistralai/models/ocrresponse.py +38 -2
  50. mistralai/models/unarchiveftmodelout.py +3 -11
  51. mistralai/models/wandbintegration.py +3 -11
  52. mistralai/models/wandbintegrationout.py +8 -13
  53. mistralai/models_.py +10 -4
  54. mistralai/ocr.py +28 -0
  55. {mistralai-1.6.0.dist-info → mistralai-1.7.1.dist-info}/METADATA +3 -1
  56. {mistralai-1.6.0.dist-info → mistralai-1.7.1.dist-info}/RECORD +58 -44
  57. {mistralai-1.6.0.dist-info → mistralai-1.7.1.dist-info}/WHEEL +1 -1
  58. {mistralai-1.6.0.dist-info → mistralai-1.7.1.dist-info}/LICENSE +0 -0
@@ -3,9 +3,10 @@
3
3
  from __future__ import annotations
4
4
  from .ocrpageobject import OCRPageObject, OCRPageObjectTypedDict
5
5
  from .ocrusageinfo import OCRUsageInfo, OCRUsageInfoTypedDict
6
- from mistralai.types import BaseModel
6
+ from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
7
+ from pydantic import model_serializer
7
8
  from typing import List
8
- from typing_extensions import TypedDict
9
+ from typing_extensions import NotRequired, TypedDict
9
10
 
10
11
 
11
12
  class OCRResponseTypedDict(TypedDict):
@@ -14,6 +15,8 @@ class OCRResponseTypedDict(TypedDict):
14
15
  model: str
15
16
  r"""The model used to generate the OCR."""
16
17
  usage_info: OCRUsageInfoTypedDict
18
+ document_annotation: NotRequired[Nullable[str]]
19
+ r"""Formatted response in the request_format if provided in json str"""
17
20
 
18
21
 
19
22
  class OCRResponse(BaseModel):
@@ -24,3 +27,36 @@ class OCRResponse(BaseModel):
24
27
  r"""The model used to generate the OCR."""
25
28
 
26
29
  usage_info: OCRUsageInfo
30
+
31
+ document_annotation: OptionalNullable[str] = UNSET
32
+ r"""Formatted response in the request_format if provided in json str"""
33
+
34
+ @model_serializer(mode="wrap")
35
+ def serialize_model(self, handler):
36
+ optional_fields = ["document_annotation"]
37
+ nullable_fields = ["document_annotation"]
38
+ null_default_fields = []
39
+
40
+ serialized = handler(self)
41
+
42
+ m = {}
43
+
44
+ for n, f in self.model_fields.items():
45
+ k = f.alias or n
46
+ val = serialized.get(k)
47
+ serialized.pop(k, None)
48
+
49
+ optional_nullable = k in optional_fields and k in nullable_fields
50
+ is_set = (
51
+ self.__pydantic_fields_set__.intersection({n})
52
+ or k in null_default_fields
53
+ ) # pylint: disable=no-member
54
+
55
+ if val is not None and val != UNSET_SENTINEL:
56
+ m[k] = val
57
+ elif val != UNSET_SENTINEL and (
58
+ not k in optional_fields or (optional_nullable and is_set)
59
+ ):
60
+ m[k] = val
61
+
62
+ return m
@@ -2,11 +2,8 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from mistralai.types import BaseModel
5
- from mistralai.utils import validate_const
6
- import pydantic
7
- from pydantic.functional_validators import AfterValidator
8
5
  from typing import Literal, Optional
9
- from typing_extensions import Annotated, NotRequired, TypedDict
6
+ from typing_extensions import NotRequired, TypedDict
10
7
 
11
8
 
12
9
  UnarchiveFTModelOutObject = Literal["model"]
@@ -14,18 +11,13 @@ UnarchiveFTModelOutObject = Literal["model"]
14
11
 
15
12
  class UnarchiveFTModelOutTypedDict(TypedDict):
16
13
  id: str
17
- object: UnarchiveFTModelOutObject
14
+ object: NotRequired[UnarchiveFTModelOutObject]
18
15
  archived: NotRequired[bool]
19
16
 
20
17
 
21
18
  class UnarchiveFTModelOut(BaseModel):
22
19
  id: str
23
20
 
24
- OBJECT: Annotated[
25
- Annotated[
26
- Optional[UnarchiveFTModelOutObject], AfterValidator(validate_const("model"))
27
- ],
28
- pydantic.Field(alias="object"),
29
- ] = "model"
21
+ object: Optional[UnarchiveFTModelOutObject] = "model"
30
22
 
31
23
  archived: Optional[bool] = False
@@ -2,12 +2,9 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
5
- from mistralai.utils import validate_const
6
- import pydantic
7
5
  from pydantic import model_serializer
8
- from pydantic.functional_validators import AfterValidator
9
6
  from typing import Literal, Optional
10
- from typing_extensions import Annotated, NotRequired, TypedDict
7
+ from typing_extensions import NotRequired, TypedDict
11
8
 
12
9
 
13
10
  WandbIntegrationType = Literal["wandb"]
@@ -18,7 +15,7 @@ class WandbIntegrationTypedDict(TypedDict):
18
15
  r"""The name of the project that the new run will be created under."""
19
16
  api_key: str
20
17
  r"""The WandB API key to use for authentication."""
21
- type: WandbIntegrationType
18
+ type: NotRequired[WandbIntegrationType]
22
19
  name: NotRequired[Nullable[str]]
23
20
  r"""A display name to set for the run. If not set, will use the job ID as the name."""
24
21
  run_name: NotRequired[Nullable[str]]
@@ -31,12 +28,7 @@ class WandbIntegration(BaseModel):
31
28
  api_key: str
32
29
  r"""The WandB API key to use for authentication."""
33
30
 
34
- TYPE: Annotated[
35
- Annotated[
36
- Optional[WandbIntegrationType], AfterValidator(validate_const("wandb"))
37
- ],
38
- pydantic.Field(alias="type"),
39
- ] = "wandb"
31
+ type: Optional[WandbIntegrationType] = "wandb"
40
32
 
41
33
  name: OptionalNullable[str] = UNSET
42
34
  r"""A display name to set for the run. If not set, will use the job ID as the name."""
@@ -2,12 +2,9 @@
2
2
 
3
3
  from __future__ import annotations
4
4
  from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
5
- from mistralai.utils import validate_const
6
- import pydantic
7
5
  from pydantic import model_serializer
8
- from pydantic.functional_validators import AfterValidator
9
6
  from typing import Literal, Optional
10
- from typing_extensions import Annotated, NotRequired, TypedDict
7
+ from typing_extensions import NotRequired, TypedDict
11
8
 
12
9
 
13
10
  WandbIntegrationOutType = Literal["wandb"]
@@ -16,32 +13,30 @@ WandbIntegrationOutType = Literal["wandb"]
16
13
  class WandbIntegrationOutTypedDict(TypedDict):
17
14
  project: str
18
15
  r"""The name of the project that the new run will be created under."""
19
- type: WandbIntegrationOutType
16
+ type: NotRequired[WandbIntegrationOutType]
20
17
  name: NotRequired[Nullable[str]]
21
18
  r"""A display name to set for the run. If not set, will use the job ID as the name."""
22
19
  run_name: NotRequired[Nullable[str]]
20
+ url: NotRequired[Nullable[str]]
23
21
 
24
22
 
25
23
  class WandbIntegrationOut(BaseModel):
26
24
  project: str
27
25
  r"""The name of the project that the new run will be created under."""
28
26
 
29
- TYPE: Annotated[
30
- Annotated[
31
- Optional[WandbIntegrationOutType], AfterValidator(validate_const("wandb"))
32
- ],
33
- pydantic.Field(alias="type"),
34
- ] = "wandb"
27
+ type: Optional[WandbIntegrationOutType] = "wandb"
35
28
 
36
29
  name: OptionalNullable[str] = UNSET
37
30
  r"""A display name to set for the run. If not set, will use the job ID as the name."""
38
31
 
39
32
  run_name: OptionalNullable[str] = UNSET
40
33
 
34
+ url: OptionalNullable[str] = UNSET
35
+
41
36
  @model_serializer(mode="wrap")
42
37
  def serialize_model(self, handler):
43
- optional_fields = ["type", "name", "run_name"]
44
- nullable_fields = ["name", "run_name"]
38
+ optional_fields = ["type", "name", "run_name", "url"]
39
+ nullable_fields = ["name", "run_name", "url"]
45
40
  null_default_fields = []
46
41
 
47
42
  serialized = handler(self)
mistralai/models_.py CHANGED
@@ -607,7 +607,7 @@ class Models(BaseSDK):
607
607
  server_url: Optional[str] = None,
608
608
  timeout_ms: Optional[int] = None,
609
609
  http_headers: Optional[Mapping[str, str]] = None,
610
- ) -> models.FTModelOut:
610
+ ) -> models.JobsAPIRoutesFineTuningUpdateFineTunedModelResponse:
611
611
  r"""Update Fine Tuned Model
612
612
 
613
613
  Update a model name or description.
@@ -680,7 +680,10 @@ class Models(BaseSDK):
680
680
  )
681
681
 
682
682
  if utils.match_response(http_res, "200", "application/json"):
683
- return utils.unmarshal_json(http_res.text, models.FTModelOut)
683
+ return utils.unmarshal_json(
684
+ http_res.text,
685
+ models.JobsAPIRoutesFineTuningUpdateFineTunedModelResponse,
686
+ )
684
687
  if utils.match_response(http_res, "4XX", "*"):
685
688
  http_res_text = utils.stream_to_text(http_res)
686
689
  raise models.SDKError(
@@ -711,7 +714,7 @@ class Models(BaseSDK):
711
714
  server_url: Optional[str] = None,
712
715
  timeout_ms: Optional[int] = None,
713
716
  http_headers: Optional[Mapping[str, str]] = None,
714
- ) -> models.FTModelOut:
717
+ ) -> models.JobsAPIRoutesFineTuningUpdateFineTunedModelResponse:
715
718
  r"""Update Fine Tuned Model
716
719
 
717
720
  Update a model name or description.
@@ -784,7 +787,10 @@ class Models(BaseSDK):
784
787
  )
785
788
 
786
789
  if utils.match_response(http_res, "200", "application/json"):
787
- return utils.unmarshal_json(http_res.text, models.FTModelOut)
790
+ return utils.unmarshal_json(
791
+ http_res.text,
792
+ models.JobsAPIRoutesFineTuningUpdateFineTunedModelResponse,
793
+ )
788
794
  if utils.match_response(http_res, "4XX", "*"):
789
795
  http_res_text = await utils.stream_to_text_async(http_res)
790
796
  raise models.SDKError(
mistralai/ocr.py CHANGED
@@ -21,6 +21,12 @@ class Ocr(BaseSDK):
21
21
  include_image_base64: OptionalNullable[bool] = UNSET,
22
22
  image_limit: OptionalNullable[int] = UNSET,
23
23
  image_min_size: OptionalNullable[int] = UNSET,
24
+ bbox_annotation_format: OptionalNullable[
25
+ Union[models.ResponseFormat, models.ResponseFormatTypedDict]
26
+ ] = UNSET,
27
+ document_annotation_format: OptionalNullable[
28
+ Union[models.ResponseFormat, models.ResponseFormatTypedDict]
29
+ ] = UNSET,
24
30
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
25
31
  server_url: Optional[str] = None,
26
32
  timeout_ms: Optional[int] = None,
@@ -35,6 +41,8 @@ class Ocr(BaseSDK):
35
41
  :param include_image_base64: Include image URLs in response
36
42
  :param image_limit: Max images to extract
37
43
  :param image_min_size: Minimum height and width of image to extract
44
+ :param bbox_annotation_format: Structured output class for extracting useful information from each extracted bounding box / image from document. Only json_schema is valid for this field
45
+ :param document_annotation_format: Structured output class for extracting useful information from the entire document. Only json_schema is valid for this field
38
46
  :param retries: Override the default retry configuration for this method
39
47
  :param server_url: Override the default server URL for this method
40
48
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -58,6 +66,12 @@ class Ocr(BaseSDK):
58
66
  include_image_base64=include_image_base64,
59
67
  image_limit=image_limit,
60
68
  image_min_size=image_min_size,
69
+ bbox_annotation_format=utils.get_pydantic_model(
70
+ bbox_annotation_format, OptionalNullable[models.ResponseFormat]
71
+ ),
72
+ document_annotation_format=utils.get_pydantic_model(
73
+ document_annotation_format, OptionalNullable[models.ResponseFormat]
74
+ ),
61
75
  )
62
76
 
63
77
  req = self._build_request(
@@ -139,6 +153,12 @@ class Ocr(BaseSDK):
139
153
  include_image_base64: OptionalNullable[bool] = UNSET,
140
154
  image_limit: OptionalNullable[int] = UNSET,
141
155
  image_min_size: OptionalNullable[int] = UNSET,
156
+ bbox_annotation_format: OptionalNullable[
157
+ Union[models.ResponseFormat, models.ResponseFormatTypedDict]
158
+ ] = UNSET,
159
+ document_annotation_format: OptionalNullable[
160
+ Union[models.ResponseFormat, models.ResponseFormatTypedDict]
161
+ ] = UNSET,
142
162
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
143
163
  server_url: Optional[str] = None,
144
164
  timeout_ms: Optional[int] = None,
@@ -153,6 +173,8 @@ class Ocr(BaseSDK):
153
173
  :param include_image_base64: Include image URLs in response
154
174
  :param image_limit: Max images to extract
155
175
  :param image_min_size: Minimum height and width of image to extract
176
+ :param bbox_annotation_format: Structured output class for extracting useful information from each extracted bounding box / image from document. Only json_schema is valid for this field
177
+ :param document_annotation_format: Structured output class for extracting useful information from the entire document. Only json_schema is valid for this field
156
178
  :param retries: Override the default retry configuration for this method
157
179
  :param server_url: Override the default server URL for this method
158
180
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -176,6 +198,12 @@ class Ocr(BaseSDK):
176
198
  include_image_base64=include_image_base64,
177
199
  image_limit=image_limit,
178
200
  image_min_size=image_min_size,
201
+ bbox_annotation_format=utils.get_pydantic_model(
202
+ bbox_annotation_format, OptionalNullable[models.ResponseFormat]
203
+ ),
204
+ document_annotation_format=utils.get_pydantic_model(
205
+ document_annotation_format, OptionalNullable[models.ResponseFormat]
206
+ ),
179
207
  )
180
208
 
181
209
  req = self._build_request_async(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mistralai
3
- Version: 1.6.0
3
+ Version: 1.7.1
4
4
  Summary: Python Client SDK for the Mistral AI API.
5
5
  Author: Mistral
6
6
  Requires-Python: >=3.9
@@ -464,6 +464,8 @@ The documentation for the GCP SDK is available [here](https://github.com/mistral
464
464
 
465
465
  * [moderate](https://github.com/mistralai/client-python/blob/master/docs/sdks/classifiers/README.md#moderate) - Moderations
466
466
  * [moderate_chat](https://github.com/mistralai/client-python/blob/master/docs/sdks/classifiers/README.md#moderate_chat) - Chat Moderations
467
+ * [classify](https://github.com/mistralai/client-python/blob/master/docs/sdks/classifiers/README.md#classify) - Classifications
468
+ * [classify_chat](https://github.com/mistralai/client-python/blob/master/docs/sdks/classifiers/README.md#classify_chat) - Chat Classifications
467
469
 
468
470
  ### [embeddings](https://github.com/mistralai/client-python/blob/master/docs/sdks/embeddings/README.md)
469
471
 
@@ -139,15 +139,15 @@ mistralai/_hooks/deprecation_warning.py,sha256=eyEOf7-o9uqqNWJnufD2RXp3dYrGV4in9
139
139
  mistralai/_hooks/registration.py,sha256=ML0W-XbE4WYdJ4eGks_XxF2aLCJTaIWjQATFGzFwvyU,861
140
140
  mistralai/_hooks/sdkhooks.py,sha256=s-orhdvnV89TmI3QiPC2LWQtYeM9RrsG1CTll-fYZmQ,2559
141
141
  mistralai/_hooks/types.py,sha256=z3AUFDpRJHj2m3h5PklvUeEcGohY0cfph4jL6-nGIzs,2812
142
- mistralai/_version.py,sha256=eFkb-GJRzmbd4tr1xl66OXRTR1qnI6sLGg_C5o8P-DY,460
142
+ mistralai/_version.py,sha256=SPvJqmP-liALw_gV7djYQ0NmHgy9bNFtTsm0WPhGtQM,460
143
143
  mistralai/agents.py,sha256=o_apyuwiDzxv-U252T84ynAHCb5fn1q7MMXqrZ4oHLo,32652
144
144
  mistralai/async_client.py,sha256=KUdYxIIqoD6L7vB0EGwUR6lQ0NK5iCTHjnLVR9CVcJY,355
145
145
  mistralai/basesdk.py,sha256=GsU5bp8O5fBCl34tKxaYmeYSIIM971eAPeFBBC_BpFo,12191
146
146
  mistralai/batch.py,sha256=YN4D0Duwrap9Ysmp_lRpADYp1Znay7THE_z8ERGvDds,501
147
147
  mistralai/chat.py,sha256=1XVVVvDi726bq6HXCur6-dsmFfzQAEpEWbKT_3sTZ4A,40549
148
- mistralai/classifiers.py,sha256=zVJreCGyw_F2-9p8uyYbxlQA5RFZ0pvE690Holw5SDk,17504
148
+ mistralai/classifiers.py,sha256=Cbrb6X_eq3-Yz5ZhWkOsFDTGbo3hkgh-vtIEQmU_UdI,33776
149
149
  mistralai/client.py,sha256=hrPg-LciKMKiascF0WbRRmqQyCv1lb2yDh6j-aaKVNo,509
150
- mistralai/embeddings.py,sha256=5tTfvz5g9QYqEYPp785bPm88HvsJC9Ha_NcEuOKfiww,8536
150
+ mistralai/embeddings.py,sha256=Tq5ZEo6CR0ktQCdxX7mhLy5CfzI5c8mtkuadIVtsWgM,8644
151
151
  mistralai/extra/README.md,sha256=BTS9fy0ijkiUP7ZVoFQ7FVBxHtXIXqucYZyy_ucFjo4,1739
152
152
  mistralai/extra/__init__.py,sha256=MHf0pUgLc9Sb7eTUE31JlE2FKMxfQupmJ_iR8UkgQ9w,360
153
153
  mistralai/extra/struct_chat.py,sha256=ZkpdExC5rgC-nBZ44hQIVhQmK6lYMk36RBSFPZMFaIg,2157
@@ -155,46 +155,58 @@ mistralai/extra/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
155
155
  mistralai/extra/tests/test_struct_chat.py,sha256=WT6GGfcbXCok8UkEny19u4q1g2QOgkekvmAb3ZinQZ8,4343
156
156
  mistralai/extra/tests/test_utils.py,sha256=VesGDR_IiE6u0iY7yOi1iERd7esdJgi2aL4xZp0vKVI,5113
157
157
  mistralai/extra/utils/__init__.py,sha256=SExo5t_hx0ybiQhVJIG3r3hOA-Pfny3lIO_WsqNXlN8,116
158
- mistralai/extra/utils/_pydantic_helper.py,sha256=kU_HbsSl1qGXnrrHnBcxun2MtHowu8eBp3jYMyFsPWw,859
158
+ mistralai/extra/utils/_pydantic_helper.py,sha256=_mzrbZGU07M96CzcxgjcV25NtIGu5EUfotaN8NDUoFc,883
159
159
  mistralai/extra/utils/response_format.py,sha256=uDNpvOHhk2se3JTXweWYMbnkyOcOqhMe2yxZ2lYNe1k,913
160
160
  mistralai/files.py,sha256=uejTIBoumK7wMp51e9F2TZsiRDXX9NRnBGgMuaM21eg,45763
161
161
  mistralai/fim.py,sha256=UMx-bFYbaSyANZug8VrCabHsqePdiHoYQO1YMKB2MvY,27935
162
162
  mistralai/fine_tuning.py,sha256=UENQqfE054VEsAYxdruV-TBLFIFfO-joXNznH08GUvE,477
163
163
  mistralai/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
164
- mistralai/jobs.py,sha256=WmyPoGpvCV0QSbxM6PGE1qs_b2t44wn6yoM7eL1GJD8,44651
165
- mistralai/mistral_jobs.py,sha256=NdlPFopM1YzsLqHciZilF2D5Lsezqk4TviYR_mpNZUA,31102
166
- mistralai/models/__init__.py,sha256=vkNm0A_E435ipGQcXBZ2K_WhEi7nEVjVQPR3SdLvJ28,22838
164
+ mistralai/jobs.py,sha256=1DZE14ad348Vg82VHhLRyXhu7SIh8_KgWXc_jP2oFIA,46767
165
+ mistralai/mistral_jobs.py,sha256=EQHFFxFkkx6XvPX-9S8TRZvVSOLUL7z91cg56J8pskQ,31114
166
+ mistralai/models/__init__.py,sha256=qKlkiNiwGbJRwM-MQ-7rWrJTgve2zCRbgBoC_XkxMK8,28169
167
167
  mistralai/models/agentscompletionrequest.py,sha256=gyGoh1KsCGbOpfmaqk9d_hf1CYhWIriH4vaeQoEDfzU,7920
168
168
  mistralai/models/agentscompletionstreamrequest.py,sha256=ZI4iFtl6qDJZ5QTIZ7vDIyFQ9n9rqVqN6tJQAdjpQjA,7365
169
169
  mistralai/models/apiendpoint.py,sha256=Hvar5leWsJR_FYb0UzRlSw3vRdBZhk_6BR5r2pIb214,400
170
- mistralai/models/archiveftmodelout.py,sha256=dQx1J91UA06pjk2r7okhKMyBBePmHal7SPpn6Y_wEsY,820
170
+ mistralai/models/archiveftmodelout.py,sha256=VdppiqIB9JGNB2B0-Y6XQfQgDmB-hOa1Bta3v_StbLs,565
171
171
  mistralai/models/assistantmessage.py,sha256=pmOhSINRB8sJ11lNtfKEL0k6-JnTEJ7cjlWW9D0pIMM,2624
172
172
  mistralai/models/basemodelcard.py,sha256=nv-xjoZFCuIdjKBl98dVH5puT7qh0AC2MaE7WTsMxfs,2985
173
173
  mistralai/models/batcherror.py,sha256=tThkO9B-g-6eDSBCm1Emd-zDI4B3mk2vAl0L1MI3pdQ,390
174
174
  mistralai/models/batchjobin.py,sha256=1GDaaHJeGVo71F4HVZkTdX92bmr3DieNB0ZuHFzBIeE,1850
175
- mistralai/models/batchjobout.py,sha256=AXFSgDFGY_1LFVHtVdp66y08DUZCxsZtZ_NzTAJYDWM,3067
176
- mistralai/models/batchjobsout.py,sha256=Tq6bcb4_-fcW8C9AOnfJN8_sTy1NQhDn82qFOKdFPcg,868
175
+ mistralai/models/batchjobout.py,sha256=LYtHa6WTsDGWUdQfdWll7W6JZ0b1F7osF9ic6ljJpVI,2834
176
+ mistralai/models/batchjobsout.py,sha256=8ZpO0Lxuygz_4p5cemhJo7ks9YsTmio0EaHvrjyr0Jc,636
177
177
  mistralai/models/batchjobstatus.py,sha256=WlrIl5vWQGfLmgQA91_9CnCMKhWN6Lli458fT-4Asj4,294
178
+ mistralai/models/chatclassificationrequest.py,sha256=PmU036oOlGqfd75hNESDUJiN4uJNYguACoCt6CzBC2M,534
178
179
  mistralai/models/chatcompletionchoice.py,sha256=6iIFLZj2KYx0HFfzS3-E3sNXG6mPEAlDyXxIA5iZI_U,849
179
180
  mistralai/models/chatcompletionrequest.py,sha256=6Innwpi7UnKmyauATOJForAVvW0tkSnbjsiQOOp5OKg,9777
180
181
  mistralai/models/chatcompletionresponse.py,sha256=sLE-_Bx9W5rH2-HE2fBWPVbJbmBWx_jSY2mJ3KBEn6w,792
181
182
  mistralai/models/chatcompletionstreamrequest.py,sha256=0NFa_nMMRmHU66Hsgu1Zm4fggT0AzvW_imrkyZ4sUxc,9465
182
- mistralai/models/chatmoderationrequest.py,sha256=LX-dhlYxecEzChSTt4jo4DA8lC4DEp5brgaiksTGF-o,2367
183
+ mistralai/models/chatmoderationrequest.py,sha256=x1eAoxx_GhaxqGRe4wsqNaUi59K39HQakkedLJVUVD8,2236
183
184
  mistralai/models/checkpointout.py,sha256=A2kXS8-VT_1lbg3brifVjZD6tXdsET8vLqBm2a-yXgA,1109
184
- mistralai/models/classificationobject.py,sha256=JqaKo3AQD4t5X12ZnHjJ6K3Y6LXUn94uGdLJSoGr8vY,665
185
185
  mistralai/models/classificationrequest.py,sha256=FqQfSrGYwLUjVw78Ft7tbmhAkUN0FqolCn4MNArOuR8,922
186
- mistralai/models/classificationresponse.py,sha256=TeBV7mH0nvLswPdLhv4ZaDTsXvuVYJqSe5Uci7qVSMA,649
186
+ mistralai/models/classificationresponse.py,sha256=tiQzQnqDr34oFJnMmbI_wleKqAGHdn3W6iFyL0cZ-uY,607
187
+ mistralai/models/classificationtargetresult.py,sha256=EOJeumiN8JsB_85MxOgeo6c9-Upal3yfPrQjNkI0YjA,371
188
+ mistralai/models/classifierdetailedjobout.py,sha256=6hdvuu3W9QelAcyEeDNWCZSYPVI1tM1H37sYRwrZaZA,4802
189
+ mistralai/models/classifierftmodelout.py,sha256=onQ-OuqpGo1K7p66Et7yr4lJU6t9jfWcHcMjo9naa0M,2752
190
+ mistralai/models/classifierjobout.py,sha256=2WPRQzERIjT3thedZ0ag-CMs7GyaMIgMY9xrBlFO2zw,5997
191
+ mistralai/models/classifiertargetin.py,sha256=gmJdDRojg5um4SAzfTlzRe-X6Aliq084cfCq1BXcSBU,1673
192
+ mistralai/models/classifiertargetout.py,sha256=WK94y6c1EsxcC7bCnUFus0ljxHQ4Q-b4eudswKpOrmU,561
193
+ mistralai/models/classifiertrainingparameters.py,sha256=_UmhfQAALRjhUJIMrKlz2kRmOEVhui_tjzCy_R50qHo,2176
194
+ mistralai/models/classifiertrainingparametersin.py,sha256=k1SSzy6S3BdY7oX2JqhY9nc9aX7vI8QXEpMFw63b218,4456
187
195
  mistralai/models/completionchunk.py,sha256=Cdq-FBWa1oBhrxapoOAj8qr6xmkeIPsfPQSbjeK6NLY,871
196
+ mistralai/models/completiondetailedjobout.py,sha256=qbUrYfpgNXt7g5s91aB5k07gcUlo8J7OPHivBvWeUVw,5021
188
197
  mistralai/models/completionevent.py,sha256=rFc5dJBRnNOzspI95Jhkjd9WyM476u48cN0T1Vh-Cxw,399
198
+ mistralai/models/completionftmodelout.py,sha256=vosnNC1lqatAMBxCSnu6Xmuku0dfIcP487G_XvLFGdk,2499
199
+ mistralai/models/completionjobout.py,sha256=o5WF8D2Hg8IpXBbaT_I6yE4LNVS_eJHvWOBBJyqmBhw,6105
189
200
  mistralai/models/completionresponsestreamchoice.py,sha256=gw5-_iOyznuimumDtBV65E3zwUW0KH1OHP55dGCAsAA,1927
201
+ mistralai/models/completiontrainingparameters.py,sha256=psrP9mBbjc0JeaYJV53FqIAmoFu6h-tw5Wa3_8a5RPc,2318
202
+ mistralai/models/completiontrainingparametersin.py,sha256=OlQ95h2ZBlQbtwbZlWrnrNFMYDfbdEcTPvZHB1eQvf4,4576
190
203
  mistralai/models/contentchunk.py,sha256=V8-d2u9ReICA6uXZwJTUXu88VfKRIAsLRO6o113Mcw8,1073
191
204
  mistralai/models/delete_model_v1_models_model_id_deleteop.py,sha256=lnVRFX-G0jkn1dCFC89sXY2Pj_w4QfMDeF1tPjS4hWE,602
192
205
  mistralai/models/deletefileout.py,sha256=s3a-H2RgFQ9HX0kYSmP6GwmwE1jghz7dBj-3G0NBVSY,587
193
206
  mistralai/models/deletemodelout.py,sha256=W_crO0WtksoKUgq5s9Yh8zS8RxSuyKYQCBt1i8vB1sE,693
194
207
  mistralai/models/deltamessage.py,sha256=7NtvEjdmBOl86rwOx7x2fcCCJSzIF8K6-eu-G9Wr9PI,1939
195
- mistralai/models/detailedjobout.py,sha256=aw3xmCM6E2kE1cPI5MtLZOdbtaP7FLBeHZG7ACtlEKg,4862
196
208
  mistralai/models/documenturlchunk.py,sha256=j3JB_Cy1eIRY7fTJe8AvQrdrLEA6xsJcM1l9_a1Sh68,1704
197
- mistralai/models/embeddingrequest.py,sha256=-EbPsiGUIur80rP5QJ8QaoN5SQGoVmxVUDmUUtFB0CY,762
209
+ mistralai/models/embeddingrequest.py,sha256=5GUp8OUrIAcoSdhJLO8Ue45_kGuzVaCqz85g0ZQx3gM,864
198
210
  mistralai/models/embeddingresponse.py,sha256=te6E_LYEzRjHJ9QREmsFp5PeNP2J_8ALVjyb1T20pNA,663
199
211
  mistralai/models/embeddingresponsedata.py,sha256=fJ3mrZqyBBBE40a6iegOJX3DVDfgyMRq23ByeGSTLFk,534
200
212
  mistralai/models/eventout.py,sha256=TouRJeISBLphMTPHfgSOpuoOmbGDVohPOrdgHyExMpw,1633
@@ -210,43 +222,47 @@ mistralai/models/filesignedurl.py,sha256=VwvuhzhJulAB99Qxz6zr-2F1aINosAfaSxU0Ihy
210
222
  mistralai/models/fimcompletionrequest.py,sha256=wWDCkQ_PMnjB8DrIuIvVJlPGqQtTpVDHt4p7xJ204Ug,6565
211
223
  mistralai/models/fimcompletionresponse.py,sha256=_QwzRuL3KuKkyrA4Fxp366SW0H0EzOA7f4FLkWLm-PM,790
212
224
  mistralai/models/fimcompletionstreamrequest.py,sha256=fxuR8FDOWMwIqlYU9ttAfGeRdVgTz4l2k26_OEfxelg,5944
213
- mistralai/models/ftmodelcapabilitiesout.py,sha256=H1kKEChUPgYT31ZQUz0tn9NRa7Z3hRZlh-sFfDYvBos,648
225
+ mistralai/models/finetuneablemodeltype.py,sha256=XmTpXeQU8AINnn1kVmXldFUauCaEnRtJNFAXUTVb6RQ,197
226
+ mistralai/models/ftclassifierlossfunction.py,sha256=ApQB8ssAh2yE26-CljxPO7Jc5lxq3OoBPR4rUp-Td9U,203
227
+ mistralai/models/ftmodelcapabilitiesout.py,sha256=Cg2ETH8o3eYm79-BEWweWS53wDqa1DIsZ8WtWA32Xic,730
214
228
  mistralai/models/ftmodelcard.py,sha256=G3dioHDMOhbI5HIw5gCaxZDb1sCthBzkXIAYMNHwya8,3300
215
- mistralai/models/ftmodelout.py,sha256=dw-y8KKT_7rzW6tu10gfc1YKB8-Kpw4e4zy23z_U1d4,2530
216
229
  mistralai/models/function.py,sha256=QaQriwBCCIS65IHO5Ge2OnMW6L1dS-o8JS8zlGYKSRU,534
217
230
  mistralai/models/functioncall.py,sha256=VvvBe4bVq1Irqo5t4_n1iq60UF7hLf8tE_GjkbyM8iE,556
218
231
  mistralai/models/functionname.py,sha256=jgd0moI9eORQtEAQI4ROiMSKpWSbCLmK6IhDn7uppKY,467
219
- mistralai/models/githubrepositoryin.py,sha256=kHU3QnOEJsdsyAt-74jrY2ztEao3aXcNdtj7aOgASRg,1956
220
- mistralai/models/githubrepositoryout.py,sha256=m29woSEL-vu05GU7Jva0bzzbvIykLTYUC_xSuHFVj50,1969
232
+ mistralai/models/githubrepositoryin.py,sha256=lor7fCIHPPIo0k1mHwO00RhgMdvxq-VHEFPtSWbGCN0,1702
233
+ mistralai/models/githubrepositoryout.py,sha256=BsngXozaA5MDMtWsZmYpHYisiaAUd8t5Qy70Szqmkbs,1715
221
234
  mistralai/models/httpvalidationerror.py,sha256=l47dL2BTqauhRn4_GdSl3TC-QWsdL98HoloMvp6vtRQ,604
222
235
  mistralai/models/imageurl.py,sha256=6Fpt-8V3XYK-3u_Lw85gbMnyFWUdbNhOxjldqCvSpKs,1365
223
236
  mistralai/models/imageurlchunk.py,sha256=yHgdAi_jOw-e5aXd4Dlr7YCtJcyw-W3QYol8-MAAT1Y,994
224
- mistralai/models/jobin.py,sha256=FeH3zXK7B5-ux58JCXYlG37PK28G-jdz6zZsE-D6JsY,4380
237
+ mistralai/models/inputs.py,sha256=KqOi7I6tCs51puGHIcTMXIYhJ6tbGONOLcqUBTNV_MM,1707
238
+ mistralai/models/instructrequest.py,sha256=8Y63pPlhD6l8OhfHgoEykUvruRFCmghP7_w354J9ovY,1323
239
+ mistralai/models/jobin.py,sha256=0mHw2FUWNw5YJ1TROHe7rakL785ziOGeIudUwSQ4mJs,5516
225
240
  mistralai/models/jobmetadataout.py,sha256=wtKbig55Uheqwxp-VUr8Q3KH8eSSB0Vt067Ux7_caEo,2412
226
- mistralai/models/jobout.py,sha256=px44vM7dbJ5ZD5aCHOAMeSW2pZ3DPV2TMR0dVsRiVvs,6103
227
241
  mistralai/models/jobs_api_routes_batch_cancel_batch_jobop.py,sha256=3Q-YaI2zAX550v--wedoh9XoWg2rRSVFIYOrv2SjhG8,514
228
242
  mistralai/models/jobs_api_routes_batch_get_batch_jobop.py,sha256=8kCUZZZKrkDCXFtvWZVcF1XObl8QhLEajBjjfZrd12o,508
229
- mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py,sha256=p2Sf2S04SU2tkO0HluuiaWqYffmnes728NKZxEwxiZ0,3031
243
+ mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py,sha256=yfqGy1yIaFETbLC96HmSXSmBv0BaRWpqDYeSlAUooY0,3049
230
244
  mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py,sha256=pevOFk9Ji8iebXVadr5d882kKjrvT6_R6b8qBTYkQAU,628
231
- mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py,sha256=Q75l-kuKesb_x7uBkQNumTVBqzD9DmeTiWpOGSmtFwk,614
232
- mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py,sha256=FlWx7DxCdxgWrc3qTwc6XwjonzPG4BM1WDUGW2Wqij8,705
233
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py,sha256=742v4h88GSbgP2M-5J_0hyNSdtbZ9_awaEWXCL1hbAw,610
234
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=WQMJ7nmQ8G2W-K0dGGUOP4cSVou_OlUwzUBWOP3EmPE,5491
235
- mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py,sha256=h7d8AbRonPwHyrPDIhrrawDEeyxDqXEKtgYL-Jvg7SU,532
245
+ mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py,sha256=biN40DJv0iQ1Pr1fA0fs6zV5j11C1zlcYt4XLNQILSI,1473
246
+ mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py,sha256=V_sr_0pSoXVkrQszTa2zRmLff_B3WW4PE27GU-fokk8,1270
247
+ mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py,sha256=0QGbsTA2VAHeTsQw15cn_dzurWOrzUWtkIE05meBSNA,1460
248
+ mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=NWaXxPY4kmpDQsYAlhZfNbUBWbhkIb-JP5bTW9341LY,5762
249
+ mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py,sha256=e9b5T3Jjq-y7ZTEGo8w16KrJwcutiD5N-5aFBtZGQTc,1388
236
250
  mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py,sha256=_pkyhD7OzG-59fgcajI9NmSLTLDktkCxXo_IuvWeyfs,636
237
- mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py,sha256=s-EYS-Hw0NExYeIyN-3JlHbKmnTmtyB8ljVSfOylqYk,907
238
- mistralai/models/jobsout.py,sha256=uCKt0aw7yXzI4oLDGeAAEhsRjdRg3g7lPopg0__czTA,818
251
+ mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py,sha256=YsjSBijG3EHurZoqXCMjWIa0tz4e_oyMjQzyVD2CoQM,1728
252
+ mistralai/models/jobsout.py,sha256=WD9_RHk39ftEEgVJ5Pd6d6WQz0QudeNf0mXf1b30xAM,1183
239
253
  mistralai/models/jsonschema.py,sha256=Itbk3BS9M9nnEPwShGyyOCVmqfbP6y44XsIUn6d7cDY,1652
240
- mistralai/models/legacyjobmetadataout.py,sha256=08zAGNTSrICsK8u2SFFUXiNWF7MCQvezmFQeMQzxsys,4762
254
+ mistralai/models/legacyjobmetadataout.py,sha256=KrKrOG58lmUiISX886l-6eKV1a3-GvERdMYjCFRMMSg,4487
241
255
  mistralai/models/listfilesout.py,sha256=tW2fNabLKcftc5kytkjwVaChlOzWRL4FKtNzDak9MNs,468
242
256
  mistralai/models/metricout.py,sha256=dXQMMU4Nk6-Zr06Jx1TWilFi6cOwiVLjSanCFn0cPxo,2034
243
257
  mistralai/models/modelcapabilities.py,sha256=No-Dl09zT1sG4MxsWnx4s8Yo1tUeMQ7k-HR_iQFIMFc,703
244
258
  mistralai/models/modellist.py,sha256=D4Y784kQkx0ARhofFrpEqGLfxa-jTY8ev0TQMrD_n8I,995
245
- mistralai/models/ocrimageobject.py,sha256=QDylsNCXy78rWLHuE4CrnQAPXnubz0-FN1wQXtsVsDA,2534
259
+ mistralai/models/moderationobject.py,sha256=mmzFEcccsT7G9PjmQrsYMijmICbfBtUpVN_ZisuhYbY,655
260
+ mistralai/models/moderationresponse.py,sha256=kxIRI3UJdddj2Hz-E9q21gKQAbacxZoG4hdoZjrae5M,508
261
+ mistralai/models/ocrimageobject.py,sha256=vnBLzA3p7KlpfNYMq1QJYiyA6YDpmWmL2J4SX3CIdQs,2802
246
262
  mistralai/models/ocrpagedimensions.py,sha256=oP4v80I8d6ZELSZt6cRoECd6uIONgdyCeeFalm-4OvM,609
247
263
  mistralai/models/ocrpageobject.py,sha256=s0OzcCA0cLTFYahNOr0-r4ds7WOsXYhEx-QcNLngW7M,2085
248
- mistralai/models/ocrrequest.py,sha256=KKFFvxsGsOQKAYFpuZ02-VsiJWNawlIIz-7dPPtNklU,3112
249
- mistralai/models/ocrresponse.py,sha256=JpI9Yl6fYeGf6Wsn4M4Z-i6Ir2qAlMKFQnVXqsLiC5Y,752
264
+ mistralai/models/ocrrequest.py,sha256=leCP781cr_ruG_QFtvgn84iDa_CIGEQh-N5xpB0hld0,4242
265
+ mistralai/models/ocrresponse.py,sha256=yFjiKSEtdyYkswhEW3lA51Fg2yAWk0s_tJV_QsYMxR0,2042
250
266
  mistralai/models/ocrusageinfo.py,sha256=cWtxHxXyJn3U1qJgG-XU-1xfC7poGHvhVtPqdrFrfII,1571
251
267
  mistralai/models/prediction.py,sha256=BgWbbeSi1eD9Rh1xk8srXlRgD7Xooj8nLsbSQ21pNRo,718
252
268
  mistralai/models/referencechunk.py,sha256=A9vV5pZv-tUqGlswdu0HOyCYy0Q-UIJY0Oc9ZfM6XJA,519
@@ -267,18 +283,16 @@ mistralai/models/toolchoiceenum.py,sha256=Ca4ileCwuOjfPzIXLRIxT3RkE5zR7oqV6nXU-U
267
283
  mistralai/models/toolmessage.py,sha256=zcu054y_vBaGbsCWmq58DsY8aiRrSNwzC4LJz_5kUVg,2038
268
284
  mistralai/models/tooltypes.py,sha256=NcvRsZA_ORf4WY_gn6WjgX6eEXmR2faVG3Q1sLlzdG8,244
269
285
  mistralai/models/trainingfile.py,sha256=IlwKP2GL8gL0VHVJ_zUDV-Q0F7obdLzMMRDDJatSjwo,400
270
- mistralai/models/trainingparameters.py,sha256=GA7OFskn6BxHs_N6YIv0s6e1j_xmqrwcuCioqIcPZK8,2298
271
- mistralai/models/trainingparametersin.py,sha256=tKiFYm9RUOegdRX_kka_On-mOipX5fEv1sM_7wZ2leY,4556
272
- mistralai/models/unarchiveftmodelout.py,sha256=8sn1THvCNnZpPcw3m3avWiBHe357D_nSrp0LcFFYVsY,831
286
+ mistralai/models/unarchiveftmodelout.py,sha256=IY0oHKupATBYjAn7Xz1AVqyoSeap1l4nnWeMsLTK7yI,576
273
287
  mistralai/models/updateftmodelin.py,sha256=Slabh0wwDFP8bzXWFqDzGoLh3KPnOAEyc7vttabSqX8,1466
274
288
  mistralai/models/uploadfileout.py,sha256=q05j3XeaoF-AHqIshXJ73dUL5zOMxxQAF-w-u2tmVNU,2603
275
289
  mistralai/models/usageinfo.py,sha256=66AzKK8cOFft498eUOUx6C_mCFAt5LmIFrYthJfLWpU,401
276
290
  mistralai/models/usermessage.py,sha256=kjS5HudMsaRNfeUhFFBCyY8l-umlHvGk8wvTIq6-qzY,1793
277
291
  mistralai/models/validationerror.py,sha256=DouDBJmBhbW4KPsF5rZEyBdnB_adC-l32kuHC0bvO2I,526
278
- mistralai/models/wandbintegration.py,sha256=BkLD3r08ToZkMAhPXdnC7bfOGr3banKqt1wVKMGehUQ,2406
279
- mistralai/models/wandbintegrationout.py,sha256=C0HpS8jJGnACs7eWnuIq0qJEroIUAbjkvzfSSkSKS7Q,2274
280
- mistralai/models_.py,sha256=lfFFHRx2Gt8d6HODFYfSgHO_roXbIvLX5aUj2jtKYBs,46140
281
- mistralai/ocr.py,sha256=R4afXZ1Pk1f6k7Acady1HwRdW-kZXzs7d_Isa7oxJpo,10051
292
+ mistralai/models/wandbintegration.py,sha256=X8V86L3EwheoI-0LI7zwmTtn_4SKz5s62SJN3x5BTxE,2153
293
+ mistralai/models/wandbintegrationout.py,sha256=wohSfHGF8Y9OfIhM1qr9mssLRg63b3CMLDpi4TQKYEk,2111
294
+ mistralai/models_.py,sha256=2tiJEMwjixY0Rz5dDt4gDQNEu9peecly2zWmi7YeQhQ,46398
295
+ mistralai/ocr.py,sha256=GvG5SMy85s3xUTGLSnQ3h9GkNYw9KBy8umBnkC9Ciho,11991
282
296
  mistralai/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
283
297
  mistralai/sdk.py,sha256=q18oi4qj0PU6fsB_5BaWy-18bGzLxOgMlkSvEgCW4MY,6453
284
298
  mistralai/sdkconfiguration.py,sha256=88GOgda6cRq40OSFI5FIarLvGNrMaHTzinPI_GyqTvk,1873
@@ -300,7 +314,7 @@ mistralai/utils/serializers.py,sha256=EGH40Pgp3sSK9uM4PxL7_SYzSHtmo-Uy6QIE5xLVg6
300
314
  mistralai/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
301
315
  mistralai/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
302
316
  mistralai/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
303
- mistralai-1.6.0.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
304
- mistralai-1.6.0.dist-info/METADATA,sha256=xKI7FL5iu6kbvVeVKe9lUfsd_itWzOp-x511W3CO0W0,30057
305
- mistralai-1.6.0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
306
- mistralai-1.6.0.dist-info/RECORD,,
317
+ mistralai-1.7.1.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
318
+ mistralai-1.7.1.dist-info/METADATA,sha256=izeRtogP3xYzTKTnFXa8BLUylIaTAiUZbRJaU6Dtgl4,30328
319
+ mistralai-1.7.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
320
+ mistralai-1.7.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.1
2
+ Generator: poetry-core 2.1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any