mistralai 0.4.1__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 -374
- mistralai/basesdk.py +216 -0
- mistralai/chat.py +475 -0
- mistralai/client.py +5 -372
- 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.1.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 -186
- mistralai/constants.py +0 -3
- 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 -98
- mistralai/models/models.py +0 -39
- mistralai-0.4.1.dist-info/METADATA +0 -80
- mistralai-0.4.1.dist-info/RECORD +0 -20
- {mistralai-0.4.1.dist-info → mistralai-0.5.5a50.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
5
|
+
from pydantic import model_serializer
|
|
6
|
+
from typing import List, Optional, TypedDict, Union
|
|
7
|
+
from typing_extensions import NotRequired
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class FIMCompletionRequestTypedDict(TypedDict):
|
|
11
|
+
prompt: str
|
|
12
|
+
r"""The text/code to complete."""
|
|
13
|
+
model: NotRequired[Nullable[str]]
|
|
14
|
+
r"""ID of the model to use. Only compatible for now with:
|
|
15
|
+
- `codestral-2405`
|
|
16
|
+
- `codestral-latest`
|
|
17
|
+
"""
|
|
18
|
+
temperature: NotRequired[float]
|
|
19
|
+
r"""What sampling temperature to use, between 0.0 and 1.0. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both."""
|
|
20
|
+
top_p: NotRequired[float]
|
|
21
|
+
r"""Nucleus sampling, where the model considers the results of the tokens with `top_p` probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both."""
|
|
22
|
+
max_tokens: NotRequired[Nullable[int]]
|
|
23
|
+
r"""The maximum number of tokens to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model's context length."""
|
|
24
|
+
min_tokens: NotRequired[Nullable[int]]
|
|
25
|
+
r"""The minimum number of tokens to generate in the completion."""
|
|
26
|
+
stream: NotRequired[bool]
|
|
27
|
+
r"""Whether to stream back partial progress. If set, tokens will be sent as data-only server-side events as they become available, with the stream terminated by a data: [DONE] message. Otherwise, the server will hold the request open until the timeout or until completion, with the response containing the full result as JSON."""
|
|
28
|
+
stop: NotRequired[FIMCompletionRequestStopTypedDict]
|
|
29
|
+
r"""Stop generation if this token is detected. Or if one of these tokens is detected when providing an array"""
|
|
30
|
+
random_seed: NotRequired[Nullable[int]]
|
|
31
|
+
r"""The seed to use for random sampling. If set, different calls will generate deterministic results."""
|
|
32
|
+
suffix: NotRequired[Nullable[str]]
|
|
33
|
+
r"""Optional text/code that adds more context for the model. When given a `prompt` and a `suffix` the model will fill what is between them. When `suffix` is not provided, the model will simply execute completion starting with `prompt`."""
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class FIMCompletionRequest(BaseModel):
|
|
37
|
+
prompt: str
|
|
38
|
+
r"""The text/code to complete."""
|
|
39
|
+
model: OptionalNullable[str] = UNSET
|
|
40
|
+
r"""ID of the model to use. Only compatible for now with:
|
|
41
|
+
- `codestral-2405`
|
|
42
|
+
- `codestral-latest`
|
|
43
|
+
"""
|
|
44
|
+
temperature: Optional[float] = 0.7
|
|
45
|
+
r"""What sampling temperature to use, between 0.0 and 1.0. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both."""
|
|
46
|
+
top_p: Optional[float] = 1
|
|
47
|
+
r"""Nucleus sampling, where the model considers the results of the tokens with `top_p` probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both."""
|
|
48
|
+
max_tokens: OptionalNullable[int] = UNSET
|
|
49
|
+
r"""The maximum number of tokens to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model's context length."""
|
|
50
|
+
min_tokens: OptionalNullable[int] = UNSET
|
|
51
|
+
r"""The minimum number of tokens to generate in the completion."""
|
|
52
|
+
stream: Optional[bool] = False
|
|
53
|
+
r"""Whether to stream back partial progress. If set, tokens will be sent as data-only server-side events as they become available, with the stream terminated by a data: [DONE] message. Otherwise, the server will hold the request open until the timeout or until completion, with the response containing the full result as JSON."""
|
|
54
|
+
stop: Optional[FIMCompletionRequestStop] = None
|
|
55
|
+
r"""Stop generation if this token is detected. Or if one of these tokens is detected when providing an array"""
|
|
56
|
+
random_seed: OptionalNullable[int] = UNSET
|
|
57
|
+
r"""The seed to use for random sampling. If set, different calls will generate deterministic results."""
|
|
58
|
+
suffix: OptionalNullable[str] = UNSET
|
|
59
|
+
r"""Optional text/code that adds more context for the model. When given a `prompt` and a `suffix` the model will fill what is between them. When `suffix` is not provided, the model will simply execute completion starting with `prompt`."""
|
|
60
|
+
|
|
61
|
+
@model_serializer(mode="wrap")
|
|
62
|
+
def serialize_model(self, handler):
|
|
63
|
+
optional_fields = ["model", "temperature", "top_p", "max_tokens", "min_tokens", "stream", "stop", "random_seed", "suffix"]
|
|
64
|
+
nullable_fields = ["model", "max_tokens", "min_tokens", "random_seed", "suffix"]
|
|
65
|
+
null_default_fields = []
|
|
66
|
+
|
|
67
|
+
serialized = handler(self)
|
|
68
|
+
|
|
69
|
+
m = {}
|
|
70
|
+
|
|
71
|
+
for n, f in self.model_fields.items():
|
|
72
|
+
k = f.alias or n
|
|
73
|
+
val = serialized.get(k)
|
|
74
|
+
|
|
75
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
76
|
+
m[k] = val
|
|
77
|
+
elif val != UNSET_SENTINEL and (
|
|
78
|
+
not k in optional_fields
|
|
79
|
+
or (
|
|
80
|
+
k in optional_fields
|
|
81
|
+
and k in nullable_fields
|
|
82
|
+
and (
|
|
83
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
84
|
+
or k in null_default_fields
|
|
85
|
+
) # pylint: disable=no-member
|
|
86
|
+
)
|
|
87
|
+
):
|
|
88
|
+
m[k] = val
|
|
89
|
+
|
|
90
|
+
return m
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
FIMCompletionRequestStopTypedDict = Union[str, List[str]]
|
|
94
|
+
r"""Stop generation if this token is detected. Or if one of these tokens is detected when providing an array"""
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
FIMCompletionRequestStop = Union[str, List[str]]
|
|
98
|
+
r"""Stop generation if this token is detected. Or if one of these tokens is detected when providing an array"""
|
|
99
|
+
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .chatcompletionchoice import ChatCompletionChoice, ChatCompletionChoiceTypedDict
|
|
5
|
+
from .usageinfo import UsageInfo, UsageInfoTypedDict
|
|
6
|
+
from mistralai.types import BaseModel
|
|
7
|
+
from typing import List, Optional, TypedDict
|
|
8
|
+
from typing_extensions import NotRequired
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class FIMCompletionResponseTypedDict(TypedDict):
|
|
12
|
+
id: str
|
|
13
|
+
object: str
|
|
14
|
+
model: str
|
|
15
|
+
usage: UsageInfoTypedDict
|
|
16
|
+
created: NotRequired[int]
|
|
17
|
+
choices: NotRequired[List[ChatCompletionChoiceTypedDict]]
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class FIMCompletionResponse(BaseModel):
|
|
21
|
+
id: str
|
|
22
|
+
object: str
|
|
23
|
+
model: str
|
|
24
|
+
usage: UsageInfo
|
|
25
|
+
created: Optional[int] = None
|
|
26
|
+
choices: Optional[List[ChatCompletionChoice]] = None
|
|
27
|
+
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
5
|
+
from pydantic import model_serializer
|
|
6
|
+
from typing import List, Optional, TypedDict, Union
|
|
7
|
+
from typing_extensions import NotRequired
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class FIMCompletionStreamRequestTypedDict(TypedDict):
|
|
11
|
+
prompt: str
|
|
12
|
+
r"""The text/code to complete."""
|
|
13
|
+
model: NotRequired[Nullable[str]]
|
|
14
|
+
r"""ID of the model to use. Only compatible for now with:
|
|
15
|
+
- `codestral-2405`
|
|
16
|
+
- `codestral-latest`
|
|
17
|
+
"""
|
|
18
|
+
temperature: NotRequired[float]
|
|
19
|
+
r"""What sampling temperature to use, between 0.0 and 1.0. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both."""
|
|
20
|
+
top_p: NotRequired[float]
|
|
21
|
+
r"""Nucleus sampling, where the model considers the results of the tokens with `top_p` probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both."""
|
|
22
|
+
max_tokens: NotRequired[Nullable[int]]
|
|
23
|
+
r"""The maximum number of tokens to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model's context length."""
|
|
24
|
+
min_tokens: NotRequired[Nullable[int]]
|
|
25
|
+
r"""The minimum number of tokens to generate in the completion."""
|
|
26
|
+
stream: NotRequired[bool]
|
|
27
|
+
stop: NotRequired[FIMCompletionStreamRequestStopTypedDict]
|
|
28
|
+
r"""Stop generation if this token is detected. Or if one of these tokens is detected when providing an array"""
|
|
29
|
+
random_seed: NotRequired[Nullable[int]]
|
|
30
|
+
r"""The seed to use for random sampling. If set, different calls will generate deterministic results."""
|
|
31
|
+
suffix: NotRequired[Nullable[str]]
|
|
32
|
+
r"""Optional text/code that adds more context for the model. When given a `prompt` and a `suffix` the model will fill what is between them. When `suffix` is not provided, the model will simply execute completion starting with `prompt`."""
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
class FIMCompletionStreamRequest(BaseModel):
|
|
36
|
+
prompt: str
|
|
37
|
+
r"""The text/code to complete."""
|
|
38
|
+
model: OptionalNullable[str] = UNSET
|
|
39
|
+
r"""ID of the model to use. Only compatible for now with:
|
|
40
|
+
- `codestral-2405`
|
|
41
|
+
- `codestral-latest`
|
|
42
|
+
"""
|
|
43
|
+
temperature: Optional[float] = 0.7
|
|
44
|
+
r"""What sampling temperature to use, between 0.0 and 1.0. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. We generally recommend altering this or `top_p` but not both."""
|
|
45
|
+
top_p: Optional[float] = 1
|
|
46
|
+
r"""Nucleus sampling, where the model considers the results of the tokens with `top_p` probability mass. So 0.1 means only the tokens comprising the top 10% probability mass are considered. We generally recommend altering this or `temperature` but not both."""
|
|
47
|
+
max_tokens: OptionalNullable[int] = UNSET
|
|
48
|
+
r"""The maximum number of tokens to generate in the completion. The token count of your prompt plus `max_tokens` cannot exceed the model's context length."""
|
|
49
|
+
min_tokens: OptionalNullable[int] = UNSET
|
|
50
|
+
r"""The minimum number of tokens to generate in the completion."""
|
|
51
|
+
stream: Optional[bool] = True
|
|
52
|
+
stop: Optional[FIMCompletionStreamRequestStop] = None
|
|
53
|
+
r"""Stop generation if this token is detected. Or if one of these tokens is detected when providing an array"""
|
|
54
|
+
random_seed: OptionalNullable[int] = UNSET
|
|
55
|
+
r"""The seed to use for random sampling. If set, different calls will generate deterministic results."""
|
|
56
|
+
suffix: OptionalNullable[str] = UNSET
|
|
57
|
+
r"""Optional text/code that adds more context for the model. When given a `prompt` and a `suffix` the model will fill what is between them. When `suffix` is not provided, the model will simply execute completion starting with `prompt`."""
|
|
58
|
+
|
|
59
|
+
@model_serializer(mode="wrap")
|
|
60
|
+
def serialize_model(self, handler):
|
|
61
|
+
optional_fields = ["model", "temperature", "top_p", "max_tokens", "min_tokens", "stream", "stop", "random_seed", "suffix"]
|
|
62
|
+
nullable_fields = ["model", "max_tokens", "min_tokens", "random_seed", "suffix"]
|
|
63
|
+
null_default_fields = []
|
|
64
|
+
|
|
65
|
+
serialized = handler(self)
|
|
66
|
+
|
|
67
|
+
m = {}
|
|
68
|
+
|
|
69
|
+
for n, f in self.model_fields.items():
|
|
70
|
+
k = f.alias or n
|
|
71
|
+
val = serialized.get(k)
|
|
72
|
+
|
|
73
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
74
|
+
m[k] = val
|
|
75
|
+
elif val != UNSET_SENTINEL and (
|
|
76
|
+
not k in optional_fields
|
|
77
|
+
or (
|
|
78
|
+
k in optional_fields
|
|
79
|
+
and k in nullable_fields
|
|
80
|
+
and (
|
|
81
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
82
|
+
or k in null_default_fields
|
|
83
|
+
) # pylint: disable=no-member
|
|
84
|
+
)
|
|
85
|
+
):
|
|
86
|
+
m[k] = val
|
|
87
|
+
|
|
88
|
+
return m
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
FIMCompletionStreamRequestStopTypedDict = Union[str, List[str]]
|
|
92
|
+
r"""Stop generation if this token is detected. Or if one of these tokens is detected when providing an array"""
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
FIMCompletionStreamRequestStop = Union[str, List[str]]
|
|
96
|
+
r"""Stop generation if this token is detected. Or if one of these tokens is detected when providing an array"""
|
|
97
|
+
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from typing import Literal
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
FineTuneableModel = Literal["open-mistral-7b", "mistral-small-latest", "codestral-latest", "mistral-large-latest", "open-mistral-nemo"]
|
|
8
|
+
r"""The name of the model to fine-tune."""
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai.types import BaseModel
|
|
5
|
+
from typing import Optional, TypedDict
|
|
6
|
+
from typing_extensions import NotRequired
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class FTModelCapabilitiesOutTypedDict(TypedDict):
|
|
10
|
+
completion_chat: NotRequired[bool]
|
|
11
|
+
completion_fim: NotRequired[bool]
|
|
12
|
+
function_calling: NotRequired[bool]
|
|
13
|
+
fine_tuning: NotRequired[bool]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class FTModelCapabilitiesOut(BaseModel):
|
|
17
|
+
completion_chat: Optional[bool] = True
|
|
18
|
+
completion_fim: Optional[bool] = False
|
|
19
|
+
function_calling: Optional[bool] = False
|
|
20
|
+
fine_tuning: Optional[bool] = False
|
|
21
|
+
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .ftmodelcapabilitiesout import FTModelCapabilitiesOut, FTModelCapabilitiesOutTypedDict
|
|
5
|
+
from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
6
|
+
import pydantic
|
|
7
|
+
from pydantic import model_serializer
|
|
8
|
+
from typing import Final, List, Optional, TypedDict
|
|
9
|
+
from typing_extensions import Annotated, NotRequired
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
class FTModelOutTypedDict(TypedDict):
|
|
13
|
+
id: str
|
|
14
|
+
created: int
|
|
15
|
+
owned_by: str
|
|
16
|
+
root: str
|
|
17
|
+
archived: bool
|
|
18
|
+
capabilities: FTModelCapabilitiesOutTypedDict
|
|
19
|
+
job: str
|
|
20
|
+
name: NotRequired[Nullable[str]]
|
|
21
|
+
description: NotRequired[Nullable[str]]
|
|
22
|
+
max_context_length: NotRequired[int]
|
|
23
|
+
aliases: NotRequired[List[str]]
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class FTModelOut(BaseModel):
|
|
27
|
+
id: str
|
|
28
|
+
created: int
|
|
29
|
+
owned_by: str
|
|
30
|
+
root: str
|
|
31
|
+
archived: bool
|
|
32
|
+
capabilities: FTModelCapabilitiesOut
|
|
33
|
+
job: str
|
|
34
|
+
OBJECT: Annotated[Final[Optional[str]], pydantic.Field(alias="object")] = "model" # type: ignore
|
|
35
|
+
name: OptionalNullable[str] = UNSET
|
|
36
|
+
description: OptionalNullable[str] = UNSET
|
|
37
|
+
max_context_length: Optional[int] = 32768
|
|
38
|
+
aliases: Optional[List[str]] = None
|
|
39
|
+
|
|
40
|
+
@model_serializer(mode="wrap")
|
|
41
|
+
def serialize_model(self, handler):
|
|
42
|
+
optional_fields = ["object", "name", "description", "max_context_length", "aliases"]
|
|
43
|
+
nullable_fields = ["name", "description"]
|
|
44
|
+
null_default_fields = []
|
|
45
|
+
|
|
46
|
+
serialized = handler(self)
|
|
47
|
+
|
|
48
|
+
m = {}
|
|
49
|
+
|
|
50
|
+
for n, f in self.model_fields.items():
|
|
51
|
+
k = f.alias or n
|
|
52
|
+
val = serialized.get(k)
|
|
53
|
+
|
|
54
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
55
|
+
m[k] = val
|
|
56
|
+
elif val != UNSET_SENTINEL and (
|
|
57
|
+
not k in optional_fields
|
|
58
|
+
or (
|
|
59
|
+
k in optional_fields
|
|
60
|
+
and k in nullable_fields
|
|
61
|
+
and (
|
|
62
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
63
|
+
or k in null_default_fields
|
|
64
|
+
) # pylint: disable=no-member
|
|
65
|
+
)
|
|
66
|
+
):
|
|
67
|
+
m[k] = val
|
|
68
|
+
|
|
69
|
+
return m
|
|
70
|
+
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai.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.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,57 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
5
|
+
import pydantic
|
|
6
|
+
from pydantic import model_serializer
|
|
7
|
+
from typing import Final, Optional, TypedDict
|
|
8
|
+
from typing_extensions import Annotated, NotRequired
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class GithubRepositoryInTypedDict(TypedDict):
|
|
12
|
+
name: str
|
|
13
|
+
owner: str
|
|
14
|
+
token: str
|
|
15
|
+
ref: NotRequired[Nullable[str]]
|
|
16
|
+
weight: NotRequired[float]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class GithubRepositoryIn(BaseModel):
|
|
20
|
+
name: str
|
|
21
|
+
owner: str
|
|
22
|
+
token: str
|
|
23
|
+
TYPE: Annotated[Final[Optional[str]], pydantic.Field(alias="type")] = "github" # type: ignore
|
|
24
|
+
ref: OptionalNullable[str] = UNSET
|
|
25
|
+
weight: Optional[float] = 1
|
|
26
|
+
|
|
27
|
+
@model_serializer(mode="wrap")
|
|
28
|
+
def serialize_model(self, handler):
|
|
29
|
+
optional_fields = ["type", "ref", "weight"]
|
|
30
|
+
nullable_fields = ["ref"]
|
|
31
|
+
null_default_fields = []
|
|
32
|
+
|
|
33
|
+
serialized = handler(self)
|
|
34
|
+
|
|
35
|
+
m = {}
|
|
36
|
+
|
|
37
|
+
for n, f in self.model_fields.items():
|
|
38
|
+
k = f.alias or n
|
|
39
|
+
val = serialized.get(k)
|
|
40
|
+
|
|
41
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
42
|
+
m[k] = val
|
|
43
|
+
elif val != UNSET_SENTINEL and (
|
|
44
|
+
not k in optional_fields
|
|
45
|
+
or (
|
|
46
|
+
k in optional_fields
|
|
47
|
+
and k in nullable_fields
|
|
48
|
+
and (
|
|
49
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
50
|
+
or k in null_default_fields
|
|
51
|
+
) # pylint: disable=no-member
|
|
52
|
+
)
|
|
53
|
+
):
|
|
54
|
+
m[k] = val
|
|
55
|
+
|
|
56
|
+
return m
|
|
57
|
+
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
5
|
+
import pydantic
|
|
6
|
+
from pydantic import model_serializer
|
|
7
|
+
from typing import Final, Optional, TypedDict
|
|
8
|
+
from typing_extensions import Annotated, NotRequired
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
class GithubRepositoryOutTypedDict(TypedDict):
|
|
12
|
+
name: str
|
|
13
|
+
owner: str
|
|
14
|
+
commit_id: str
|
|
15
|
+
ref: NotRequired[Nullable[str]]
|
|
16
|
+
weight: NotRequired[float]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class GithubRepositoryOut(BaseModel):
|
|
20
|
+
name: str
|
|
21
|
+
owner: str
|
|
22
|
+
commit_id: str
|
|
23
|
+
TYPE: Annotated[Final[Optional[str]], pydantic.Field(alias="type")] = "github" # type: ignore
|
|
24
|
+
ref: OptionalNullable[str] = UNSET
|
|
25
|
+
weight: Optional[float] = 1
|
|
26
|
+
|
|
27
|
+
@model_serializer(mode="wrap")
|
|
28
|
+
def serialize_model(self, handler):
|
|
29
|
+
optional_fields = ["type", "ref", "weight"]
|
|
30
|
+
nullable_fields = ["ref"]
|
|
31
|
+
null_default_fields = []
|
|
32
|
+
|
|
33
|
+
serialized = handler(self)
|
|
34
|
+
|
|
35
|
+
m = {}
|
|
36
|
+
|
|
37
|
+
for n, f in self.model_fields.items():
|
|
38
|
+
k = f.alias or n
|
|
39
|
+
val = serialized.get(k)
|
|
40
|
+
|
|
41
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
42
|
+
m[k] = val
|
|
43
|
+
elif val != UNSET_SENTINEL and (
|
|
44
|
+
not k in optional_fields
|
|
45
|
+
or (
|
|
46
|
+
k in optional_fields
|
|
47
|
+
and k in nullable_fields
|
|
48
|
+
and (
|
|
49
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
50
|
+
or k in null_default_fields
|
|
51
|
+
) # pylint: disable=no-member
|
|
52
|
+
)
|
|
53
|
+
):
|
|
54
|
+
m[k] = val
|
|
55
|
+
|
|
56
|
+
return m
|
|
57
|
+
|
|
@@ -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.types import BaseModel
|
|
6
|
+
import mistralai.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,78 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .finetuneablemodel import FineTuneableModel
|
|
5
|
+
from .githubrepositoryin import GithubRepositoryIn, GithubRepositoryInTypedDict
|
|
6
|
+
from .trainingfile import TrainingFile, TrainingFileTypedDict
|
|
7
|
+
from .trainingparametersin import TrainingParametersIn, TrainingParametersInTypedDict
|
|
8
|
+
from .wandbintegration import WandbIntegration, WandbIntegrationTypedDict
|
|
9
|
+
from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
10
|
+
from pydantic import model_serializer
|
|
11
|
+
from typing import List, Optional, TypedDict
|
|
12
|
+
from typing_extensions import NotRequired
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class JobInTypedDict(TypedDict):
|
|
16
|
+
model: FineTuneableModel
|
|
17
|
+
r"""The name of the model to fine-tune."""
|
|
18
|
+
hyperparameters: TrainingParametersInTypedDict
|
|
19
|
+
r"""The fine-tuning hyperparameter settings used in a fine-tune job."""
|
|
20
|
+
training_files: NotRequired[List[TrainingFileTypedDict]]
|
|
21
|
+
validation_files: NotRequired[Nullable[List[str]]]
|
|
22
|
+
r"""A list containing the IDs of uploaded files that contain validation data. If you provide these files, the data is used to generate validation metrics periodically during fine-tuning. These metrics can be viewed in `checkpoints` when getting the status of a running fine-tuning job. The same data should not be present in both train and validation files."""
|
|
23
|
+
suffix: NotRequired[Nullable[str]]
|
|
24
|
+
r"""A string that will be added to your fine-tuning model name. For example, a suffix of \"my-great-model\" would produce a model name like `ft:open-mistral-7b:my-great-model:xxx...`"""
|
|
25
|
+
integrations: NotRequired[Nullable[List[WandbIntegrationTypedDict]]]
|
|
26
|
+
r"""A list of integrations to enable for your fine-tuning job."""
|
|
27
|
+
repositories: NotRequired[List[GithubRepositoryInTypedDict]]
|
|
28
|
+
auto_start: NotRequired[bool]
|
|
29
|
+
r"""This field will be required in a future release."""
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class JobIn(BaseModel):
|
|
33
|
+
model: FineTuneableModel
|
|
34
|
+
r"""The name of the model to fine-tune."""
|
|
35
|
+
hyperparameters: TrainingParametersIn
|
|
36
|
+
r"""The fine-tuning hyperparameter settings used in a fine-tune job."""
|
|
37
|
+
training_files: Optional[List[TrainingFile]] = None
|
|
38
|
+
validation_files: OptionalNullable[List[str]] = UNSET
|
|
39
|
+
r"""A list containing the IDs of uploaded files that contain validation data. If you provide these files, the data is used to generate validation metrics periodically during fine-tuning. These metrics can be viewed in `checkpoints` when getting the status of a running fine-tuning job. The same data should not be present in both train and validation files."""
|
|
40
|
+
suffix: OptionalNullable[str] = UNSET
|
|
41
|
+
r"""A string that will be added to your fine-tuning model name. For example, a suffix of \"my-great-model\" would produce a model name like `ft:open-mistral-7b:my-great-model:xxx...`"""
|
|
42
|
+
integrations: OptionalNullable[List[WandbIntegration]] = UNSET
|
|
43
|
+
r"""A list of integrations to enable for your fine-tuning job."""
|
|
44
|
+
repositories: Optional[List[GithubRepositoryIn]] = None
|
|
45
|
+
auto_start: Optional[bool] = None
|
|
46
|
+
r"""This field will be required in a future release."""
|
|
47
|
+
|
|
48
|
+
@model_serializer(mode="wrap")
|
|
49
|
+
def serialize_model(self, handler):
|
|
50
|
+
optional_fields = ["training_files", "validation_files", "suffix", "integrations", "repositories", "auto_start"]
|
|
51
|
+
nullable_fields = ["validation_files", "suffix", "integrations"]
|
|
52
|
+
null_default_fields = []
|
|
53
|
+
|
|
54
|
+
serialized = handler(self)
|
|
55
|
+
|
|
56
|
+
m = {}
|
|
57
|
+
|
|
58
|
+
for n, f in self.model_fields.items():
|
|
59
|
+
k = f.alias or n
|
|
60
|
+
val = serialized.get(k)
|
|
61
|
+
|
|
62
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
63
|
+
m[k] = val
|
|
64
|
+
elif val != UNSET_SENTINEL and (
|
|
65
|
+
not k in optional_fields
|
|
66
|
+
or (
|
|
67
|
+
k in optional_fields
|
|
68
|
+
and k in nullable_fields
|
|
69
|
+
and (
|
|
70
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
71
|
+
or k in null_default_fields
|
|
72
|
+
) # pylint: disable=no-member
|
|
73
|
+
)
|
|
74
|
+
):
|
|
75
|
+
m[k] = val
|
|
76
|
+
|
|
77
|
+
return m
|
|
78
|
+
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from mistralai.types import BaseModel, Nullable, OptionalNullable, UNSET, UNSET_SENTINEL
|
|
5
|
+
from pydantic import model_serializer
|
|
6
|
+
from typing import TypedDict
|
|
7
|
+
from typing_extensions import NotRequired
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class JobMetadataOutTypedDict(TypedDict):
|
|
11
|
+
expected_duration_seconds: NotRequired[Nullable[int]]
|
|
12
|
+
cost: NotRequired[Nullable[float]]
|
|
13
|
+
cost_currency: NotRequired[Nullable[str]]
|
|
14
|
+
train_tokens_per_step: NotRequired[Nullable[int]]
|
|
15
|
+
train_tokens: NotRequired[Nullable[int]]
|
|
16
|
+
data_tokens: NotRequired[Nullable[int]]
|
|
17
|
+
estimated_start_time: NotRequired[Nullable[int]]
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
class JobMetadataOut(BaseModel):
|
|
21
|
+
expected_duration_seconds: OptionalNullable[int] = UNSET
|
|
22
|
+
cost: OptionalNullable[float] = UNSET
|
|
23
|
+
cost_currency: OptionalNullable[str] = UNSET
|
|
24
|
+
train_tokens_per_step: OptionalNullable[int] = UNSET
|
|
25
|
+
train_tokens: OptionalNullable[int] = UNSET
|
|
26
|
+
data_tokens: OptionalNullable[int] = UNSET
|
|
27
|
+
estimated_start_time: OptionalNullable[int] = UNSET
|
|
28
|
+
|
|
29
|
+
@model_serializer(mode="wrap")
|
|
30
|
+
def serialize_model(self, handler):
|
|
31
|
+
optional_fields = ["expected_duration_seconds", "cost", "cost_currency", "train_tokens_per_step", "train_tokens", "data_tokens", "estimated_start_time"]
|
|
32
|
+
nullable_fields = ["expected_duration_seconds", "cost", "cost_currency", "train_tokens_per_step", "train_tokens", "data_tokens", "estimated_start_time"]
|
|
33
|
+
null_default_fields = []
|
|
34
|
+
|
|
35
|
+
serialized = handler(self)
|
|
36
|
+
|
|
37
|
+
m = {}
|
|
38
|
+
|
|
39
|
+
for n, f in self.model_fields.items():
|
|
40
|
+
k = f.alias or n
|
|
41
|
+
val = serialized.get(k)
|
|
42
|
+
|
|
43
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
44
|
+
m[k] = val
|
|
45
|
+
elif val != UNSET_SENTINEL and (
|
|
46
|
+
not k in optional_fields
|
|
47
|
+
or (
|
|
48
|
+
k in optional_fields
|
|
49
|
+
and k in nullable_fields
|
|
50
|
+
and (
|
|
51
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
52
|
+
or k in null_default_fields
|
|
53
|
+
) # pylint: disable=no-member
|
|
54
|
+
)
|
|
55
|
+
):
|
|
56
|
+
m[k] = val
|
|
57
|
+
|
|
58
|
+
return m
|
|
59
|
+
|