mistralai 1.5.2rc1__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.
Files changed (81) hide show
  1. mistralai/_version.py +2 -2
  2. mistralai/agents.py +12 -0
  3. mistralai/chat.py +12 -0
  4. mistralai/classifiers.py +435 -23
  5. mistralai/embeddings.py +6 -2
  6. mistralai/jobs.py +84 -38
  7. mistralai/mistral_jobs.py +2 -2
  8. mistralai/models/__init__.py +197 -46
  9. mistralai/models/agentscompletionrequest.py +4 -0
  10. mistralai/models/agentscompletionstreamrequest.py +4 -0
  11. mistralai/models/archiveftmodelout.py +3 -11
  12. mistralai/models/batchjobout.py +3 -9
  13. mistralai/models/batchjobsout.py +3 -9
  14. mistralai/models/chatclassificationrequest.py +20 -0
  15. mistralai/models/chatcompletionrequest.py +4 -0
  16. mistralai/models/chatcompletionstreamrequest.py +4 -0
  17. mistralai/models/chatmoderationrequest.py +4 -7
  18. mistralai/models/classificationresponse.py +12 -9
  19. mistralai/models/classificationtargetresult.py +14 -0
  20. mistralai/models/classifierdetailedjobout.py +156 -0
  21. mistralai/models/classifierftmodelout.py +101 -0
  22. mistralai/models/classifierjobout.py +165 -0
  23. mistralai/models/classifiertargetin.py +55 -0
  24. mistralai/models/classifiertargetout.py +24 -0
  25. mistralai/models/classifiertrainingparameters.py +73 -0
  26. mistralai/models/classifiertrainingparametersin.py +85 -0
  27. mistralai/models/{detailedjobout.py → completiondetailedjobout.py} +34 -34
  28. mistralai/models/{ftmodelout.py → completionftmodelout.py} +12 -12
  29. mistralai/models/{jobout.py → completionjobout.py} +25 -24
  30. mistralai/models/{trainingparameters.py → completiontrainingparameters.py} +7 -7
  31. mistralai/models/{trainingparametersin.py → completiontrainingparametersin.py} +7 -7
  32. mistralai/models/embeddingrequest.py +6 -4
  33. mistralai/models/finetuneablemodeltype.py +7 -0
  34. mistralai/models/ftclassifierlossfunction.py +7 -0
  35. mistralai/models/ftmodelcapabilitiesout.py +3 -0
  36. mistralai/models/function.py +2 -2
  37. mistralai/models/githubrepositoryin.py +3 -11
  38. mistralai/models/githubrepositoryout.py +3 -11
  39. mistralai/models/inputs.py +54 -0
  40. mistralai/models/instructrequest.py +42 -0
  41. mistralai/models/jobin.py +52 -12
  42. mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py +3 -3
  43. mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py +29 -2
  44. mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py +21 -4
  45. mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py +29 -2
  46. mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +8 -0
  47. mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py +29 -2
  48. mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py +28 -2
  49. mistralai/models/jobsout.py +24 -13
  50. mistralai/models/jsonschema.py +1 -1
  51. mistralai/models/legacyjobmetadataout.py +3 -12
  52. mistralai/models/{classificationobject.py → moderationobject.py} +6 -6
  53. mistralai/models/moderationresponse.py +21 -0
  54. mistralai/models/unarchiveftmodelout.py +3 -11
  55. mistralai/models/wandbintegration.py +3 -11
  56. mistralai/models/wandbintegrationout.py +8 -13
  57. mistralai/models_.py +10 -4
  58. {mistralai-1.5.2rc1.dist-info → mistralai-1.7.0.dist-info}/METADATA +4 -2
  59. {mistralai-1.5.2rc1.dist-info → mistralai-1.7.0.dist-info}/RECORD +81 -63
  60. {mistralai-1.5.2rc1.dist-info → mistralai-1.7.0.dist-info}/WHEEL +1 -1
  61. mistralai_azure/_version.py +2 -2
  62. mistralai_azure/chat.py +12 -0
  63. mistralai_azure/models/__init__.py +15 -0
  64. mistralai_azure/models/chatcompletionrequest.py +4 -0
  65. mistralai_azure/models/chatcompletionstreamrequest.py +4 -0
  66. mistralai_azure/models/contentchunk.py +6 -2
  67. mistralai_azure/models/function.py +2 -2
  68. mistralai_azure/models/imageurl.py +53 -0
  69. mistralai_azure/models/imageurlchunk.py +33 -0
  70. mistralai_azure/models/jsonschema.py +1 -1
  71. mistralai_gcp/_version.py +2 -2
  72. mistralai_gcp/chat.py +12 -0
  73. mistralai_gcp/models/__init__.py +15 -0
  74. mistralai_gcp/models/chatcompletionrequest.py +4 -0
  75. mistralai_gcp/models/chatcompletionstreamrequest.py +4 -0
  76. mistralai_gcp/models/contentchunk.py +6 -2
  77. mistralai_gcp/models/function.py +2 -2
  78. mistralai_gcp/models/imageurl.py +53 -0
  79. mistralai_gcp/models/imageurlchunk.py +33 -0
  80. mistralai_gcp/models/jsonschema.py +1 -1
  81. {mistralai-1.5.2rc1.dist-info → mistralai-1.7.0.dist-info}/LICENSE +0 -0
@@ -0,0 +1,21 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from __future__ import annotations
4
+ from .moderationobject import ModerationObject, ModerationObjectTypedDict
5
+ from mistralai.types import BaseModel
6
+ from typing import List
7
+ from typing_extensions import TypedDict
8
+
9
+
10
+ class ModerationResponseTypedDict(TypedDict):
11
+ id: str
12
+ model: str
13
+ results: List[ModerationObjectTypedDict]
14
+
15
+
16
+ class ModerationResponse(BaseModel):
17
+ id: str
18
+
19
+ model: str
20
+
21
+ results: List[ModerationObject]
@@ -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(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mistralai
3
- Version: 1.5.2rc1
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
@@ -463,7 +463,9 @@ The documentation for the GCP SDK is available [here](https://github.com/mistral
463
463
  ### [classifiers](https://github.com/mistralai/client-python/blob/master/docs/sdks/classifiers/README.md)
464
464
 
465
465
  * [moderate](https://github.com/mistralai/client-python/blob/master/docs/sdks/classifiers/README.md#moderate) - Moderations
466
- * [moderate_chat](https://github.com/mistralai/client-python/blob/master/docs/sdks/classifiers/README.md#moderate_chat) - Moderations Chat
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
 
@@ -4,26 +4,28 @@ mistralai_azure/_hooks/custom_user_agent.py,sha256=0m-1JzJxOT42rvRTEuCiFLqbOMriO
4
4
  mistralai_azure/_hooks/registration.py,sha256=5BN-U92pwP5kUaN7EOso2vWrwZlLvRcU5Coccibqp20,741
5
5
  mistralai_azure/_hooks/sdkhooks.py,sha256=urOhVMYX_n5KgMoNDNmGs4fsgUWoeSG6_GarhPxH-YU,2565
6
6
  mistralai_azure/_hooks/types.py,sha256=5lbjAtBy4DcEmoFjepuZA4l3vjE73G_NW5izQHi3DK0,2818
7
- mistralai_azure/_version.py,sha256=P2WDmELaLZII0Uu-OSilgpS_iIQFg9dxWfLIf_dmwnk,472
7
+ mistralai_azure/_version.py,sha256=qa1zEa5rDcZbGrfBSLYlvEl14a0nG1VfMvKuRuXKSwQ,472
8
8
  mistralai_azure/basesdk.py,sha256=95JOT11O1oU74EcPvwu3lj9o32a7IPInYIveTVjV8pE,12136
9
- mistralai_azure/chat.py,sha256=t-GRgGQ_C2T8AZQTDv061ryN7TktFurxKp3rK1UKRhU,35346
9
+ mistralai_azure/chat.py,sha256=6zTDL9fbR7v4n23Awgu7P_9nPKeum2W5IoX7ubumn44,35910
10
10
  mistralai_azure/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
11
- mistralai_azure/models/__init__.py,sha256=RU9M2_D6QM07I6crqCj6S-bEMLnNmZR9nsHf5_cq1Nw,5677
11
+ mistralai_azure/models/__init__.py,sha256=zByHopg2jAg0Sfj7cfw2tD7ioV6bjK7s61KqZkiDnfA,6075
12
12
  mistralai_azure/models/assistantmessage.py,sha256=OmHqIM8Cnp4gW6_NbEGMam-_-XBDqMOdskb4BejEBZY,2655
13
13
  mistralai_azure/models/chatcompletionchoice.py,sha256=-JE13p36mWnyc3zxnHLJp1Q43QVgj5QRurnZslXdJc0,935
14
- mistralai_azure/models/chatcompletionrequest.py,sha256=P5KjJN24SxcS2FK9dC4Ga1k-tvqE2nF023FCdVm4_UY,9637
14
+ mistralai_azure/models/chatcompletionrequest.py,sha256=ixQP91BFZv1Zebxq0ephBmHyI5W0_yeEQoNR13Z5QdU,9763
15
15
  mistralai_azure/models/chatcompletionresponse.py,sha256=sPmb4kih2DpE3r8Xem_HYj6o3E3i-6PyVROvm7Ysrfs,798
16
- mistralai_azure/models/chatcompletionstreamrequest.py,sha256=LvLaIxwU1iWqjQoy9EMddy2rRpxIZS6keNox-MLFUi4,8773
16
+ mistralai_azure/models/chatcompletionstreamrequest.py,sha256=o8cbpKDS0scF_B3dfojOUhnLTd7D2G6AT-anOVe9ZFo,8899
17
17
  mistralai_azure/models/completionchunk.py,sha256=yoA0tYoyK5RChQPbEvYUi1BVmuyH-QT5IYwEYJNtsXM,877
18
18
  mistralai_azure/models/completionevent.py,sha256=8wkRAMMpDFfhFSm7OEmli80lsK98Tir7R6IxW-KxeuE,405
19
19
  mistralai_azure/models/completionresponsestreamchoice.py,sha256=c6BncIEgKnK4HUPCeIhLfVc3RgxXKNcxp2JrlObUu9E,1834
20
- mistralai_azure/models/contentchunk.py,sha256=k2eowNYDzv-DH6gyNqmCEtNPCNAgmWDswX15sFb7SQk,726
20
+ mistralai_azure/models/contentchunk.py,sha256=a7A9ymr1Qvg4am-uqrGxqrmTf9NBMPiGbVncuOevchE,881
21
21
  mistralai_azure/models/deltamessage.py,sha256=DvXCMs-P1i3QlUjCjJv4en2d04ydTrH6AjECpX9L2aw,1970
22
- mistralai_azure/models/function.py,sha256=WVsAwk6IoW6mNkeOw_BhzoikyiANksLSwdLIFAJyXQw,539
22
+ mistralai_azure/models/function.py,sha256=VKcPB1oJ8_jvfXRfqufa2Y9to5WdxS-hi9OLu78GNpM,540
23
23
  mistralai_azure/models/functioncall.py,sha256=H2eemkzk2Zm1LEm11atVh6PGvr6XJn9SWqNUziT_WK8,562
24
24
  mistralai_azure/models/functionname.py,sha256=4rGsO-FYjvLMRGDBbdZ3cLyiiwml_voRQQ924K2_S1M,473
25
25
  mistralai_azure/models/httpvalidationerror.py,sha256=tcUK2zfyCZ1TJjmvF93E9G2Ah-S2UUSpM-ZJBbR4hgc,616
26
- mistralai_azure/models/jsonschema.py,sha256=SNhpokxyxHmcVAP8q0P-4XVqhz9QyhphT7CBx9X5snM,1684
26
+ mistralai_azure/models/imageurl.py,sha256=Dm3S96XCb-F11vx3HYWnKG5GOm246q21vDJ81ywVDVQ,1396
27
+ mistralai_azure/models/imageurlchunk.py,sha256=JWfOtcxm-AEzRdNny-KWAWXV275hSnWFfn_Ux6OjrYA,1000
28
+ mistralai_azure/models/jsonschema.py,sha256=Hg6iOf3AiR55dX_-4nb0DMcA4TFJQac-51QtjmrcTBE,1683
27
29
  mistralai_azure/models/prediction.py,sha256=GERxBI8NoS9Fc14FD4ityVfJfXNts1dxjoK3XIVHHc0,730
28
30
  mistralai_azure/models/referencechunk.py,sha256=uiouhIPrWpVEhpY_Cea1Som9XapC4mM3R82hhND-j-s,525
29
31
  mistralai_azure/models/responseformat.py,sha256=n0aKQE1girltBvrih5w4bbfp_C7_ban4KTrGpS4bAFM,2256
@@ -67,30 +69,32 @@ mistralai_gcp/_hooks/custom_user_agent.py,sha256=0m-1JzJxOT42rvRTEuCiFLqbOMriOls
67
69
  mistralai_gcp/_hooks/registration.py,sha256=5BN-U92pwP5kUaN7EOso2vWrwZlLvRcU5Coccibqp20,741
68
70
  mistralai_gcp/_hooks/sdkhooks.py,sha256=nr_ACx8Rn5xvTkmZP6_EI-f_0hw8wMyPqPHNvjAWAxI,2563
69
71
  mistralai_gcp/_hooks/types.py,sha256=NzfRMdihvcNazbqJkcbjWcGttNkUi9upj4QDk9IN_Wg,2816
70
- mistralai_gcp/_version.py,sha256=fYiwupVZITQGi76TEaflpZoO_KWxy5mU9E8qM8Jc7QU,468
72
+ mistralai_gcp/_version.py,sha256=JBRQmuMZFOEg82Gq5TChrV73wHfnblPO4GnleLdGZ6I,468
71
73
  mistralai_gcp/basesdk.py,sha256=1qQQeCnhkPR4JYRQ3GGpW8TwbTSCWT4RjfXiJTGWvrU,12130
72
- mistralai_gcp/chat.py,sha256=5dOKAfdMI-HQiZSrDvKZ0K-REwUmzffVz1DMHoEm3nI,35248
74
+ mistralai_gcp/chat.py,sha256=bbz3SzLyNO6Pnct7Mqtgk3aunPvPXET9CUGY8SlJ78U,35812
73
75
  mistralai_gcp/fim.py,sha256=zOcVDvQzFzPNy6xxV_yfW2wJNHQhrxhPb4utNrIVJXk,27718
74
76
  mistralai_gcp/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
75
- mistralai_gcp/models/__init__.py,sha256=YnazQ41nQ_dv8rMjV09PYgLPpkqgo1FG6hZNlId-h20,6499
77
+ mistralai_gcp/models/__init__.py,sha256=AztbrrgcEdLp7b7TyBzJPpZV-48R9ysK25HHp66X4qY,6897
76
78
  mistralai_gcp/models/assistantmessage.py,sha256=DQEkGoA288mFwGN29q1E3r5uT_vUfkeTRjliT4aHWdw,2653
77
79
  mistralai_gcp/models/chatcompletionchoice.py,sha256=1t3Sb_IICDH7gyyEMX-WuxHnSVV-PZTLfpUjkUVp3do,931
78
- mistralai_gcp/models/chatcompletionrequest.py,sha256=hGu7qZKJDynL0HGAVw_-6sNqpMCj_QEgEKutc3fb2Zs,9683
80
+ mistralai_gcp/models/chatcompletionrequest.py,sha256=nBk41aPENmT2mwmRpkVpeZMCAvCCSUGOAmPag7sMq3M,9809
79
81
  mistralai_gcp/models/chatcompletionresponse.py,sha256=Ctvqs2ZjvWTycozqXn-fvucgqOn0dm4cOjUZ2BjD4BM,796
80
- mistralai_gcp/models/chatcompletionstreamrequest.py,sha256=EdcQFq2UH-gU7u9pyByYW2rr4FufO7y5yq1QEzPNaRs,8819
82
+ mistralai_gcp/models/chatcompletionstreamrequest.py,sha256=KTikDhadXgyYc0go-5ZN1CyzFOxbZWr7syTaiqnbZBs,8945
81
83
  mistralai_gcp/models/completionchunk.py,sha256=0DBDcrqVWrUskHA3hHYtuWk2E4JcJy_zc_LiGyLHBlA,875
82
84
  mistralai_gcp/models/completionevent.py,sha256=cP7Q5dN4Z46FQTlyCYeIwvqt7pgN-22jNPD2bi7Eals,403
83
85
  mistralai_gcp/models/completionresponsestreamchoice.py,sha256=MdZaPMSqFbIbenEAdPyYMFemsFSZdPglEEt5ssZ3x7E,1830
84
- mistralai_gcp/models/contentchunk.py,sha256=zzr7oENSG3rVjgKO_ebL-vmaX9Iy0ZiDygxyQtiWcMI,724
86
+ mistralai_gcp/models/contentchunk.py,sha256=YnkuzJSAJGvNsmRLQWscl43INmRVDAbidtLMOwYipM4,879
85
87
  mistralai_gcp/models/deltamessage.py,sha256=6AcVFRWaW4mLFAyd7yOIJfKVroFe0htdclMlbv_R_iM,1968
86
88
  mistralai_gcp/models/fimcompletionrequest.py,sha256=fmOlJENpPYggcJPZEa6u1pezZMUG9XufDn98RptNIPE,6594
87
89
  mistralai_gcp/models/fimcompletionresponse.py,sha256=zUG83S6DchgEYsSG1dkOSuoOFHvlAR62gCoN9UzF06A,794
88
90
  mistralai_gcp/models/fimcompletionstreamrequest.py,sha256=VjYBNv9aa2hRHZd7ogHtxFkpqHs4EhymHdrmn1lrRd8,5973
89
- mistralai_gcp/models/function.py,sha256=brOR3LbTiCSrhLODFSeDP0mx1LCX5ICstssm8XSFTW4,537
91
+ mistralai_gcp/models/function.py,sha256=FKnuRp-z4lQxq43iDzFaGtledj6zuXf8bHk5erTs62Q,538
90
92
  mistralai_gcp/models/functioncall.py,sha256=iIeo1sJUi1DJmASNUuqMq6iYwGLgM1fxC-mWgEiluQ4,560
91
93
  mistralai_gcp/models/functionname.py,sha256=Rp4TPQA1IvhnBZx-GwBF1fFyAd6w5Ys5A84waQ9fYKg,471
92
94
  mistralai_gcp/models/httpvalidationerror.py,sha256=wGmVyH_T7APhs_mCpOkumZ3x15FQ95cL-GH5M2iLst8,612
93
- mistralai_gcp/models/jsonschema.py,sha256=Nn8Tfq-id2ShQ_JrKqOvX2cIrXLT3QzL93oeLkbQRGo,1682
95
+ mistralai_gcp/models/imageurl.py,sha256=McP_wQQvlV_0LirWXiDnOWoR5c6CNKPB79dmyS1KYqc,1394
96
+ mistralai_gcp/models/imageurlchunk.py,sha256=FWe88MyC-AFko2SGFmwkkihuOZduFzneCcgNailGUzI,998
97
+ mistralai_gcp/models/jsonschema.py,sha256=CcBseBHz7VGgMbvC-jGI4KZ5DuIi79cJLGrRlAs9OKs,1681
94
98
  mistralai_gcp/models/prediction.py,sha256=B96QIAqMDDbF_uEzcL3XMisXg-AaMzHCSRUvaop2ktI,726
95
99
  mistralai_gcp/models/referencechunk.py,sha256=NmajuCeC5caD70iUPL8P6DlTO44oivRnFaOhfLGBiE8,523
96
100
  mistralai_gcp/models/responseformat.py,sha256=0aI9IEpq6p4iIz1MMt_uBQtDh0CoW3fVHAjfamTgZ7U,2254
@@ -135,15 +139,15 @@ mistralai/_hooks/deprecation_warning.py,sha256=eyEOf7-o9uqqNWJnufD2RXp3dYrGV4in9
135
139
  mistralai/_hooks/registration.py,sha256=ML0W-XbE4WYdJ4eGks_XxF2aLCJTaIWjQATFGzFwvyU,861
136
140
  mistralai/_hooks/sdkhooks.py,sha256=s-orhdvnV89TmI3QiPC2LWQtYeM9RrsG1CTll-fYZmQ,2559
137
141
  mistralai/_hooks/types.py,sha256=z3AUFDpRJHj2m3h5PklvUeEcGohY0cfph4jL6-nGIzs,2812
138
- mistralai/_version.py,sha256=nv5Y7Tq8adQGd5L6dcS7AXqCbdzyNdsKbM_gwQXpmn4,470
139
- mistralai/agents.py,sha256=WVNI2MHKojwLWH663ldNVB0KxAdfErfvqaS2j9Qf1hc,32088
142
+ mistralai/_version.py,sha256=yCLnNFGE0880iq0PxssvV7s0LK7AVA_trjwe6aUNyxQ,460
143
+ mistralai/agents.py,sha256=o_apyuwiDzxv-U252T84ynAHCb5fn1q7MMXqrZ4oHLo,32652
140
144
  mistralai/async_client.py,sha256=KUdYxIIqoD6L7vB0EGwUR6lQ0NK5iCTHjnLVR9CVcJY,355
141
145
  mistralai/basesdk.py,sha256=GsU5bp8O5fBCl34tKxaYmeYSIIM971eAPeFBBC_BpFo,12191
142
146
  mistralai/batch.py,sha256=YN4D0Duwrap9Ysmp_lRpADYp1Znay7THE_z8ERGvDds,501
143
- mistralai/chat.py,sha256=wW_GDTwvmRYpowDPnKSbUpFohRLCwdS7pqZmNAtW3mY,39985
144
- mistralai/classifiers.py,sha256=GG9mN9904sAjp4a9FETbIgK96SrOwREFe_Zrb_1zljY,17504
147
+ mistralai/chat.py,sha256=1XVVVvDi726bq6HXCur6-dsmFfzQAEpEWbKT_3sTZ4A,40549
148
+ mistralai/classifiers.py,sha256=Cbrb6X_eq3-Yz5ZhWkOsFDTGbo3hkgh-vtIEQmU_UdI,33776
145
149
  mistralai/client.py,sha256=hrPg-LciKMKiascF0WbRRmqQyCv1lb2yDh6j-aaKVNo,509
146
- mistralai/embeddings.py,sha256=5tTfvz5g9QYqEYPp785bPm88HvsJC9Ha_NcEuOKfiww,8536
150
+ mistralai/embeddings.py,sha256=Tq5ZEo6CR0ktQCdxX7mhLy5CfzI5c8mtkuadIVtsWgM,8644
147
151
  mistralai/extra/README.md,sha256=BTS9fy0ijkiUP7ZVoFQ7FVBxHtXIXqucYZyy_ucFjo4,1739
148
152
  mistralai/extra/__init__.py,sha256=MHf0pUgLc9Sb7eTUE31JlE2FKMxfQupmJ_iR8UkgQ9w,360
149
153
  mistralai/extra/struct_chat.py,sha256=ZkpdExC5rgC-nBZ44hQIVhQmK6lYMk36RBSFPZMFaIg,2157
@@ -157,40 +161,52 @@ mistralai/files.py,sha256=uejTIBoumK7wMp51e9F2TZsiRDXX9NRnBGgMuaM21eg,45763
157
161
  mistralai/fim.py,sha256=UMx-bFYbaSyANZug8VrCabHsqePdiHoYQO1YMKB2MvY,27935
158
162
  mistralai/fine_tuning.py,sha256=UENQqfE054VEsAYxdruV-TBLFIFfO-joXNznH08GUvE,477
159
163
  mistralai/httpclient.py,sha256=lC-YQ7q4yiJGKElxBeb3aZnr-4aYxjgEpZ6roeXYlyg,4318
160
- mistralai/jobs.py,sha256=WmyPoGpvCV0QSbxM6PGE1qs_b2t44wn6yoM7eL1GJD8,44651
161
- mistralai/mistral_jobs.py,sha256=NdlPFopM1YzsLqHciZilF2D5Lsezqk4TviYR_mpNZUA,31102
162
- mistralai/models/__init__.py,sha256=vkNm0A_E435ipGQcXBZ2K_WhEi7nEVjVQPR3SdLvJ28,22838
163
- mistralai/models/agentscompletionrequest.py,sha256=2tV6_p33zLCfBD7EzlAVeSjG0E_pknbVZlbQFM3Lulc,7794
164
- mistralai/models/agentscompletionstreamrequest.py,sha256=D1fla5nnnwNKXwHG1w4XVGnqaEvx6sOuhTXdP_e65sM,7239
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
+ mistralai/models/agentscompletionrequest.py,sha256=gyGoh1KsCGbOpfmaqk9d_hf1CYhWIriH4vaeQoEDfzU,7920
168
+ mistralai/models/agentscompletionstreamrequest.py,sha256=ZI4iFtl6qDJZ5QTIZ7vDIyFQ9n9rqVqN6tJQAdjpQjA,7365
165
169
  mistralai/models/apiendpoint.py,sha256=Hvar5leWsJR_FYb0UzRlSw3vRdBZhk_6BR5r2pIb214,400
166
- mistralai/models/archiveftmodelout.py,sha256=dQx1J91UA06pjk2r7okhKMyBBePmHal7SPpn6Y_wEsY,820
170
+ mistralai/models/archiveftmodelout.py,sha256=VdppiqIB9JGNB2B0-Y6XQfQgDmB-hOa1Bta3v_StbLs,565
167
171
  mistralai/models/assistantmessage.py,sha256=pmOhSINRB8sJ11lNtfKEL0k6-JnTEJ7cjlWW9D0pIMM,2624
168
172
  mistralai/models/basemodelcard.py,sha256=nv-xjoZFCuIdjKBl98dVH5puT7qh0AC2MaE7WTsMxfs,2985
169
173
  mistralai/models/batcherror.py,sha256=tThkO9B-g-6eDSBCm1Emd-zDI4B3mk2vAl0L1MI3pdQ,390
170
174
  mistralai/models/batchjobin.py,sha256=1GDaaHJeGVo71F4HVZkTdX92bmr3DieNB0ZuHFzBIeE,1850
171
- mistralai/models/batchjobout.py,sha256=AXFSgDFGY_1LFVHtVdp66y08DUZCxsZtZ_NzTAJYDWM,3067
172
- 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
173
177
  mistralai/models/batchjobstatus.py,sha256=WlrIl5vWQGfLmgQA91_9CnCMKhWN6Lli458fT-4Asj4,294
178
+ mistralai/models/chatclassificationrequest.py,sha256=PmU036oOlGqfd75hNESDUJiN4uJNYguACoCt6CzBC2M,534
174
179
  mistralai/models/chatcompletionchoice.py,sha256=6iIFLZj2KYx0HFfzS3-E3sNXG6mPEAlDyXxIA5iZI_U,849
175
- mistralai/models/chatcompletionrequest.py,sha256=Qm2b3Ohv3hQi4N6bGn53EsdiHDmwK8BL4JFT06R3VT4,9651
180
+ mistralai/models/chatcompletionrequest.py,sha256=6Innwpi7UnKmyauATOJForAVvW0tkSnbjsiQOOp5OKg,9777
176
181
  mistralai/models/chatcompletionresponse.py,sha256=sLE-_Bx9W5rH2-HE2fBWPVbJbmBWx_jSY2mJ3KBEn6w,792
177
- mistralai/models/chatcompletionstreamrequest.py,sha256=5IPSsJC51NdNdQ3uZrVnHx0eIZUvFEIeJ9CD6T53Bz4,9339
178
- mistralai/models/chatmoderationrequest.py,sha256=LX-dhlYxecEzChSTt4jo4DA8lC4DEp5brgaiksTGF-o,2367
182
+ mistralai/models/chatcompletionstreamrequest.py,sha256=0NFa_nMMRmHU66Hsgu1Zm4fggT0AzvW_imrkyZ4sUxc,9465
183
+ mistralai/models/chatmoderationrequest.py,sha256=x1eAoxx_GhaxqGRe4wsqNaUi59K39HQakkedLJVUVD8,2236
179
184
  mistralai/models/checkpointout.py,sha256=A2kXS8-VT_1lbg3brifVjZD6tXdsET8vLqBm2a-yXgA,1109
180
- mistralai/models/classificationobject.py,sha256=JqaKo3AQD4t5X12ZnHjJ6K3Y6LXUn94uGdLJSoGr8vY,665
181
185
  mistralai/models/classificationrequest.py,sha256=FqQfSrGYwLUjVw78Ft7tbmhAkUN0FqolCn4MNArOuR8,922
182
- 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
183
195
  mistralai/models/completionchunk.py,sha256=Cdq-FBWa1oBhrxapoOAj8qr6xmkeIPsfPQSbjeK6NLY,871
196
+ mistralai/models/completiondetailedjobout.py,sha256=qbUrYfpgNXt7g5s91aB5k07gcUlo8J7OPHivBvWeUVw,5021
184
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
185
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
186
203
  mistralai/models/contentchunk.py,sha256=V8-d2u9ReICA6uXZwJTUXu88VfKRIAsLRO6o113Mcw8,1073
187
204
  mistralai/models/delete_model_v1_models_model_id_deleteop.py,sha256=lnVRFX-G0jkn1dCFC89sXY2Pj_w4QfMDeF1tPjS4hWE,602
188
205
  mistralai/models/deletefileout.py,sha256=s3a-H2RgFQ9HX0kYSmP6GwmwE1jghz7dBj-3G0NBVSY,587
189
206
  mistralai/models/deletemodelout.py,sha256=W_crO0WtksoKUgq5s9Yh8zS8RxSuyKYQCBt1i8vB1sE,693
190
207
  mistralai/models/deltamessage.py,sha256=7NtvEjdmBOl86rwOx7x2fcCCJSzIF8K6-eu-G9Wr9PI,1939
191
- mistralai/models/detailedjobout.py,sha256=aw3xmCM6E2kE1cPI5MtLZOdbtaP7FLBeHZG7ACtlEKg,4862
192
208
  mistralai/models/documenturlchunk.py,sha256=j3JB_Cy1eIRY7fTJe8AvQrdrLEA6xsJcM1l9_a1Sh68,1704
193
- mistralai/models/embeddingrequest.py,sha256=-EbPsiGUIur80rP5QJ8QaoN5SQGoVmxVUDmUUtFB0CY,762
209
+ mistralai/models/embeddingrequest.py,sha256=5GUp8OUrIAcoSdhJLO8Ue45_kGuzVaCqz85g0ZQx3gM,864
194
210
  mistralai/models/embeddingresponse.py,sha256=te6E_LYEzRjHJ9QREmsFp5PeNP2J_8ALVjyb1T20pNA,663
195
211
  mistralai/models/embeddingresponsedata.py,sha256=fJ3mrZqyBBBE40a6iegOJX3DVDfgyMRq23ByeGSTLFk,534
196
212
  mistralai/models/eventout.py,sha256=TouRJeISBLphMTPHfgSOpuoOmbGDVohPOrdgHyExMpw,1633
@@ -206,38 +222,42 @@ mistralai/models/filesignedurl.py,sha256=VwvuhzhJulAB99Qxz6zr-2F1aINosAfaSxU0Ihy
206
222
  mistralai/models/fimcompletionrequest.py,sha256=wWDCkQ_PMnjB8DrIuIvVJlPGqQtTpVDHt4p7xJ204Ug,6565
207
223
  mistralai/models/fimcompletionresponse.py,sha256=_QwzRuL3KuKkyrA4Fxp366SW0H0EzOA7f4FLkWLm-PM,790
208
224
  mistralai/models/fimcompletionstreamrequest.py,sha256=fxuR8FDOWMwIqlYU9ttAfGeRdVgTz4l2k26_OEfxelg,5944
209
- 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
210
228
  mistralai/models/ftmodelcard.py,sha256=G3dioHDMOhbI5HIw5gCaxZDb1sCthBzkXIAYMNHwya8,3300
211
- mistralai/models/ftmodelout.py,sha256=dw-y8KKT_7rzW6tu10gfc1YKB8-Kpw4e4zy23z_U1d4,2530
212
- mistralai/models/function.py,sha256=MTJfwFM17CPKhzMh4zwOL3zM6INCieLw8_rOT-zuDw8,533
229
+ mistralai/models/function.py,sha256=QaQriwBCCIS65IHO5Ge2OnMW6L1dS-o8JS8zlGYKSRU,534
213
230
  mistralai/models/functioncall.py,sha256=VvvBe4bVq1Irqo5t4_n1iq60UF7hLf8tE_GjkbyM8iE,556
214
231
  mistralai/models/functionname.py,sha256=jgd0moI9eORQtEAQI4ROiMSKpWSbCLmK6IhDn7uppKY,467
215
- mistralai/models/githubrepositoryin.py,sha256=kHU3QnOEJsdsyAt-74jrY2ztEao3aXcNdtj7aOgASRg,1956
216
- 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
217
234
  mistralai/models/httpvalidationerror.py,sha256=l47dL2BTqauhRn4_GdSl3TC-QWsdL98HoloMvp6vtRQ,604
218
235
  mistralai/models/imageurl.py,sha256=6Fpt-8V3XYK-3u_Lw85gbMnyFWUdbNhOxjldqCvSpKs,1365
219
236
  mistralai/models/imageurlchunk.py,sha256=yHgdAi_jOw-e5aXd4Dlr7YCtJcyw-W3QYol8-MAAT1Y,994
220
- 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
221
240
  mistralai/models/jobmetadataout.py,sha256=wtKbig55Uheqwxp-VUr8Q3KH8eSSB0Vt067Ux7_caEo,2412
222
- mistralai/models/jobout.py,sha256=px44vM7dbJ5ZD5aCHOAMeSW2pZ3DPV2TMR0dVsRiVvs,6103
223
241
  mistralai/models/jobs_api_routes_batch_cancel_batch_jobop.py,sha256=3Q-YaI2zAX550v--wedoh9XoWg2rRSVFIYOrv2SjhG8,514
224
242
  mistralai/models/jobs_api_routes_batch_get_batch_jobop.py,sha256=8kCUZZZKrkDCXFtvWZVcF1XObl8QhLEajBjjfZrd12o,508
225
- 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
226
244
  mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py,sha256=pevOFk9Ji8iebXVadr5d882kKjrvT6_R6b8qBTYkQAU,628
227
- mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py,sha256=Q75l-kuKesb_x7uBkQNumTVBqzD9DmeTiWpOGSmtFwk,614
228
- mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py,sha256=FlWx7DxCdxgWrc3qTwc6XwjonzPG4BM1WDUGW2Wqij8,705
229
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py,sha256=742v4h88GSbgP2M-5J_0hyNSdtbZ9_awaEWXCL1hbAw,610
230
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py,sha256=WQMJ7nmQ8G2W-K0dGGUOP4cSVou_OlUwzUBWOP3EmPE,5491
231
- 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
232
250
  mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py,sha256=_pkyhD7OzG-59fgcajI9NmSLTLDktkCxXo_IuvWeyfs,636
233
- mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py,sha256=s-EYS-Hw0NExYeIyN-3JlHbKmnTmtyB8ljVSfOylqYk,907
234
- mistralai/models/jobsout.py,sha256=uCKt0aw7yXzI4oLDGeAAEhsRjdRg3g7lPopg0__czTA,818
235
- mistralai/models/jsonschema.py,sha256=Sh6VCcRxJffd-vXX61GVElbxKNi-j2MKvMUZQcW5EUs,1653
236
- mistralai/models/legacyjobmetadataout.py,sha256=08zAGNTSrICsK8u2SFFUXiNWF7MCQvezmFQeMQzxsys,4762
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
253
+ mistralai/models/jsonschema.py,sha256=Itbk3BS9M9nnEPwShGyyOCVmqfbP6y44XsIUn6d7cDY,1652
254
+ mistralai/models/legacyjobmetadataout.py,sha256=KrKrOG58lmUiISX886l-6eKV1a3-GvERdMYjCFRMMSg,4487
237
255
  mistralai/models/listfilesout.py,sha256=tW2fNabLKcftc5kytkjwVaChlOzWRL4FKtNzDak9MNs,468
238
256
  mistralai/models/metricout.py,sha256=dXQMMU4Nk6-Zr06Jx1TWilFi6cOwiVLjSanCFn0cPxo,2034
239
257
  mistralai/models/modelcapabilities.py,sha256=No-Dl09zT1sG4MxsWnx4s8Yo1tUeMQ7k-HR_iQFIMFc,703
240
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
241
261
  mistralai/models/ocrimageobject.py,sha256=QDylsNCXy78rWLHuE4CrnQAPXnubz0-FN1wQXtsVsDA,2534
242
262
  mistralai/models/ocrpagedimensions.py,sha256=oP4v80I8d6ZELSZt6cRoECd6uIONgdyCeeFalm-4OvM,609
243
263
  mistralai/models/ocrpageobject.py,sha256=s0OzcCA0cLTFYahNOr0-r4ds7WOsXYhEx-QcNLngW7M,2085
@@ -263,17 +283,15 @@ mistralai/models/toolchoiceenum.py,sha256=Ca4ileCwuOjfPzIXLRIxT3RkE5zR7oqV6nXU-U
263
283
  mistralai/models/toolmessage.py,sha256=zcu054y_vBaGbsCWmq58DsY8aiRrSNwzC4LJz_5kUVg,2038
264
284
  mistralai/models/tooltypes.py,sha256=NcvRsZA_ORf4WY_gn6WjgX6eEXmR2faVG3Q1sLlzdG8,244
265
285
  mistralai/models/trainingfile.py,sha256=IlwKP2GL8gL0VHVJ_zUDV-Q0F7obdLzMMRDDJatSjwo,400
266
- mistralai/models/trainingparameters.py,sha256=GA7OFskn6BxHs_N6YIv0s6e1j_xmqrwcuCioqIcPZK8,2298
267
- mistralai/models/trainingparametersin.py,sha256=tKiFYm9RUOegdRX_kka_On-mOipX5fEv1sM_7wZ2leY,4556
268
- mistralai/models/unarchiveftmodelout.py,sha256=8sn1THvCNnZpPcw3m3avWiBHe357D_nSrp0LcFFYVsY,831
286
+ mistralai/models/unarchiveftmodelout.py,sha256=IY0oHKupATBYjAn7Xz1AVqyoSeap1l4nnWeMsLTK7yI,576
269
287
  mistralai/models/updateftmodelin.py,sha256=Slabh0wwDFP8bzXWFqDzGoLh3KPnOAEyc7vttabSqX8,1466
270
288
  mistralai/models/uploadfileout.py,sha256=q05j3XeaoF-AHqIshXJ73dUL5zOMxxQAF-w-u2tmVNU,2603
271
289
  mistralai/models/usageinfo.py,sha256=66AzKK8cOFft498eUOUx6C_mCFAt5LmIFrYthJfLWpU,401
272
290
  mistralai/models/usermessage.py,sha256=kjS5HudMsaRNfeUhFFBCyY8l-umlHvGk8wvTIq6-qzY,1793
273
291
  mistralai/models/validationerror.py,sha256=DouDBJmBhbW4KPsF5rZEyBdnB_adC-l32kuHC0bvO2I,526
274
- mistralai/models/wandbintegration.py,sha256=BkLD3r08ToZkMAhPXdnC7bfOGr3banKqt1wVKMGehUQ,2406
275
- mistralai/models/wandbintegrationout.py,sha256=C0HpS8jJGnACs7eWnuIq0qJEroIUAbjkvzfSSkSKS7Q,2274
276
- mistralai/models_.py,sha256=lfFFHRx2Gt8d6HODFYfSgHO_roXbIvLX5aUj2jtKYBs,46140
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
277
295
  mistralai/ocr.py,sha256=R4afXZ1Pk1f6k7Acady1HwRdW-kZXzs7d_Isa7oxJpo,10051
278
296
  mistralai/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
279
297
  mistralai/sdk.py,sha256=q18oi4qj0PU6fsB_5BaWy-18bGzLxOgMlkSvEgCW4MY,6453
@@ -296,7 +314,7 @@ mistralai/utils/serializers.py,sha256=EGH40Pgp3sSK9uM4PxL7_SYzSHtmo-Uy6QIE5xLVg6
296
314
  mistralai/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
297
315
  mistralai/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
298
316
  mistralai/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
299
- mistralai-1.5.2rc1.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
300
- mistralai-1.5.2rc1.dist-info/METADATA,sha256=KNSU-zUh9rzQmHSt3ifvlqhG2GuONgKI7u3sRitUvwM,30060
301
- mistralai-1.5.2rc1.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
302
- mistralai-1.5.2rc1.dist-info/RECORD,,
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,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.1.1
2
+ Generator: poetry-core 2.1.2
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "mistralai_azure"
6
- __version__: str = "1.2.6"
6
+ __version__: str = "1.6.0"
7
7
  __openapi_doc_version__: str = "0.0.2"
8
8
  __gen_version__: str = "2.548.6"
9
- __user_agent__: str = "speakeasy-sdk/python 1.2.6 2.548.6 0.0.2 mistralai_azure"
9
+ __user_agent__: str = "speakeasy-sdk/python 1.6.0 2.548.6 0.0.2 mistralai_azure"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
mistralai_azure/chat.py CHANGED
@@ -40,6 +40,7 @@ class Chat(BaseSDK):
40
40
  prediction: Optional[
41
41
  Union[models.Prediction, models.PredictionTypedDict]
42
42
  ] = None,
43
+ parallel_tool_calls: Optional[bool] = None,
43
44
  safe_prompt: Optional[bool] = None,
44
45
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
45
46
  server_url: Optional[str] = None,
@@ -65,6 +66,7 @@ class Chat(BaseSDK):
65
66
  :param frequency_penalty: frequency_penalty penalizes the repetition of words based on their frequency in the generated text. A higher frequency penalty discourages the model from repeating words that have already appeared frequently in the output, promoting diversity and reducing repetition.
66
67
  :param n: Number of completions to return for each request, input tokens are only billed once.
67
68
  :param prediction:
69
+ :param parallel_tool_calls:
68
70
  :param safe_prompt: Whether to inject a safety prompt before all conversations.
69
71
  :param retries: Override the default retry configuration for this method
70
72
  :param server_url: Override the default server URL for this method
@@ -103,6 +105,7 @@ class Chat(BaseSDK):
103
105
  prediction=utils.get_pydantic_model(
104
106
  prediction, Optional[models.Prediction]
105
107
  ),
108
+ parallel_tool_calls=parallel_tool_calls,
106
109
  safe_prompt=safe_prompt,
107
110
  )
108
111
 
@@ -208,6 +211,7 @@ class Chat(BaseSDK):
208
211
  prediction: Optional[
209
212
  Union[models.Prediction, models.PredictionTypedDict]
210
213
  ] = None,
214
+ parallel_tool_calls: Optional[bool] = None,
211
215
  safe_prompt: Optional[bool] = None,
212
216
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
213
217
  server_url: Optional[str] = None,
@@ -233,6 +237,7 @@ class Chat(BaseSDK):
233
237
  :param frequency_penalty: frequency_penalty penalizes the repetition of words based on their frequency in the generated text. A higher frequency penalty discourages the model from repeating words that have already appeared frequently in the output, promoting diversity and reducing repetition.
234
238
  :param n: Number of completions to return for each request, input tokens are only billed once.
235
239
  :param prediction:
240
+ :param parallel_tool_calls:
236
241
  :param safe_prompt: Whether to inject a safety prompt before all conversations.
237
242
  :param retries: Override the default retry configuration for this method
238
243
  :param server_url: Override the default server URL for this method
@@ -271,6 +276,7 @@ class Chat(BaseSDK):
271
276
  prediction=utils.get_pydantic_model(
272
277
  prediction, Optional[models.Prediction]
273
278
  ),
279
+ parallel_tool_calls=parallel_tool_calls,
274
280
  safe_prompt=safe_prompt,
275
281
  )
276
282
 
@@ -384,6 +390,7 @@ class Chat(BaseSDK):
384
390
  prediction: Optional[
385
391
  Union[models.Prediction, models.PredictionTypedDict]
386
392
  ] = None,
393
+ parallel_tool_calls: Optional[bool] = None,
387
394
  safe_prompt: Optional[bool] = None,
388
395
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
389
396
  server_url: Optional[str] = None,
@@ -407,6 +414,7 @@ class Chat(BaseSDK):
407
414
  :param frequency_penalty: frequency_penalty penalizes the repetition of words based on their frequency in the generated text. A higher frequency penalty discourages the model from repeating words that have already appeared frequently in the output, promoting diversity and reducing repetition.
408
415
  :param n: Number of completions to return for each request, input tokens are only billed once.
409
416
  :param prediction:
417
+ :param parallel_tool_calls:
410
418
  :param safe_prompt: Whether to inject a safety prompt before all conversations.
411
419
  :param retries: Override the default retry configuration for this method
412
420
  :param server_url: Override the default server URL for this method
@@ -447,6 +455,7 @@ class Chat(BaseSDK):
447
455
  prediction=utils.get_pydantic_model(
448
456
  prediction, Optional[models.Prediction]
449
457
  ),
458
+ parallel_tool_calls=parallel_tool_calls,
450
459
  safe_prompt=safe_prompt,
451
460
  )
452
461
 
@@ -556,6 +565,7 @@ class Chat(BaseSDK):
556
565
  prediction: Optional[
557
566
  Union[models.Prediction, models.PredictionTypedDict]
558
567
  ] = None,
568
+ parallel_tool_calls: Optional[bool] = None,
559
569
  safe_prompt: Optional[bool] = None,
560
570
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
561
571
  server_url: Optional[str] = None,
@@ -579,6 +589,7 @@ class Chat(BaseSDK):
579
589
  :param frequency_penalty: frequency_penalty penalizes the repetition of words based on their frequency in the generated text. A higher frequency penalty discourages the model from repeating words that have already appeared frequently in the output, promoting diversity and reducing repetition.
580
590
  :param n: Number of completions to return for each request, input tokens are only billed once.
581
591
  :param prediction:
592
+ :param parallel_tool_calls:
582
593
  :param safe_prompt: Whether to inject a safety prompt before all conversations.
583
594
  :param retries: Override the default retry configuration for this method
584
595
  :param server_url: Override the default server URL for this method
@@ -619,6 +630,7 @@ class Chat(BaseSDK):
619
630
  prediction=utils.get_pydantic_model(
620
631
  prediction, Optional[models.Prediction]
621
632
  ),
633
+ parallel_tool_calls=parallel_tool_calls,
622
634
  safe_prompt=safe_prompt,
623
635
  )
624
636
 
@@ -54,6 +54,14 @@ from .functioncall import (
54
54
  )
55
55
  from .functionname import FunctionName, FunctionNameTypedDict
56
56
  from .httpvalidationerror import HTTPValidationError, HTTPValidationErrorData
57
+ from .imageurl import ImageURL, ImageURLTypedDict
58
+ from .imageurlchunk import (
59
+ ImageURLChunk,
60
+ ImageURLChunkImageURL,
61
+ ImageURLChunkImageURLTypedDict,
62
+ ImageURLChunkType,
63
+ ImageURLChunkTypedDict,
64
+ )
57
65
  from .jsonschema import JSONSchema, JSONSchemaTypedDict
58
66
  from .prediction import Prediction, PredictionTypedDict
59
67
  from .referencechunk import ReferenceChunk, ReferenceChunkType, ReferenceChunkTypedDict
@@ -143,6 +151,13 @@ __all__ = [
143
151
  "FunctionTypedDict",
144
152
  "HTTPValidationError",
145
153
  "HTTPValidationErrorData",
154
+ "ImageURL",
155
+ "ImageURLChunk",
156
+ "ImageURLChunkImageURL",
157
+ "ImageURLChunkImageURLTypedDict",
158
+ "ImageURLChunkType",
159
+ "ImageURLChunkTypedDict",
160
+ "ImageURLTypedDict",
146
161
  "JSONSchema",
147
162
  "JSONSchemaTypedDict",
148
163
  "Loc",