mistralai 1.9.3__py3-none-any.whl → 1.9.7__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 CHANGED
@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "mistralai"
6
- __version__: str = "1.9.3"
6
+ __version__: str = "1.9.7"
7
7
  __openapi_doc_version__: str = "1.0.0"
8
8
  __gen_version__: str = "2.634.2"
9
- __user_agent__: str = "speakeasy-sdk/python 1.9.3 2.634.2 1.0.0 mistralai"
9
+ __user_agent__: str = "speakeasy-sdk/python 1.9.7 2.634.2 1.0.0 mistralai"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
mistralai/accesses.py CHANGED
@@ -9,6 +9,8 @@ from typing import Any, Mapping, Optional
9
9
 
10
10
 
11
11
  class Accesses(BaseSDK):
12
+ r"""(beta) Libraries API - manage access to a library."""
13
+
12
14
  def list(
13
15
  self,
14
16
  *,
mistralai/beta.py CHANGED
@@ -13,7 +13,7 @@ class Beta(BaseSDK):
13
13
  agents: MistralAgents
14
14
  r"""(beta) Agents API"""
15
15
  libraries: Libraries
16
- r"""(beta) Libraries API for indexing documents to enhance agent capabilities."""
16
+ r"""(beta) Libraries API to create and manage libraries - index your documents to enhance agent capabilities."""
17
17
 
18
18
  def __init__(self, sdk_config: SDKConfiguration) -> None:
19
19
  BaseSDK.__init__(self, sdk_config)
@@ -85,7 +85,7 @@ class Conversations(BaseSDK):
85
85
  retries=retries,
86
86
  server_url=server_url,
87
87
  timeout_ms=timeout_ms,
88
- **req,
88
+ **req, # type: ignore
89
89
  )
90
90
  run_result.conversation_id = res.conversation_id
91
91
  run_ctx.conversation_id = res.conversation_id
@@ -164,7 +164,7 @@ class Conversations(BaseSDK):
164
164
  retries=retries,
165
165
  server_url=server_url,
166
166
  timeout_ms=timeout_ms,
167
- **req,
167
+ **req, # type: ignore
168
168
  )
169
169
  else:
170
170
  res = await self.append_stream_async(
mistralai/documents.py CHANGED
@@ -9,6 +9,8 @@ from typing import Any, Mapping, Optional, Union
9
9
 
10
10
 
11
11
  class Documents(BaseSDK):
12
+ r"""(beta) Libraries API - manage documents in a library."""
13
+
12
14
  def list(
13
15
  self,
14
16
  *,
mistralai/libraries.py CHANGED
@@ -12,10 +12,12 @@ from typing import Any, Mapping, Optional
12
12
 
13
13
 
14
14
  class Libraries(BaseSDK):
15
- r"""(beta) Libraries API for indexing documents to enhance agent capabilities."""
15
+ r"""(beta) Libraries API to create and manage libraries - index your documents to enhance agent capabilities."""
16
16
 
17
17
  documents: Documents
18
+ r"""(beta) Libraries API - manage documents in a library."""
18
19
  accesses: Accesses
20
+ r"""(beta) Libraries API - manage access to a library."""
19
21
 
20
22
  def __init__(self, sdk_config: SDKConfiguration) -> None:
21
23
  BaseSDK.__init__(self, sdk_config)
@@ -777,7 +777,7 @@ if TYPE_CHECKING:
777
777
  )
778
778
  from .timestampgranularity import TimestampGranularity
779
779
  from .tool import Tool, ToolTypedDict
780
- from .toolcall import Metadata, MetadataTypedDict, ToolCall, ToolCallTypedDict
780
+ from .toolcall import ToolCall, ToolCallTypedDict
781
781
  from .toolchoice import ToolChoice, ToolChoiceTypedDict
782
782
  from .toolchoiceenum import ToolChoiceEnum
783
783
  from .toolexecutiondeltaevent import (
@@ -1383,8 +1383,6 @@ __all__ = [
1383
1383
  "MessageOutputEventTypedDict",
1384
1384
  "Messages",
1385
1385
  "MessagesTypedDict",
1386
- "Metadata",
1387
- "MetadataTypedDict",
1388
1386
  "MetricOut",
1389
1387
  "MetricOutTypedDict",
1390
1388
  "MistralPromptMode",
@@ -2172,8 +2170,6 @@ _dynamic_imports: dict[str, str] = {
2172
2170
  "TimestampGranularity": ".timestampgranularity",
2173
2171
  "Tool": ".tool",
2174
2172
  "ToolTypedDict": ".tool",
2175
- "Metadata": ".toolcall",
2176
- "MetadataTypedDict": ".toolcall",
2177
2173
  "ToolCall": ".toolcall",
2178
2174
  "ToolCallTypedDict": ".toolcall",
2179
2175
  "ToolChoice": ".toolchoice",
@@ -4,6 +4,7 @@ from __future__ import annotations
4
4
  from .documenturlchunk import DocumentURLChunk, DocumentURLChunkTypedDict
5
5
  from .imageurlchunk import ImageURLChunk, ImageURLChunkTypedDict
6
6
  from .textchunk import TextChunk, TextChunkTypedDict
7
+ from .thinkchunk import ThinkChunk, ThinkChunkTypedDict
7
8
  from .toolfilechunk import ToolFileChunk, ToolFileChunkTypedDict
8
9
  from typing import Union
9
10
  from typing_extensions import TypeAliasType
@@ -15,6 +16,7 @@ MessageInputContentChunksTypedDict = TypeAliasType(
15
16
  TextChunkTypedDict,
16
17
  ImageURLChunkTypedDict,
17
18
  DocumentURLChunkTypedDict,
19
+ ThinkChunkTypedDict,
18
20
  ToolFileChunkTypedDict,
19
21
  ],
20
22
  )
@@ -22,5 +24,5 @@ MessageInputContentChunksTypedDict = TypeAliasType(
22
24
 
23
25
  MessageInputContentChunks = TypeAliasType(
24
26
  "MessageInputContentChunks",
25
- Union[TextChunk, ImageURLChunk, DocumentURLChunk, ToolFileChunk],
27
+ Union[TextChunk, ImageURLChunk, DocumentURLChunk, ThinkChunk, ToolFileChunk],
26
28
  )
@@ -4,6 +4,7 @@ from __future__ import annotations
4
4
  from .documenturlchunk import DocumentURLChunk, DocumentURLChunkTypedDict
5
5
  from .imageurlchunk import ImageURLChunk, ImageURLChunkTypedDict
6
6
  from .textchunk import TextChunk, TextChunkTypedDict
7
+ from .thinkchunk import ThinkChunk, ThinkChunkTypedDict
7
8
  from .toolfilechunk import ToolFileChunk, ToolFileChunkTypedDict
8
9
  from .toolreferencechunk import ToolReferenceChunk, ToolReferenceChunkTypedDict
9
10
  from typing import Union
@@ -16,6 +17,7 @@ MessageOutputContentChunksTypedDict = TypeAliasType(
16
17
  TextChunkTypedDict,
17
18
  ImageURLChunkTypedDict,
18
19
  DocumentURLChunkTypedDict,
20
+ ThinkChunkTypedDict,
19
21
  ToolFileChunkTypedDict,
20
22
  ToolReferenceChunkTypedDict,
21
23
  ],
@@ -25,6 +27,11 @@ MessageOutputContentChunksTypedDict = TypeAliasType(
25
27
  MessageOutputContentChunks = TypeAliasType(
26
28
  "MessageOutputContentChunks",
27
29
  Union[
28
- TextChunk, ImageURLChunk, DocumentURLChunk, ToolFileChunk, ToolReferenceChunk
30
+ TextChunk,
31
+ ImageURLChunk,
32
+ DocumentURLChunk,
33
+ ThinkChunk,
34
+ ToolFileChunk,
35
+ ToolReferenceChunk,
29
36
  ],
30
37
  )
@@ -4,6 +4,7 @@ from __future__ import annotations
4
4
  from .documenturlchunk import DocumentURLChunk, DocumentURLChunkTypedDict
5
5
  from .imageurlchunk import ImageURLChunk, ImageURLChunkTypedDict
6
6
  from .textchunk import TextChunk, TextChunkTypedDict
7
+ from .thinkchunk import ThinkChunk, ThinkChunkTypedDict
7
8
  from .toolfilechunk import ToolFileChunk, ToolFileChunkTypedDict
8
9
  from .toolreferencechunk import ToolReferenceChunk, ToolReferenceChunkTypedDict
9
10
  from typing import Union
@@ -16,6 +17,7 @@ OutputContentChunksTypedDict = TypeAliasType(
16
17
  TextChunkTypedDict,
17
18
  ImageURLChunkTypedDict,
18
19
  DocumentURLChunkTypedDict,
20
+ ThinkChunkTypedDict,
19
21
  ToolFileChunkTypedDict,
20
22
  ToolReferenceChunkTypedDict,
21
23
  ],
@@ -25,6 +27,11 @@ OutputContentChunksTypedDict = TypeAliasType(
25
27
  OutputContentChunks = TypeAliasType(
26
28
  "OutputContentChunks",
27
29
  Union[
28
- TextChunk, ImageURLChunk, DocumentURLChunk, ToolFileChunk, ToolReferenceChunk
30
+ TextChunk,
31
+ ImageURLChunk,
32
+ DocumentURLChunk,
33
+ ThinkChunk,
34
+ ToolFileChunk,
35
+ ToolReferenceChunk,
29
36
  ],
30
37
  )
@@ -3,28 +3,18 @@
3
3
  from __future__ import annotations
4
4
  from .functioncall import FunctionCall, FunctionCallTypedDict
5
5
  from .tooltypes import ToolTypes
6
- from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
6
+ from mistralai.types import BaseModel
7
7
  from mistralai.utils import validate_open_enum
8
- from pydantic import model_serializer
9
8
  from pydantic.functional_validators import PlainValidator
10
9
  from typing import Optional
11
10
  from typing_extensions import Annotated, NotRequired, TypedDict
12
11
 
13
12
 
14
- class MetadataTypedDict(TypedDict):
15
- pass
16
-
17
-
18
- class Metadata(BaseModel):
19
- pass
20
-
21
-
22
13
  class ToolCallTypedDict(TypedDict):
23
14
  function: FunctionCallTypedDict
24
15
  id: NotRequired[str]
25
16
  type: NotRequired[ToolTypes]
26
17
  index: NotRequired[int]
27
- metadata: NotRequired[Nullable[MetadataTypedDict]]
28
18
 
29
19
 
30
20
  class ToolCall(BaseModel):
@@ -37,35 +27,3 @@ class ToolCall(BaseModel):
37
27
  )
38
28
 
39
29
  index: Optional[int] = 0
40
-
41
- metadata: OptionalNullable[Metadata] = UNSET
42
-
43
- @model_serializer(mode="wrap")
44
- def serialize_model(self, handler):
45
- optional_fields = ["id", "type", "index", "metadata"]
46
- nullable_fields = ["metadata"]
47
- null_default_fields = []
48
-
49
- serialized = handler(self)
50
-
51
- m = {}
52
-
53
- for n, f in type(self).model_fields.items():
54
- k = f.alias or n
55
- val = serialized.get(k)
56
- serialized.pop(k, None)
57
-
58
- optional_nullable = k in optional_fields and k in nullable_fields
59
- is_set = (
60
- self.__pydantic_fields_set__.intersection({n})
61
- or k in null_default_fields
62
- ) # pylint: disable=no-member
63
-
64
- if val is not None and val != UNSET_SENTINEL:
65
- m[k] = val
66
- elif val != UNSET_SENTINEL and (
67
- not k in optional_fields or (optional_nullable and is_set)
68
- ):
69
- m[k] = val
70
-
71
- return m
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: mistralai
3
- Version: 1.9.3
3
+ Version: 1.9.7
4
4
  Summary: Python Client SDK for the Mistral AI API.
5
5
  Author: Mistral
6
6
  Requires-Python: >=3.9
@@ -17,9 +17,11 @@ Requires-Dist: eval-type-backport (>=0.2.0)
17
17
  Requires-Dist: google-auth (>=2.27.0) ; extra == "gcp"
18
18
  Requires-Dist: griffe (>=1.7.3,<2.0) ; extra == "agents"
19
19
  Requires-Dist: httpx (>=0.28.1)
20
+ Requires-Dist: invoke (>=2.2.0,<3.0.0)
20
21
  Requires-Dist: mcp (>=1.0,<2.0) ; (python_version >= "3.10") and (extra == "agents")
21
22
  Requires-Dist: pydantic (>=2.10.3)
22
23
  Requires-Dist: python-dateutil (>=2.8.2)
24
+ Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
23
25
  Requires-Dist: requests (>=2.32.3) ; extra == "gcp"
24
26
  Requires-Dist: typing-inspection (>=0.4.0)
25
27
  Project-URL: Repository, https://github.com/mistralai/client-python.git
@@ -139,19 +139,19 @@ 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=70IiFr5bfsJYafuDkXQWVfl6nY4dQkA5SZoEBCircqs,3047
142
- mistralai/_version.py,sha256=Vb8XrTgLL1Fbw_8RsKfBJHwiD0uHEWI2mmJJWVV2OtE,460
143
- mistralai/accesses.py,sha256=IOjibFwc1eGEaYDebHrBro2lrlpjd8eWD1T_pSC8Uvw,27257
142
+ mistralai/_version.py,sha256=oCbrLM0xwhq7nYsvgqHLY0N9qeBd3fWSRVuToJh4IME,460
143
+ mistralai/accesses.py,sha256=o5VCW-nyOfwzopHo0jSXrPKJ1fqJL88PZto1RwysXPA,27320
144
144
  mistralai/agents.py,sha256=3E-c1YZOp3mS1PqA6OYekZmOcAdLCqWfq1o-hqUMsIw,33960
145
145
  mistralai/async_client.py,sha256=KUdYxIIqoD6L7vB0EGwUR6lQ0NK5iCTHjnLVR9CVcJY,355
146
146
  mistralai/audio.py,sha256=1mHzwydihZEhX72viQmG4NcAl2fvKR9zio2VHWxTK58,572
147
147
  mistralai/basesdk.py,sha256=Ri8PbeqeDKsRWmc7rFsBtrZ8mKglXUkjwqnY543kywQ,11865
148
148
  mistralai/batch.py,sha256=YN4D0Duwrap9Ysmp_lRpADYp1Znay7THE_z8ERGvDds,501
149
- mistralai/beta.py,sha256=LNvtGS1Kg0umW0Xa8EJIfaMoYN3hhx1V-MI9lccIJIw,939
149
+ mistralai/beta.py,sha256=8_W7IM2nNyBN55TQihQhHcTj88XH_Ala7epYAzrGYOI,970
150
150
  mistralai/chat.py,sha256=m6qGMxAAw4hQCRlhuT-LAukCIHdO4X2yVAI5ft9ImjU,41857
151
151
  mistralai/classifiers.py,sha256=EsAvZi0dxM4qDw8xl84h6kZBWm4zdiP-f0eslqvDxAo,34152
152
152
  mistralai/client.py,sha256=hrPg-LciKMKiascF0WbRRmqQyCv1lb2yDh6j-aaKVNo,509
153
- mistralai/conversations.py,sha256=lwc8oIqBHvbcLo_Bp00arT8xU-2fGFxi1RQcpHTKLCU,110846
154
- mistralai/documents.py,sha256=LzmG3vomT7yGLpf-YNVsgcOyYhPZyYH11RMjhXChGaQ,85697
153
+ mistralai/conversations.py,sha256=TXssMV9qjYRSTk90IVXPrzh-N1-pwb9sjKz3-48lRsw,110878
154
+ mistralai/documents.py,sha256=yh7BNimMrNa6XmiF3-ym5VqAuPneKtMXS2fKN5PP8BY,85763
155
155
  mistralai/embeddings.py,sha256=L0jk6bXAc3FUYv0Rqk6CPXXabqhwfYG1OXLMlaille8,9352
156
156
  mistralai/extra/README.md,sha256=BTS9fy0ijkiUP7ZVoFQ7FVBxHtXIXqucYZyy_ucFjo4,1739
157
157
  mistralai/extra/__init__.py,sha256=8DsU_omYYadqcwlmBOoakBwkWKcSohwLmtB8v-jkn2M,392
@@ -178,10 +178,10 @@ mistralai/fim.py,sha256=TDd8FN2M3SKGRjcWcvvS1zot5S4bk_IXZR94IpxsN9Y,28123
178
178
  mistralai/fine_tuning.py,sha256=UENQqfE054VEsAYxdruV-TBLFIFfO-joXNznH08GUvE,477
179
179
  mistralai/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
180
180
  mistralai/jobs.py,sha256=BUeEMx-SR3QrB8tyjjDndtcCTF-cs3640I38AWYW18w,47237
181
- mistralai/libraries.py,sha256=6bdaIz67yacTwN4ELyJOoWssENbYhqgfK-eYYWbaYkw,40912
181
+ mistralai/libraries.py,sha256=C7TqHmnFR3j4yGaEulGRu2Xdp9tW9Pj-FSZZG9fBn9g,41070
182
182
  mistralai/mistral_agents.py,sha256=6osNLzBNN9IFRhpeNzt6VGpqHlCo_6HnmMBvxzqd3F4,46043
183
183
  mistralai/mistral_jobs.py,sha256=LlN0-ro8mMqgRRDtUHxwfA76IjDmScQ9rT1gb6Qu91I,31962
184
- mistralai/models/__init__.py,sha256=wQUpoZx1ddudKdhtIfmuEuYgkY3FuffhP8hsIwlSWjc,97096
184
+ mistralai/models/__init__.py,sha256=I2RwD4xCeJ2UkF1TLJ4iLHpxJRc3rBsvZtEf0-anbOA,96959
185
185
  mistralai/models/agent.py,sha256=kM3lPW08V5B3CfBuIFZrEYAyClECj0Ial7-cQztfGmA,4191
186
186
  mistralai/models/agentconversation.py,sha256=-vqTZ116MNx4JRs9N6cabsGXn4tILg_JP3JcL-iJpK0,2092
187
187
  mistralai/models/agentcreationrequest.py,sha256=VdCCQEnBVfZU2m1EtRy5vEm_zsPIGPGLF21TXKjOm7E,3958
@@ -347,9 +347,9 @@ mistralai/models/listfilesout.py,sha256=tW2fNabLKcftc5kytkjwVaChlOzWRL4FKtNzDak9
347
347
  mistralai/models/listlibraryout.py,sha256=cCMe2v7j03GFEriIVuf_U35uQFNYZVLjefmFPjqxfug,408
348
348
  mistralai/models/listsharingout.py,sha256=w6WChWGxjah_qc8ly_ljumLo01IhnymufWILw56LVr0,408
349
349
  mistralai/models/messageentries.py,sha256=vExZZIyOTkmEi-3Bvw2UG1GwGbGr59U_bX-biwIl0Tk,581
350
- mistralai/models/messageinputcontentchunks.py,sha256=3F8GoSMWv4_JIGUavlyn8aFnHC7KuPiDDbS0U3sW0y0,827
350
+ mistralai/models/messageinputcontentchunks.py,sha256=n2Tpd9ybGn_ey8-mhOfBD3WSTJpPclRzWCSgdWGECg0,924
351
351
  mistralai/models/messageinputentry.py,sha256=F6glVocJnpRtXIZKhBN2mvIlrUtV0MulHAzdimSD-TQ,2818
352
- mistralai/models/messageoutputcontentchunks.py,sha256=LRvAb-Hn0XSKBBRrBdwW7CtMC_X29hzcyPKQ39WlWyo,982
352
+ mistralai/models/messageoutputcontentchunks.py,sha256=dlnavt4P-mTTYdb80ovuF6cRhvwEvKCwQ1E8T3EbKG0,1120
353
353
  mistralai/models/messageoutputentry.py,sha256=KyhPyXMm1pizXP9QQVFofOoUYOf5AvzXMb37wHVeebI,2942
354
354
  mistralai/models/messageoutputevent.py,sha256=5iEtdssMYt27kgobk5SrfTaYE3BrmeDj8sCZtdhqEHg,2715
355
355
  mistralai/models/metricout.py,sha256=dMSDFB4CnYIADYLDcKs3rUrDtOhyRVs8ClKr7uu5yrs,2040
@@ -365,7 +365,7 @@ mistralai/models/ocrpageobject.py,sha256=eu24xe_wLyDlOg0cKIB6zUZTy_FkTTsc7QtxlJI
365
365
  mistralai/models/ocrrequest.py,sha256=eCuFVSZuvR5t-2dr5Hfg3LpW_8AVlA94-8zZZ9tzVOQ,4337
366
366
  mistralai/models/ocrresponse.py,sha256=Z7n6oKu7Dp6I4IlJuh_MhPcKmt0GW7FdtBtPg7060k0,2048
367
367
  mistralai/models/ocrusageinfo.py,sha256=eVedgqaPwqbHaPH80RKq3ccFl-JBh-bXfBbdLEbthG4,1577
368
- mistralai/models/outputcontentchunks.py,sha256=x8Wn5NtHWHjbf_XGTvTOu7kCGZsx-jcrTuifXBkiLbM,954
368
+ mistralai/models/outputcontentchunks.py,sha256=nPlDIHxsZamkZKn4K8Y0iwn72vREG2Ijb70i7fIbzAM,1092
369
369
  mistralai/models/paginationinfo.py,sha256=kEZ66Emg0bpHoGQUXbR4IDDd-pjiejrY4wdcQ5aJRM8,473
370
370
  mistralai/models/prediction.py,sha256=BgWbbeSi1eD9Rh1xk8srXlRgD7Xooj8nLsbSQ21pNRo,718
371
371
  mistralai/models/processingstatusout.py,sha256=kKS_e3oG7IrioJSHdWInJGa47TqtfC7bFufd9W9nZEs,372
@@ -391,7 +391,7 @@ mistralai/models/textchunk.py,sha256=2VD-TR3NOOWJ9Jzcw_E3ryq0GWz6b5XSP3k5o7oVlnc
391
391
  mistralai/models/thinkchunk.py,sha256=HpD23LlAzITRtTQI2naWYp4nDDSnzV7U97QoXSby2Fg,1084
392
392
  mistralai/models/timestampgranularity.py,sha256=UxTv5VJwJ2bkp1cD9kWPptVC8zqUSOa3hb7NatzydH0,179
393
393
  mistralai/models/tool.py,sha256=qLY0XE3uk79v3RsJqVpA81A0K9OWtmX6rwVeKal5ARk,681
394
- mistralai/models/toolcall.py,sha256=qXFNXFqA4P4HQ9Ba2gxz6jmaci6ogxJKjl8UUvvHzHU,2038
394
+ mistralai/models/toolcall.py,sha256=T5-3XQ-CKduBKTWwOeSBuaF90yk4yBgqmyLuXVB5uXQ,824
395
395
  mistralai/models/toolchoice.py,sha256=dGeb5koPp9eqHQuG1u-kP7T5Od6-cPL2rEe06-dqzcs,1021
396
396
  mistralai/models/toolchoiceenum.py,sha256=Ca4ileCwuOjfPzIXLRIxT3RkE5zR7oqV6nXU-UjW0w0,197
397
397
  mistralai/models/toolexecutiondeltaevent.py,sha256=7TxVecESERFvZ_F3KxUHFcFKuFoF1P40GuphPxms3Zk,874
@@ -445,8 +445,7 @@ mistralai/utils/security.py,sha256=vWlpkikOnGN_HRRhJ7Pb8ywVAjiM3d3ey3oTWtM6jTU,6
445
445
  mistralai/utils/serializers.py,sha256=hiHBXM1AY8_N2Z_rvFfNSYwvLBkSQlPGFp8poasdU4s,5986
446
446
  mistralai/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
447
447
  mistralai/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
448
- mistralai/version.py,sha256=iosXhlXclBwBqlADFKEilxAC2wWKbtuBKi87AmPi7s8,196
449
- mistralai-1.9.3.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
450
- mistralai-1.9.3.dist-info/METADATA,sha256=IewWdIQWu1axwJ6e4CSupLHdxihXZNxWm3pzs_qGOi4,37171
451
- mistralai-1.9.3.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
452
- mistralai-1.9.3.dist-info/RECORD,,
448
+ mistralai-1.9.7.dist-info/LICENSE,sha256=rUtQ_9GD0OyLPlb-2uWVdfE87hzudMRmsW-tS-0DK-0,11340
449
+ mistralai-1.9.7.dist-info/METADATA,sha256=AFE0MZduqkuOApBCvcJpWvdSbQzAc4Naj6XANpiDHQw,37249
450
+ mistralai-1.9.7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
451
+ mistralai-1.9.7.dist-info/RECORD,,
mistralai/version.py DELETED
@@ -1,7 +0,0 @@
1
- from importlib import metadata
2
-
3
- try:
4
- __version__ = metadata.version(__package__)
5
- except metadata.PackageNotFoundError:
6
- # Case where package metadata is not available.
7
- __version__ = ""