mistralai 1.6.0__py3-none-any.whl → 1.7.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.
- mistralai/_version.py +2 -2
- mistralai/classifiers.py +431 -19
- mistralai/embeddings.py +6 -2
- mistralai/jobs.py +84 -38
- mistralai/mistral_jobs.py +2 -2
- mistralai/models/__init__.py +197 -46
- mistralai/models/archiveftmodelout.py +3 -11
- mistralai/models/batchjobout.py +3 -9
- mistralai/models/batchjobsout.py +3 -9
- mistralai/models/chatclassificationrequest.py +20 -0
- mistralai/models/chatmoderationrequest.py +4 -7
- mistralai/models/classificationresponse.py +12 -9
- mistralai/models/classificationtargetresult.py +14 -0
- mistralai/models/classifierdetailedjobout.py +156 -0
- mistralai/models/classifierftmodelout.py +101 -0
- mistralai/models/classifierjobout.py +165 -0
- mistralai/models/classifiertargetin.py +55 -0
- mistralai/models/classifiertargetout.py +24 -0
- mistralai/models/classifiertrainingparameters.py +73 -0
- mistralai/models/classifiertrainingparametersin.py +85 -0
- mistralai/models/{detailedjobout.py → completiondetailedjobout.py} +34 -34
- mistralai/models/{ftmodelout.py → completionftmodelout.py} +12 -12
- mistralai/models/{jobout.py → completionjobout.py} +25 -24
- mistralai/models/{trainingparameters.py → completiontrainingparameters.py} +7 -7
- mistralai/models/{trainingparametersin.py → completiontrainingparametersin.py} +7 -7
- mistralai/models/embeddingrequest.py +6 -4
- mistralai/models/finetuneablemodeltype.py +7 -0
- mistralai/models/ftclassifierlossfunction.py +7 -0
- mistralai/models/ftmodelcapabilitiesout.py +3 -0
- mistralai/models/githubrepositoryin.py +3 -11
- mistralai/models/githubrepositoryout.py +3 -11
- mistralai/models/inputs.py +54 -0
- mistralai/models/instructrequest.py +42 -0
- mistralai/models/jobin.py +52 -12
- mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py +3 -3
- mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py +29 -2
- mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py +21 -4
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py +29 -2
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +8 -0
- mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py +29 -2
- mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py +28 -2
- mistralai/models/jobsout.py +24 -13
- mistralai/models/legacyjobmetadataout.py +3 -12
- mistralai/models/{classificationobject.py → moderationobject.py} +6 -6
- mistralai/models/moderationresponse.py +21 -0
- mistralai/models/unarchiveftmodelout.py +3 -11
- mistralai/models/wandbintegration.py +3 -11
- mistralai/models/wandbintegrationout.py +8 -13
- mistralai/models_.py +10 -4
- {mistralai-1.6.0.dist-info → mistralai-1.7.0.dist-info}/METADATA +3 -1
- {mistralai-1.6.0.dist-info → mistralai-1.7.0.dist-info}/RECORD +53 -39
- {mistralai-1.6.0.dist-info → mistralai-1.7.0.dist-info}/WHEEL +1 -1
- {mistralai-1.6.0.dist-info → mistralai-1.7.0.dist-info}/LICENSE +0 -0
|
@@ -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
|
|
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
|
-
|
|
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.
|
|
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(
|
|
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.
|
|
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(
|
|
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(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: mistralai
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.7.0
|
|
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=
|
|
142
|
+
mistralai/_version.py,sha256=yCLnNFGE0880iq0PxssvV7s0LK7AVA_trjwe6aUNyxQ,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=
|
|
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=
|
|
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
|
|
@@ -161,40 +161,52 @@ 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=
|
|
165
|
-
mistralai/mistral_jobs.py,sha256=
|
|
166
|
-
mistralai/models/__init__.py,sha256=
|
|
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=
|
|
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=
|
|
176
|
-
mistralai/models/batchjobsout.py,sha256=
|
|
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=
|
|
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=
|
|
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
|
|
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,38 +222,42 @@ 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/
|
|
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=
|
|
220
|
-
mistralai/models/githubrepositoryout.py,sha256=
|
|
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/
|
|
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=
|
|
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=
|
|
232
|
-
mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py,sha256=
|
|
233
|
-
mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py,sha256=
|
|
234
|
-
mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=
|
|
235
|
-
mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py,sha256=
|
|
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=
|
|
238
|
-
mistralai/models/jobsout.py,sha256=
|
|
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=
|
|
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
|
|
259
|
+
mistralai/models/moderationobject.py,sha256=mmzFEcccsT7G9PjmQrsYMijmICbfBtUpVN_ZisuhYbY,655
|
|
260
|
+
mistralai/models/moderationresponse.py,sha256=kxIRI3UJdddj2Hz-E9q21gKQAbacxZoG4hdoZjrae5M,508
|
|
245
261
|
mistralai/models/ocrimageobject.py,sha256=QDylsNCXy78rWLHuE4CrnQAPXnubz0-FN1wQXtsVsDA,2534
|
|
246
262
|
mistralai/models/ocrpagedimensions.py,sha256=oP4v80I8d6ZELSZt6cRoECd6uIONgdyCeeFalm-4OvM,609
|
|
247
263
|
mistralai/models/ocrpageobject.py,sha256=s0OzcCA0cLTFYahNOr0-r4ds7WOsXYhEx-QcNLngW7M,2085
|
|
@@ -267,17 +283,15 @@ 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/
|
|
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=
|
|
279
|
-
mistralai/models/wandbintegrationout.py,sha256=
|
|
280
|
-
mistralai/models_.py,sha256=
|
|
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
|
|
281
295
|
mistralai/ocr.py,sha256=R4afXZ1Pk1f6k7Acady1HwRdW-kZXzs7d_Isa7oxJpo,10051
|
|
282
296
|
mistralai/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
|
|
283
297
|
mistralai/sdk.py,sha256=q18oi4qj0PU6fsB_5BaWy-18bGzLxOgMlkSvEgCW4MY,6453
|
|
@@ -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.
|
|
304
|
-
mistralai-1.
|
|
305
|
-
mistralai-1.
|
|
306
|
-
mistralai-1.
|
|
317
|
+
mistralai-1.7.0.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
|
|
318
|
+
mistralai-1.7.0.dist-info/METADATA,sha256=PLOAvlIlQ-AMv1pfbcf8hbg2rwkat9AKjtyGjSZXLM0,30328
|
|
319
|
+
mistralai-1.7.0.dist-info/WHEEL,sha256=fGIA9gx4Qxk2KDKeNJCbOEwSrmLtjWCwzBz351GyrPQ,88
|
|
320
|
+
mistralai-1.7.0.dist-info/RECORD,,
|
|
File without changes
|