mistralai 0.4.2__py3-none-any.whl → 0.5.5a50__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/__init__.py +5 -0
- mistralai/_hooks/__init__.py +5 -0
- mistralai/_hooks/custom_user_agent.py +16 -0
- mistralai/_hooks/deprecation_warning.py +26 -0
- mistralai/_hooks/registration.py +17 -0
- mistralai/_hooks/sdkhooks.py +57 -0
- mistralai/_hooks/types.py +76 -0
- mistralai/async_client.py +5 -413
- mistralai/basesdk.py +216 -0
- mistralai/chat.py +475 -0
- mistralai/client.py +5 -414
- mistralai/embeddings.py +182 -0
- mistralai/files.py +600 -84
- mistralai/fim.py +439 -0
- mistralai/fine_tuning.py +855 -0
- mistralai/httpclient.py +78 -0
- mistralai/models/__init__.py +80 -0
- mistralai/models/archiveftmodelout.py +19 -0
- mistralai/models/assistantmessage.py +58 -0
- mistralai/models/chatcompletionchoice.py +33 -0
- mistralai/models/chatcompletionrequest.py +114 -0
- mistralai/models/chatcompletionresponse.py +27 -0
- mistralai/models/chatcompletionstreamrequest.py +112 -0
- mistralai/models/checkpointout.py +25 -0
- mistralai/models/completionchunk.py +27 -0
- mistralai/models/completionevent.py +15 -0
- mistralai/models/completionresponsestreamchoice.py +53 -0
- mistralai/models/contentchunk.py +17 -0
- mistralai/models/delete_model_v1_models_model_id_deleteop.py +16 -0
- mistralai/models/deletefileout.py +24 -0
- mistralai/models/deletemodelout.py +25 -0
- mistralai/models/deltamessage.py +52 -0
- mistralai/models/detailedjobout.py +96 -0
- mistralai/models/embeddingrequest.py +66 -0
- mistralai/models/embeddingresponse.py +24 -0
- mistralai/models/embeddingresponsedata.py +19 -0
- mistralai/models/eventout.py +55 -0
- mistralai/models/files_api_routes_delete_fileop.py +16 -0
- mistralai/models/files_api_routes_retrieve_fileop.py +16 -0
- mistralai/models/files_api_routes_upload_fileop.py +51 -0
- mistralai/models/fileschema.py +76 -0
- mistralai/models/fimcompletionrequest.py +99 -0
- mistralai/models/fimcompletionresponse.py +27 -0
- mistralai/models/fimcompletionstreamrequest.py +97 -0
- mistralai/models/finetuneablemodel.py +8 -0
- mistralai/models/ftmodelcapabilitiesout.py +21 -0
- mistralai/models/ftmodelout.py +70 -0
- mistralai/models/function.py +19 -0
- mistralai/models/functioncall.py +16 -0
- mistralai/models/githubrepositoryin.py +57 -0
- mistralai/models/githubrepositoryout.py +57 -0
- mistralai/models/httpvalidationerror.py +23 -0
- mistralai/models/jobin.py +78 -0
- mistralai/models/jobmetadataout.py +59 -0
- mistralai/models/jobout.py +112 -0
- mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py +16 -0
- mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py +18 -0
- mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py +73 -0
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py +18 -0
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +86 -0
- mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py +16 -0
- mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py +16 -0
- mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py +19 -0
- mistralai/models/jobsout.py +20 -0
- mistralai/models/legacyjobmetadataout.py +85 -0
- mistralai/models/listfilesout.py +17 -0
- mistralai/models/metricout.py +55 -0
- mistralai/models/modelcapabilities.py +21 -0
- mistralai/models/modelcard.py +71 -0
- mistralai/models/modellist.py +18 -0
- mistralai/models/responseformat.py +18 -0
- mistralai/models/retrieve_model_v1_models_model_id_getop.py +16 -0
- mistralai/models/retrievefileout.py +76 -0
- mistralai/models/sampletype.py +7 -0
- mistralai/models/sdkerror.py +22 -0
- mistralai/models/security.py +16 -0
- mistralai/models/source.py +7 -0
- mistralai/models/systemmessage.py +26 -0
- mistralai/models/textchunk.py +17 -0
- mistralai/models/tool.py +18 -0
- mistralai/models/toolcall.py +20 -0
- mistralai/models/toolmessage.py +55 -0
- mistralai/models/trainingfile.py +17 -0
- mistralai/models/trainingparameters.py +53 -0
- mistralai/models/trainingparametersin.py +61 -0
- mistralai/models/unarchiveftmodelout.py +19 -0
- mistralai/models/updateftmodelin.py +49 -0
- mistralai/models/uploadfileout.py +76 -0
- mistralai/models/usageinfo.py +18 -0
- mistralai/models/usermessage.py +26 -0
- mistralai/models/validationerror.py +24 -0
- mistralai/models/wandbintegration.py +61 -0
- mistralai/models/wandbintegrationout.py +57 -0
- mistralai/models_.py +928 -0
- mistralai/py.typed +1 -0
- mistralai/sdk.py +111 -0
- mistralai/sdkconfiguration.py +53 -0
- mistralai/types/__init__.py +21 -0
- mistralai/types/basemodel.py +35 -0
- mistralai/utils/__init__.py +82 -0
- mistralai/utils/annotations.py +19 -0
- mistralai/utils/enums.py +34 -0
- mistralai/utils/eventstreaming.py +179 -0
- mistralai/utils/forms.py +207 -0
- mistralai/utils/headers.py +136 -0
- mistralai/utils/metadata.py +118 -0
- mistralai/utils/queryparams.py +203 -0
- mistralai/utils/requestbodies.py +66 -0
- mistralai/utils/retries.py +216 -0
- mistralai/utils/security.py +182 -0
- mistralai/utils/serializers.py +181 -0
- mistralai/utils/url.py +150 -0
- mistralai/utils/values.py +128 -0
- {mistralai-0.4.2.dist-info → mistralai-0.5.5a50.dist-info}/LICENSE +1 -1
- mistralai-0.5.5a50.dist-info/METADATA +626 -0
- mistralai-0.5.5a50.dist-info/RECORD +228 -0
- mistralai_azure/__init__.py +5 -0
- mistralai_azure/_hooks/__init__.py +5 -0
- mistralai_azure/_hooks/custom_user_agent.py +16 -0
- mistralai_azure/_hooks/registration.py +15 -0
- mistralai_azure/_hooks/sdkhooks.py +57 -0
- mistralai_azure/_hooks/types.py +76 -0
- mistralai_azure/basesdk.py +215 -0
- mistralai_azure/chat.py +475 -0
- mistralai_azure/httpclient.py +78 -0
- mistralai_azure/models/__init__.py +28 -0
- mistralai_azure/models/assistantmessage.py +58 -0
- mistralai_azure/models/chatcompletionchoice.py +33 -0
- mistralai_azure/models/chatcompletionrequest.py +114 -0
- mistralai_azure/models/chatcompletionresponse.py +27 -0
- mistralai_azure/models/chatcompletionstreamrequest.py +112 -0
- mistralai_azure/models/completionchunk.py +27 -0
- mistralai_azure/models/completionevent.py +15 -0
- mistralai_azure/models/completionresponsestreamchoice.py +53 -0
- mistralai_azure/models/contentchunk.py +17 -0
- mistralai_azure/models/deltamessage.py +52 -0
- mistralai_azure/models/function.py +19 -0
- mistralai_azure/models/functioncall.py +16 -0
- mistralai_azure/models/httpvalidationerror.py +23 -0
- mistralai_azure/models/responseformat.py +18 -0
- mistralai_azure/models/sdkerror.py +22 -0
- mistralai_azure/models/security.py +16 -0
- mistralai_azure/models/systemmessage.py +26 -0
- mistralai_azure/models/textchunk.py +17 -0
- mistralai_azure/models/tool.py +18 -0
- mistralai_azure/models/toolcall.py +20 -0
- mistralai_azure/models/toolmessage.py +55 -0
- mistralai_azure/models/usageinfo.py +18 -0
- mistralai_azure/models/usermessage.py +26 -0
- mistralai_azure/models/validationerror.py +24 -0
- mistralai_azure/py.typed +1 -0
- mistralai_azure/sdk.py +102 -0
- mistralai_azure/sdkconfiguration.py +53 -0
- mistralai_azure/types/__init__.py +21 -0
- mistralai_azure/types/basemodel.py +35 -0
- mistralai_azure/utils/__init__.py +80 -0
- mistralai_azure/utils/annotations.py +19 -0
- mistralai_azure/utils/enums.py +34 -0
- mistralai_azure/utils/eventstreaming.py +179 -0
- mistralai_azure/utils/forms.py +207 -0
- mistralai_azure/utils/headers.py +136 -0
- mistralai_azure/utils/metadata.py +118 -0
- mistralai_azure/utils/queryparams.py +203 -0
- mistralai_azure/utils/requestbodies.py +66 -0
- mistralai_azure/utils/retries.py +216 -0
- mistralai_azure/utils/security.py +168 -0
- mistralai_azure/utils/serializers.py +181 -0
- mistralai_azure/utils/url.py +150 -0
- mistralai_azure/utils/values.py +128 -0
- mistralai_gcp/__init__.py +5 -0
- mistralai_gcp/_hooks/__init__.py +5 -0
- mistralai_gcp/_hooks/custom_user_agent.py +16 -0
- mistralai_gcp/_hooks/registration.py +15 -0
- mistralai_gcp/_hooks/sdkhooks.py +57 -0
- mistralai_gcp/_hooks/types.py +76 -0
- mistralai_gcp/basesdk.py +215 -0
- mistralai_gcp/chat.py +463 -0
- mistralai_gcp/fim.py +439 -0
- mistralai_gcp/httpclient.py +78 -0
- mistralai_gcp/models/__init__.py +31 -0
- mistralai_gcp/models/assistantmessage.py +58 -0
- mistralai_gcp/models/chatcompletionchoice.py +33 -0
- mistralai_gcp/models/chatcompletionrequest.py +110 -0
- mistralai_gcp/models/chatcompletionresponse.py +27 -0
- mistralai_gcp/models/chatcompletionstreamrequest.py +108 -0
- mistralai_gcp/models/completionchunk.py +27 -0
- mistralai_gcp/models/completionevent.py +15 -0
- mistralai_gcp/models/completionresponsestreamchoice.py +53 -0
- mistralai_gcp/models/contentchunk.py +17 -0
- mistralai_gcp/models/deltamessage.py +52 -0
- mistralai_gcp/models/fimcompletionrequest.py +99 -0
- mistralai_gcp/models/fimcompletionresponse.py +27 -0
- mistralai_gcp/models/fimcompletionstreamrequest.py +97 -0
- mistralai_gcp/models/function.py +19 -0
- mistralai_gcp/models/functioncall.py +16 -0
- mistralai_gcp/models/httpvalidationerror.py +23 -0
- mistralai_gcp/models/responseformat.py +18 -0
- mistralai_gcp/models/sdkerror.py +22 -0
- mistralai_gcp/models/security.py +16 -0
- mistralai_gcp/models/systemmessage.py +26 -0
- mistralai_gcp/models/textchunk.py +17 -0
- mistralai_gcp/models/tool.py +18 -0
- mistralai_gcp/models/toolcall.py +20 -0
- mistralai_gcp/models/toolmessage.py +55 -0
- mistralai_gcp/models/usageinfo.py +18 -0
- mistralai_gcp/models/usermessage.py +26 -0
- mistralai_gcp/models/validationerror.py +24 -0
- mistralai_gcp/py.typed +1 -0
- mistralai_gcp/sdk.py +165 -0
- mistralai_gcp/sdkconfiguration.py +53 -0
- mistralai_gcp/types/__init__.py +21 -0
- mistralai_gcp/types/basemodel.py +35 -0
- mistralai_gcp/utils/__init__.py +80 -0
- mistralai_gcp/utils/annotations.py +19 -0
- mistralai_gcp/utils/enums.py +34 -0
- mistralai_gcp/utils/eventstreaming.py +179 -0
- mistralai_gcp/utils/forms.py +207 -0
- mistralai_gcp/utils/headers.py +136 -0
- mistralai_gcp/utils/metadata.py +118 -0
- mistralai_gcp/utils/queryparams.py +203 -0
- mistralai_gcp/utils/requestbodies.py +66 -0
- mistralai_gcp/utils/retries.py +216 -0
- mistralai_gcp/utils/security.py +168 -0
- mistralai_gcp/utils/serializers.py +181 -0
- mistralai_gcp/utils/url.py +150 -0
- mistralai_gcp/utils/values.py +128 -0
- py.typed +1 -0
- mistralai/client_base.py +0 -211
- mistralai/constants.py +0 -5
- mistralai/exceptions.py +0 -54
- mistralai/jobs.py +0 -172
- mistralai/models/chat_completion.py +0 -93
- mistralai/models/common.py +0 -9
- mistralai/models/embeddings.py +0 -19
- mistralai/models/files.py +0 -23
- mistralai/models/jobs.py +0 -100
- mistralai/models/models.py +0 -39
- mistralai-0.4.2.dist-info/METADATA +0 -82
- mistralai-0.4.2.dist-info/RECORD +0 -20
- {mistralai-0.4.2.dist-info → mistralai-0.5.5a50.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai_gcp.types import BaseModel
|
|
5
|
+
from typing import Any, Dict, Optional, TypedDict
|
|
6
|
+
from typing_extensions import NotRequired
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class FunctionTypedDict(TypedDict):
|
|
10
|
+
name: str
|
|
11
|
+
parameters: Dict[str, Any]
|
|
12
|
+
description: NotRequired[str]
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Function(BaseModel):
|
|
16
|
+
name: str
|
|
17
|
+
parameters: Dict[str, Any]
|
|
18
|
+
description: Optional[str] = ""
|
|
19
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai_gcp.types import BaseModel
|
|
5
|
+
from typing import TypedDict
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class FunctionCallTypedDict(TypedDict):
|
|
9
|
+
name: str
|
|
10
|
+
arguments: str
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class FunctionCall(BaseModel):
|
|
14
|
+
name: str
|
|
15
|
+
arguments: str
|
|
16
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .validationerror import ValidationError
|
|
5
|
+
from mistralai_gcp.types import BaseModel
|
|
6
|
+
import mistralai_gcp.utils as utils
|
|
7
|
+
from typing import List, Optional
|
|
8
|
+
|
|
9
|
+
class HTTPValidationErrorData(BaseModel):
|
|
10
|
+
detail: Optional[List[ValidationError]] = None
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class HTTPValidationError(Exception):
|
|
15
|
+
r"""Validation Error"""
|
|
16
|
+
data: HTTPValidationErrorData
|
|
17
|
+
|
|
18
|
+
def __init__(self, data: HTTPValidationErrorData):
|
|
19
|
+
self.data = data
|
|
20
|
+
|
|
21
|
+
def __str__(self) -> str:
|
|
22
|
+
return utils.marshal_json(self.data, HTTPValidationErrorData)
|
|
23
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai_gcp.types import BaseModel
|
|
5
|
+
from typing import Literal, Optional, TypedDict
|
|
6
|
+
from typing_extensions import NotRequired
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
ResponseFormats = Literal["text", "json_object"]
|
|
10
|
+
r"""An object specifying the format that the model must output. Setting to `{ \"type\": \"json_object\" }` enables JSON mode, which guarantees the message the model generates is in JSON. When using JSON mode you MUST also instruct the model to produce JSON yourself with a system or a user message."""
|
|
11
|
+
|
|
12
|
+
class ResponseFormatTypedDict(TypedDict):
|
|
13
|
+
type: NotRequired[ResponseFormats]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class ResponseFormat(BaseModel):
|
|
17
|
+
type: Optional[ResponseFormats] = "text"
|
|
18
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from dataclasses import dataclass
|
|
4
|
+
from typing import Optional
|
|
5
|
+
import httpx
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
@dataclass
|
|
9
|
+
class SDKError(Exception):
|
|
10
|
+
"""Represents an error returned by the API."""
|
|
11
|
+
|
|
12
|
+
message: str
|
|
13
|
+
status_code: int = -1
|
|
14
|
+
body: str = ""
|
|
15
|
+
raw_response: Optional[httpx.Response] = None
|
|
16
|
+
|
|
17
|
+
def __str__(self):
|
|
18
|
+
body = ""
|
|
19
|
+
if len(self.body) > 0:
|
|
20
|
+
body = f"\n{self.body}"
|
|
21
|
+
|
|
22
|
+
return f"{self.message}: Status {self.status_code}{body}"
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai_gcp.types import BaseModel
|
|
5
|
+
from mistralai_gcp.utils import FieldMetadata, SecurityMetadata
|
|
6
|
+
from typing import TypedDict
|
|
7
|
+
from typing_extensions import Annotated
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class SecurityTypedDict(TypedDict):
|
|
11
|
+
api_key: str
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class Security(BaseModel):
|
|
15
|
+
api_key: Annotated[str, FieldMetadata(security=SecurityMetadata(scheme=True, scheme_type="http", sub_type="bearer", field_name="Authorization"))]
|
|
16
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .contentchunk import ContentChunk, ContentChunkTypedDict
|
|
5
|
+
from mistralai_gcp.types import BaseModel
|
|
6
|
+
from typing import List, Literal, Optional, TypedDict, Union
|
|
7
|
+
from typing_extensions import NotRequired
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
Role = Literal["system"]
|
|
11
|
+
|
|
12
|
+
class SystemMessageTypedDict(TypedDict):
|
|
13
|
+
content: ContentTypedDict
|
|
14
|
+
role: NotRequired[Role]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class SystemMessage(BaseModel):
|
|
18
|
+
content: Content
|
|
19
|
+
role: Optional[Role] = "system"
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
ContentTypedDict = Union[str, List[ContentChunkTypedDict]]
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Content = Union[str, List[ContentChunk]]
|
|
26
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai_gcp.types import BaseModel
|
|
5
|
+
import pydantic
|
|
6
|
+
from typing import Final, Optional, TypedDict
|
|
7
|
+
from typing_extensions import Annotated
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class TextChunkTypedDict(TypedDict):
|
|
11
|
+
text: str
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class TextChunk(BaseModel):
|
|
15
|
+
text: str
|
|
16
|
+
TYPE: Annotated[Final[Optional[str]], pydantic.Field(alias="type")] = "text" # type: ignore
|
|
17
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .function import Function, FunctionTypedDict
|
|
5
|
+
from mistralai_gcp.types import BaseModel
|
|
6
|
+
import pydantic
|
|
7
|
+
from typing import Final, Optional, TypedDict
|
|
8
|
+
from typing_extensions import Annotated
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ToolTypedDict(TypedDict):
|
|
12
|
+
function: FunctionTypedDict
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Tool(BaseModel):
|
|
16
|
+
function: Function
|
|
17
|
+
TYPE: Annotated[Final[Optional[str]], pydantic.Field(alias="type")] = "function" # type: ignore
|
|
18
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .functioncall import FunctionCall, FunctionCallTypedDict
|
|
5
|
+
from mistralai_gcp.types import BaseModel
|
|
6
|
+
import pydantic
|
|
7
|
+
from typing import Final, Optional, TypedDict
|
|
8
|
+
from typing_extensions import Annotated, NotRequired
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class ToolCallTypedDict(TypedDict):
|
|
12
|
+
function: FunctionCallTypedDict
|
|
13
|
+
id: NotRequired[str]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class ToolCall(BaseModel):
|
|
17
|
+
function: FunctionCall
|
|
18
|
+
id: Optional[str] = "null"
|
|
19
|
+
TYPE: Annotated[Final[Optional[str]], pydantic.Field(alias="type")] = "function" # type: ignore
|
|
20
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai_gcp.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
5
|
+
from pydantic import model_serializer
|
|
6
|
+
from typing import Literal, Optional, TypedDict
|
|
7
|
+
from typing_extensions import NotRequired
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
ToolMessageRole = Literal["tool"]
|
|
11
|
+
|
|
12
|
+
class ToolMessageTypedDict(TypedDict):
|
|
13
|
+
content: str
|
|
14
|
+
tool_call_id: NotRequired[Nullable[str]]
|
|
15
|
+
name: NotRequired[Nullable[str]]
|
|
16
|
+
role: NotRequired[ToolMessageRole]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class ToolMessage(BaseModel):
|
|
20
|
+
content: str
|
|
21
|
+
tool_call_id: OptionalNullable[str] = UNSET
|
|
22
|
+
name: OptionalNullable[str] = UNSET
|
|
23
|
+
role: Optional[ToolMessageRole] = "tool"
|
|
24
|
+
|
|
25
|
+
@model_serializer(mode="wrap")
|
|
26
|
+
def serialize_model(self, handler):
|
|
27
|
+
optional_fields = ["tool_call_id", "name", "role"]
|
|
28
|
+
nullable_fields = ["tool_call_id", "name"]
|
|
29
|
+
null_default_fields = []
|
|
30
|
+
|
|
31
|
+
serialized = handler(self)
|
|
32
|
+
|
|
33
|
+
m = {}
|
|
34
|
+
|
|
35
|
+
for n, f in self.model_fields.items():
|
|
36
|
+
k = f.alias or n
|
|
37
|
+
val = serialized.get(k)
|
|
38
|
+
|
|
39
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
40
|
+
m[k] = val
|
|
41
|
+
elif val != UNSET_SENTINEL and (
|
|
42
|
+
not k in optional_fields
|
|
43
|
+
or (
|
|
44
|
+
k in optional_fields
|
|
45
|
+
and k in nullable_fields
|
|
46
|
+
and (
|
|
47
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
48
|
+
or k in null_default_fields
|
|
49
|
+
) # pylint: disable=no-member
|
|
50
|
+
)
|
|
51
|
+
):
|
|
52
|
+
m[k] = val
|
|
53
|
+
|
|
54
|
+
return m
|
|
55
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai_gcp.types import BaseModel
|
|
5
|
+
from typing import TypedDict
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class UsageInfoTypedDict(TypedDict):
|
|
9
|
+
prompt_tokens: int
|
|
10
|
+
completion_tokens: int
|
|
11
|
+
total_tokens: int
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class UsageInfo(BaseModel):
|
|
15
|
+
prompt_tokens: int
|
|
16
|
+
completion_tokens: int
|
|
17
|
+
total_tokens: int
|
|
18
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .textchunk import TextChunk, TextChunkTypedDict
|
|
5
|
+
from mistralai_gcp.types import BaseModel
|
|
6
|
+
from typing import List, Literal, Optional, TypedDict, Union
|
|
7
|
+
from typing_extensions import NotRequired
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
UserMessageRole = Literal["user"]
|
|
11
|
+
|
|
12
|
+
class UserMessageTypedDict(TypedDict):
|
|
13
|
+
content: UserMessageContentTypedDict
|
|
14
|
+
role: NotRequired[UserMessageRole]
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class UserMessage(BaseModel):
|
|
18
|
+
content: UserMessageContent
|
|
19
|
+
role: Optional[UserMessageRole] = "user"
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
UserMessageContentTypedDict = Union[str, List[TextChunkTypedDict]]
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
UserMessageContent = Union[str, List[TextChunk]]
|
|
26
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai_gcp.types import BaseModel
|
|
5
|
+
from typing import List, TypedDict, Union
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
class ValidationErrorTypedDict(TypedDict):
|
|
9
|
+
loc: List[LocTypedDict]
|
|
10
|
+
msg: str
|
|
11
|
+
type: str
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
class ValidationError(BaseModel):
|
|
15
|
+
loc: List[Loc]
|
|
16
|
+
msg: str
|
|
17
|
+
type: str
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
LocTypedDict = Union[str, int]
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
Loc = Union[str, int]
|
|
24
|
+
|
mistralai_gcp/py.typed
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Marker file for PEP 561. The package enables type hints.
|
mistralai_gcp/sdk.py
ADDED
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
import json
|
|
4
|
+
from typing import Optional, Union
|
|
5
|
+
|
|
6
|
+
import google.auth
|
|
7
|
+
import google.auth.credentials
|
|
8
|
+
import google.auth.transport
|
|
9
|
+
import google.auth.transport.requests
|
|
10
|
+
import httpx
|
|
11
|
+
from mistralai_gcp import models
|
|
12
|
+
from mistralai_gcp._hooks import BeforeRequestHook, SDKHooks
|
|
13
|
+
from mistralai_gcp.chat import Chat
|
|
14
|
+
from mistralai_gcp.types import Nullable
|
|
15
|
+
|
|
16
|
+
from .basesdk import BaseSDK
|
|
17
|
+
from .httpclient import AsyncHttpClient, HttpClient
|
|
18
|
+
from .sdkconfiguration import SDKConfiguration
|
|
19
|
+
from .utils.retries import RetryConfig
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class MistralGoogleCloud(BaseSDK):
|
|
23
|
+
r"""Mistral AI API: Our Chat Completion and Embeddings APIs specification. Create your account on [La Plateforme](https://console.mistral.ai) to get access and read the [docs](https://docs.mistral.ai) to learn how to use it."""
|
|
24
|
+
|
|
25
|
+
chat: Chat
|
|
26
|
+
r"""Chat Completion API"""
|
|
27
|
+
|
|
28
|
+
def __init__(
|
|
29
|
+
self,
|
|
30
|
+
region: str = "europe-west4",
|
|
31
|
+
project_id: Optional[str] = None,
|
|
32
|
+
client: Optional[HttpClient] = None,
|
|
33
|
+
async_client: Optional[AsyncHttpClient] = None,
|
|
34
|
+
retry_config: Optional[Nullable[RetryConfig]] = None,
|
|
35
|
+
) -> None:
|
|
36
|
+
r"""Instantiates the SDK configuring it with the provided parameters.
|
|
37
|
+
|
|
38
|
+
:param region: The Google Cloud region to use for all methods
|
|
39
|
+
:param project_id: The project ID to use for all methods
|
|
40
|
+
:param client: The HTTP client to use for all synchronous methods
|
|
41
|
+
:param async_client: The Async HTTP client to use for all asynchronous methods
|
|
42
|
+
:param retry_config: The retry configuration to use for all supported methods
|
|
43
|
+
"""
|
|
44
|
+
|
|
45
|
+
credentials, loaded_project_id = google.auth.default(
|
|
46
|
+
scopes=["https://www.googleapis.com/auth/cloud-platform"],
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
if not isinstance(credentials, google.auth.credentials.Credentials):
|
|
50
|
+
raise models.SDKError(
|
|
51
|
+
"credentials must be an instance of google.auth.credentials.Credentials"
|
|
52
|
+
)
|
|
53
|
+
|
|
54
|
+
project_id = project_id or loaded_project_id
|
|
55
|
+
if project_id is None:
|
|
56
|
+
raise models.SDKError("project_id must be provided")
|
|
57
|
+
|
|
58
|
+
def auth_token() -> str:
|
|
59
|
+
if credentials.expired:
|
|
60
|
+
credentials.refresh(google.auth.transport.requests.Request())
|
|
61
|
+
token = credentials.token
|
|
62
|
+
if not token:
|
|
63
|
+
raise models.SDKError("Failed to get token from credentials")
|
|
64
|
+
return token
|
|
65
|
+
|
|
66
|
+
if client is None:
|
|
67
|
+
client = httpx.Client()
|
|
68
|
+
|
|
69
|
+
assert issubclass(
|
|
70
|
+
type(client), HttpClient
|
|
71
|
+
), "The provided client must implement the HttpClient protocol."
|
|
72
|
+
|
|
73
|
+
if async_client is None:
|
|
74
|
+
async_client = httpx.AsyncClient()
|
|
75
|
+
|
|
76
|
+
assert issubclass(
|
|
77
|
+
type(async_client), AsyncHttpClient
|
|
78
|
+
), "The provided async_client must implement the AsyncHttpClient protocol."
|
|
79
|
+
|
|
80
|
+
security = None
|
|
81
|
+
if callable(auth_token):
|
|
82
|
+
security = lambda: models.Security( # pylint: disable=unnecessary-lambda-assignment
|
|
83
|
+
api_key=auth_token()
|
|
84
|
+
)
|
|
85
|
+
else:
|
|
86
|
+
security = models.Security(api_key=auth_token)
|
|
87
|
+
|
|
88
|
+
BaseSDK.__init__(
|
|
89
|
+
self,
|
|
90
|
+
SDKConfiguration(
|
|
91
|
+
client=client,
|
|
92
|
+
async_client=async_client,
|
|
93
|
+
security=security,
|
|
94
|
+
server_url=f"https://{region}-aiplatform.googleapis.com",
|
|
95
|
+
server=None,
|
|
96
|
+
retry_config=retry_config,
|
|
97
|
+
),
|
|
98
|
+
)
|
|
99
|
+
|
|
100
|
+
hooks = SDKHooks()
|
|
101
|
+
|
|
102
|
+
hook = GoogleCloudBeforeRequestHook(region, project_id)
|
|
103
|
+
hooks.register_before_request_hook(hook)
|
|
104
|
+
|
|
105
|
+
current_server_url, *_ = self.sdk_configuration.get_server_details()
|
|
106
|
+
server_url, self.sdk_configuration.client = hooks.sdk_init(
|
|
107
|
+
current_server_url, self.sdk_configuration.client
|
|
108
|
+
)
|
|
109
|
+
if current_server_url != server_url:
|
|
110
|
+
self.sdk_configuration.server_url = server_url
|
|
111
|
+
|
|
112
|
+
# pylint: disable=protected-access
|
|
113
|
+
self.sdk_configuration.__dict__["_hooks"] = hooks
|
|
114
|
+
|
|
115
|
+
self._init_sdks()
|
|
116
|
+
|
|
117
|
+
def _init_sdks(self):
|
|
118
|
+
self.chat = Chat(self.sdk_configuration)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
class GoogleCloudBeforeRequestHook(BeforeRequestHook):
|
|
122
|
+
|
|
123
|
+
def __init__(self, region: str, project_id: str):
|
|
124
|
+
self.region = region
|
|
125
|
+
self.project_id = project_id
|
|
126
|
+
|
|
127
|
+
def before_request(
|
|
128
|
+
self, hook_ctx, request: httpx.Request
|
|
129
|
+
) -> Union[httpx.Request, Exception]:
|
|
130
|
+
# The goal of this function is to template in the region, project, model, and model_version into the URL path
|
|
131
|
+
# We do this here so that the API remains more user-friendly
|
|
132
|
+
model = None
|
|
133
|
+
model_version = None
|
|
134
|
+
new_content = None
|
|
135
|
+
if request.content:
|
|
136
|
+
parsed = json.loads(request.content.decode("utf-8"))
|
|
137
|
+
model_raw = parsed.get("model")
|
|
138
|
+
model = "-".join(model_raw.split("-")[:-1])
|
|
139
|
+
model_version = model_raw.split("-")[-1]
|
|
140
|
+
parsed["model"] = model
|
|
141
|
+
new_content = json.dumps(parsed).encode("utf-8")
|
|
142
|
+
|
|
143
|
+
if model == "":
|
|
144
|
+
raise models.SDKError("model must be provided")
|
|
145
|
+
|
|
146
|
+
if model_version is None:
|
|
147
|
+
raise models.SDKError("model_version must be provided")
|
|
148
|
+
|
|
149
|
+
stream = "streamRawPredict" in request.url.path
|
|
150
|
+
specifier = "streamRawPredict" if stream else "rawPredict"
|
|
151
|
+
url = f"/v1/projects/{self.project_id}/locations/{self.region}/publishers/mistralai/models/{model}@{model_version}:{specifier}"
|
|
152
|
+
|
|
153
|
+
headers = dict(request.headers)
|
|
154
|
+
# Delete content-length header as it will need to be recalculated
|
|
155
|
+
headers.pop("content-length", None)
|
|
156
|
+
|
|
157
|
+
next_request = httpx.Request(
|
|
158
|
+
method=request.method,
|
|
159
|
+
url=request.url.copy_with(path=url),
|
|
160
|
+
headers=headers,
|
|
161
|
+
content=new_content,
|
|
162
|
+
stream=None,
|
|
163
|
+
)
|
|
164
|
+
|
|
165
|
+
return next_request
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
from ._hooks import SDKHooks
|
|
5
|
+
from .httpclient import AsyncHttpClient, HttpClient
|
|
6
|
+
from .utils import RetryConfig, remove_suffix
|
|
7
|
+
from dataclasses import dataclass
|
|
8
|
+
from mistralai_gcp import models
|
|
9
|
+
from mistralai_gcp.types import OptionalNullable, UNSET
|
|
10
|
+
from pydantic import Field
|
|
11
|
+
from typing import Callable, Dict, Optional, Tuple, Union
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
SERVER_PROD = "prod"
|
|
15
|
+
r"""Production server"""
|
|
16
|
+
SERVERS = {
|
|
17
|
+
SERVER_PROD: "https://api.mistral.ai",
|
|
18
|
+
}
|
|
19
|
+
"""Contains the list of servers available to the SDK"""
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
@dataclass
|
|
23
|
+
class SDKConfiguration:
|
|
24
|
+
client: HttpClient
|
|
25
|
+
async_client: AsyncHttpClient
|
|
26
|
+
security: Optional[Union[models.Security,Callable[[], models.Security]]] = None
|
|
27
|
+
server_url: Optional[str] = ""
|
|
28
|
+
server: Optional[str] = ""
|
|
29
|
+
language: str = "python"
|
|
30
|
+
openapi_doc_version: str = "0.0.2"
|
|
31
|
+
sdk_version: str = "0.5.5-alpha.53"
|
|
32
|
+
gen_version: str = "2.382.1"
|
|
33
|
+
user_agent: str = "speakeasy-sdk/python 0.5.5-alpha.53 2.382.1 0.0.2 mistralai-gcp"
|
|
34
|
+
retry_config: OptionalNullable[RetryConfig] = Field(default_factory=lambda: UNSET)
|
|
35
|
+
timeout_ms: Optional[int] = None
|
|
36
|
+
|
|
37
|
+
def __post_init__(self):
|
|
38
|
+
self._hooks = SDKHooks()
|
|
39
|
+
|
|
40
|
+
def get_server_details(self) -> Tuple[str, Dict[str, str]]:
|
|
41
|
+
if self.server_url is not None and self.server_url:
|
|
42
|
+
return remove_suffix(self.server_url, "/"), {}
|
|
43
|
+
if not self.server:
|
|
44
|
+
self.server = SERVER_PROD
|
|
45
|
+
|
|
46
|
+
if self.server not in SERVERS:
|
|
47
|
+
raise ValueError(f"Invalid server \"{self.server}\"")
|
|
48
|
+
|
|
49
|
+
return SERVERS[self.server], {}
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def get_hooks(self) -> SDKHooks:
|
|
53
|
+
return self._hooks
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from .basemodel import (
|
|
4
|
+
BaseModel,
|
|
5
|
+
Nullable,
|
|
6
|
+
OptionalNullable,
|
|
7
|
+
UnrecognizedInt,
|
|
8
|
+
UnrecognizedStr,
|
|
9
|
+
UNSET,
|
|
10
|
+
UNSET_SENTINEL,
|
|
11
|
+
)
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
"BaseModel",
|
|
15
|
+
"Nullable",
|
|
16
|
+
"OptionalNullable",
|
|
17
|
+
"UnrecognizedInt",
|
|
18
|
+
"UnrecognizedStr",
|
|
19
|
+
"UNSET",
|
|
20
|
+
"UNSET_SENTINEL",
|
|
21
|
+
]
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from pydantic import ConfigDict, model_serializer
|
|
4
|
+
from pydantic import BaseModel as PydanticBaseModel
|
|
5
|
+
from typing import Literal, Optional, TypeVar, Union, NewType
|
|
6
|
+
from typing_extensions import TypeAliasType
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class BaseModel(PydanticBaseModel):
|
|
10
|
+
model_config = ConfigDict(
|
|
11
|
+
populate_by_name=True, arbitrary_types_allowed=True, protected_namespaces=()
|
|
12
|
+
)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class Unset(BaseModel):
|
|
16
|
+
@model_serializer(mode="plain")
|
|
17
|
+
def serialize_model(self):
|
|
18
|
+
return UNSET_SENTINEL
|
|
19
|
+
|
|
20
|
+
def __bool__(self) -> Literal[False]:
|
|
21
|
+
return False
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
UNSET = Unset()
|
|
25
|
+
UNSET_SENTINEL = "~?~unset~?~sentinel~?~"
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
T = TypeVar("T")
|
|
29
|
+
Nullable = TypeAliasType("Nullable", Union[T, None], type_params=(T,))
|
|
30
|
+
OptionalNullable = TypeAliasType(
|
|
31
|
+
"OptionalNullable", Union[Optional[Nullable[T]], Unset], type_params=(T,)
|
|
32
|
+
)
|
|
33
|
+
|
|
34
|
+
UnrecognizedInt = NewType("UnrecognizedInt", int)
|
|
35
|
+
UnrecognizedStr = NewType("UnrecognizedStr", str)
|