mistralai 1.0.3__py3-none-any.whl → 1.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mistralai/__init__.py +4 -0
- mistralai/_hooks/sdkhooks.py +23 -4
- mistralai/_hooks/types.py +27 -9
- mistralai/_version.py +12 -0
- mistralai/agents.py +334 -164
- mistralai/basesdk.py +90 -5
- mistralai/batch.py +17 -0
- mistralai/chat.py +316 -166
- mistralai/classifiers.py +396 -0
- mistralai/embeddings.py +79 -55
- mistralai/files.py +487 -194
- mistralai/fim.py +206 -132
- mistralai/fine_tuning.py +3 -2
- mistralai/jobs.py +392 -263
- mistralai/mistral_jobs.py +733 -0
- mistralai/models/__init__.py +593 -50
- mistralai/models/agentscompletionrequest.py +70 -17
- mistralai/models/agentscompletionstreamrequest.py +72 -17
- mistralai/models/apiendpoint.py +9 -0
- mistralai/models/archiveftmodelout.py +15 -5
- mistralai/models/assistantmessage.py +22 -10
- mistralai/models/{modelcard.py → basemodelcard.py} +53 -14
- mistralai/models/batcherror.py +17 -0
- mistralai/models/batchjobin.py +58 -0
- mistralai/models/batchjobout.py +117 -0
- mistralai/models/batchjobsout.py +30 -0
- mistralai/models/batchjobstatus.py +15 -0
- mistralai/models/chatclassificationrequest.py +104 -0
- mistralai/models/chatcompletionchoice.py +13 -6
- mistralai/models/chatcompletionrequest.py +86 -21
- mistralai/models/chatcompletionresponse.py +8 -4
- mistralai/models/chatcompletionstreamrequest.py +88 -21
- mistralai/models/checkpointout.py +4 -3
- mistralai/models/classificationobject.py +21 -0
- mistralai/models/classificationrequest.py +59 -0
- mistralai/models/classificationresponse.py +21 -0
- mistralai/models/completionchunk.py +12 -5
- mistralai/models/completionevent.py +2 -3
- mistralai/models/completionresponsestreamchoice.py +22 -8
- mistralai/models/contentchunk.py +13 -10
- mistralai/models/delete_model_v1_models_model_id_deleteop.py +5 -5
- mistralai/models/deletefileout.py +4 -3
- mistralai/models/deletemodelout.py +5 -4
- mistralai/models/deltamessage.py +23 -11
- mistralai/models/detailedjobout.py +70 -12
- mistralai/models/embeddingrequest.py +14 -9
- mistralai/models/embeddingresponse.py +7 -3
- mistralai/models/embeddingresponsedata.py +5 -4
- mistralai/models/eventout.py +11 -6
- mistralai/models/filepurpose.py +8 -0
- mistralai/models/files_api_routes_delete_fileop.py +5 -5
- mistralai/models/files_api_routes_download_fileop.py +16 -0
- mistralai/models/files_api_routes_list_filesop.py +96 -0
- mistralai/models/files_api_routes_retrieve_fileop.py +5 -5
- mistralai/models/files_api_routes_upload_fileop.py +33 -14
- mistralai/models/fileschema.py +22 -15
- mistralai/models/fimcompletionrequest.py +44 -16
- mistralai/models/fimcompletionresponse.py +8 -4
- mistralai/models/fimcompletionstreamrequest.py +44 -16
- mistralai/models/finetuneablemodel.py +7 -1
- mistralai/models/ftmodelcapabilitiesout.py +6 -4
- mistralai/models/ftmodelcard.py +121 -0
- mistralai/models/ftmodelout.py +39 -9
- mistralai/models/function.py +5 -4
- mistralai/models/functioncall.py +4 -3
- mistralai/models/functionname.py +17 -0
- mistralai/models/githubrepositoryin.py +24 -7
- mistralai/models/githubrepositoryout.py +24 -7
- mistralai/models/httpvalidationerror.py +1 -3
- mistralai/models/imageurl.py +47 -0
- mistralai/models/imageurlchunk.py +38 -0
- mistralai/models/jobin.py +24 -7
- mistralai/models/jobmetadataout.py +32 -8
- mistralai/models/jobout.py +65 -12
- mistralai/models/jobs_api_routes_batch_cancel_batch_jobop.py +16 -0
- mistralai/models/jobs_api_routes_batch_get_batch_jobop.py +16 -0
- mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py +95 -0
- mistralai/models/jobs_api_routes_fine_tuning_archive_fine_tuned_modelop.py +5 -5
- mistralai/models/jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop.py +5 -5
- mistralai/models/jobs_api_routes_fine_tuning_create_fine_tuning_jobop.py +3 -2
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobop.py +5 -5
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +85 -18
- mistralai/models/jobs_api_routes_fine_tuning_start_fine_tuning_jobop.py +5 -5
- mistralai/models/jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop.py +5 -5
- mistralai/models/jobs_api_routes_fine_tuning_update_fine_tuned_modelop.py +10 -6
- mistralai/models/jobsout.py +13 -5
- mistralai/models/legacyjobmetadataout.py +55 -9
- mistralai/models/listfilesout.py +7 -3
- mistralai/models/metricout.py +12 -8
- mistralai/models/modelcapabilities.py +9 -4
- mistralai/models/modellist.py +21 -7
- mistralai/models/responseformat.py +7 -8
- mistralai/models/responseformats.py +8 -0
- mistralai/models/retrieve_model_v1_models_model_id_getop.py +25 -6
- mistralai/models/retrievefileout.py +25 -15
- mistralai/models/sampletype.py +6 -2
- mistralai/models/security.py +14 -5
- mistralai/models/source.py +3 -2
- mistralai/models/systemmessage.py +10 -9
- mistralai/models/textchunk.py +14 -5
- mistralai/models/tool.py +10 -9
- mistralai/models/toolcall.py +10 -8
- mistralai/models/toolchoice.py +29 -0
- mistralai/models/toolchoiceenum.py +7 -0
- mistralai/models/toolmessage.py +13 -6
- mistralai/models/tooltypes.py +8 -0
- mistralai/models/trainingfile.py +4 -4
- mistralai/models/trainingparameters.py +34 -8
- mistralai/models/trainingparametersin.py +36 -10
- mistralai/models/unarchiveftmodelout.py +15 -5
- mistralai/models/updateftmodelin.py +9 -6
- mistralai/models/uploadfileout.py +22 -15
- mistralai/models/usageinfo.py +4 -3
- mistralai/models/usermessage.py +42 -10
- mistralai/models/validationerror.py +5 -3
- mistralai/models/wandbintegration.py +23 -7
- mistralai/models/wandbintegrationout.py +23 -8
- mistralai/models_.py +416 -294
- mistralai/sdk.py +31 -19
- mistralai/sdkconfiguration.py +9 -11
- mistralai/utils/__init__.py +14 -1
- mistralai/utils/annotations.py +13 -2
- mistralai/utils/logger.py +4 -1
- mistralai/utils/retries.py +2 -1
- mistralai/utils/security.py +13 -6
- mistralai/utils/serializers.py +25 -0
- {mistralai-1.0.3.dist-info → mistralai-1.2.0.dist-info}/METADATA +171 -66
- mistralai-1.2.0.dist-info/RECORD +276 -0
- {mistralai-1.0.3.dist-info → mistralai-1.2.0.dist-info}/WHEEL +1 -1
- mistralai_azure/__init__.py +4 -0
- mistralai_azure/_hooks/sdkhooks.py +23 -4
- mistralai_azure/_hooks/types.py +27 -9
- mistralai_azure/_version.py +12 -0
- mistralai_azure/basesdk.py +91 -6
- mistralai_azure/chat.py +308 -166
- mistralai_azure/models/__init__.py +164 -16
- mistralai_azure/models/assistantmessage.py +29 -11
- mistralai_azure/models/chatcompletionchoice.py +15 -6
- mistralai_azure/models/chatcompletionrequest.py +94 -22
- mistralai_azure/models/chatcompletionresponse.py +8 -4
- mistralai_azure/models/chatcompletionstreamrequest.py +96 -22
- mistralai_azure/models/completionchunk.py +12 -5
- mistralai_azure/models/completionevent.py +2 -3
- mistralai_azure/models/completionresponsestreamchoice.py +19 -8
- mistralai_azure/models/contentchunk.py +4 -11
- mistralai_azure/models/deltamessage.py +30 -12
- mistralai_azure/models/function.py +5 -4
- mistralai_azure/models/functioncall.py +4 -3
- mistralai_azure/models/functionname.py +17 -0
- mistralai_azure/models/httpvalidationerror.py +1 -3
- mistralai_azure/models/responseformat.py +7 -8
- mistralai_azure/models/responseformats.py +8 -0
- mistralai_azure/models/security.py +13 -5
- mistralai_azure/models/systemmessage.py +10 -9
- mistralai_azure/models/textchunk.py +14 -5
- mistralai_azure/models/tool.py +10 -9
- mistralai_azure/models/toolcall.py +10 -8
- mistralai_azure/models/toolchoice.py +29 -0
- mistralai_azure/models/toolchoiceenum.py +7 -0
- mistralai_azure/models/toolmessage.py +20 -7
- mistralai_azure/models/tooltypes.py +8 -0
- mistralai_azure/models/usageinfo.py +4 -3
- mistralai_azure/models/usermessage.py +42 -10
- mistralai_azure/models/validationerror.py +5 -3
- mistralai_azure/sdkconfiguration.py +9 -11
- mistralai_azure/utils/__init__.py +16 -3
- mistralai_azure/utils/annotations.py +13 -2
- mistralai_azure/utils/forms.py +10 -9
- mistralai_azure/utils/headers.py +8 -8
- mistralai_azure/utils/logger.py +6 -0
- mistralai_azure/utils/queryparams.py +16 -14
- mistralai_azure/utils/retries.py +2 -1
- mistralai_azure/utils/security.py +12 -6
- mistralai_azure/utils/serializers.py +42 -8
- mistralai_azure/utils/url.py +13 -8
- mistralai_azure/utils/values.py +6 -0
- mistralai_gcp/__init__.py +4 -0
- mistralai_gcp/_hooks/sdkhooks.py +23 -4
- mistralai_gcp/_hooks/types.py +27 -9
- mistralai_gcp/_version.py +12 -0
- mistralai_gcp/basesdk.py +91 -6
- mistralai_gcp/chat.py +308 -166
- mistralai_gcp/fim.py +198 -132
- mistralai_gcp/models/__init__.py +186 -18
- mistralai_gcp/models/assistantmessage.py +29 -11
- mistralai_gcp/models/chatcompletionchoice.py +15 -6
- mistralai_gcp/models/chatcompletionrequest.py +91 -22
- mistralai_gcp/models/chatcompletionresponse.py +8 -4
- mistralai_gcp/models/chatcompletionstreamrequest.py +93 -22
- mistralai_gcp/models/completionchunk.py +12 -5
- mistralai_gcp/models/completionevent.py +2 -3
- mistralai_gcp/models/completionresponsestreamchoice.py +19 -8
- mistralai_gcp/models/contentchunk.py +4 -11
- mistralai_gcp/models/deltamessage.py +30 -12
- mistralai_gcp/models/fimcompletionrequest.py +51 -17
- mistralai_gcp/models/fimcompletionresponse.py +8 -4
- mistralai_gcp/models/fimcompletionstreamrequest.py +51 -17
- mistralai_gcp/models/function.py +5 -4
- mistralai_gcp/models/functioncall.py +4 -3
- mistralai_gcp/models/functionname.py +17 -0
- mistralai_gcp/models/httpvalidationerror.py +1 -3
- mistralai_gcp/models/responseformat.py +7 -8
- mistralai_gcp/models/responseformats.py +8 -0
- mistralai_gcp/models/security.py +13 -5
- mistralai_gcp/models/systemmessage.py +10 -9
- mistralai_gcp/models/textchunk.py +14 -5
- mistralai_gcp/models/tool.py +10 -9
- mistralai_gcp/models/toolcall.py +10 -8
- mistralai_gcp/models/toolchoice.py +29 -0
- mistralai_gcp/models/toolchoiceenum.py +7 -0
- mistralai_gcp/models/toolmessage.py +20 -7
- mistralai_gcp/models/tooltypes.py +8 -0
- mistralai_gcp/models/usageinfo.py +4 -3
- mistralai_gcp/models/usermessage.py +42 -10
- mistralai_gcp/models/validationerror.py +5 -3
- mistralai_gcp/sdk.py +6 -7
- mistralai_gcp/sdkconfiguration.py +9 -11
- mistralai_gcp/utils/__init__.py +16 -3
- mistralai_gcp/utils/annotations.py +13 -2
- mistralai_gcp/utils/forms.py +10 -9
- mistralai_gcp/utils/headers.py +8 -8
- mistralai_gcp/utils/logger.py +6 -0
- mistralai_gcp/utils/queryparams.py +16 -14
- mistralai_gcp/utils/retries.py +2 -1
- mistralai_gcp/utils/security.py +12 -6
- mistralai_gcp/utils/serializers.py +42 -8
- mistralai_gcp/utils/url.py +13 -8
- mistralai_gcp/utils/values.py +6 -0
- mistralai-1.0.3.dist-info/RECORD +0 -236
- {mistralai-1.0.3.dist-info → mistralai-1.2.0.dist-info}/LICENSE +0 -0
mistralai/models/__init__.py
CHANGED
|
@@ -1,82 +1,625 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
|
-
from .agentscompletionrequest import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
3
|
+
from .agentscompletionrequest import (
|
|
4
|
+
AgentsCompletionRequest,
|
|
5
|
+
AgentsCompletionRequestMessages,
|
|
6
|
+
AgentsCompletionRequestMessagesTypedDict,
|
|
7
|
+
AgentsCompletionRequestStop,
|
|
8
|
+
AgentsCompletionRequestStopTypedDict,
|
|
9
|
+
AgentsCompletionRequestToolChoice,
|
|
10
|
+
AgentsCompletionRequestToolChoiceTypedDict,
|
|
11
|
+
AgentsCompletionRequestTypedDict,
|
|
12
|
+
)
|
|
13
|
+
from .agentscompletionstreamrequest import (
|
|
14
|
+
AgentsCompletionStreamRequest,
|
|
15
|
+
AgentsCompletionStreamRequestMessages,
|
|
16
|
+
AgentsCompletionStreamRequestMessagesTypedDict,
|
|
17
|
+
AgentsCompletionStreamRequestStop,
|
|
18
|
+
AgentsCompletionStreamRequestStopTypedDict,
|
|
19
|
+
AgentsCompletionStreamRequestToolChoice,
|
|
20
|
+
AgentsCompletionStreamRequestToolChoiceTypedDict,
|
|
21
|
+
AgentsCompletionStreamRequestTypedDict,
|
|
22
|
+
)
|
|
23
|
+
from .apiendpoint import APIEndpoint
|
|
24
|
+
from .archiveftmodelout import (
|
|
25
|
+
ArchiveFTModelOut,
|
|
26
|
+
ArchiveFTModelOutObject,
|
|
27
|
+
ArchiveFTModelOutTypedDict,
|
|
28
|
+
)
|
|
29
|
+
from .assistantmessage import (
|
|
30
|
+
AssistantMessage,
|
|
31
|
+
AssistantMessageContent,
|
|
32
|
+
AssistantMessageContentTypedDict,
|
|
33
|
+
AssistantMessageRole,
|
|
34
|
+
AssistantMessageTypedDict,
|
|
35
|
+
)
|
|
36
|
+
from .basemodelcard import BaseModelCard, BaseModelCardTypedDict, Type
|
|
37
|
+
from .batcherror import BatchError, BatchErrorTypedDict
|
|
38
|
+
from .batchjobin import BatchJobIn, BatchJobInTypedDict
|
|
39
|
+
from .batchjobout import BatchJobOut, BatchJobOutObject, BatchJobOutTypedDict
|
|
40
|
+
from .batchjobsout import BatchJobsOut, BatchJobsOutObject, BatchJobsOutTypedDict
|
|
41
|
+
from .batchjobstatus import BatchJobStatus
|
|
42
|
+
from .chatclassificationrequest import (
|
|
43
|
+
ChatClassificationRequest,
|
|
44
|
+
ChatClassificationRequestInputs,
|
|
45
|
+
ChatClassificationRequestInputsTypedDict,
|
|
46
|
+
ChatClassificationRequestTypedDict,
|
|
47
|
+
One,
|
|
48
|
+
OneTypedDict,
|
|
49
|
+
Two,
|
|
50
|
+
TwoTypedDict,
|
|
51
|
+
)
|
|
52
|
+
from .chatcompletionchoice import (
|
|
53
|
+
ChatCompletionChoice,
|
|
54
|
+
ChatCompletionChoiceTypedDict,
|
|
55
|
+
FinishReason,
|
|
56
|
+
)
|
|
57
|
+
from .chatcompletionrequest import (
|
|
58
|
+
ChatCompletionRequest,
|
|
59
|
+
ChatCompletionRequestToolChoice,
|
|
60
|
+
ChatCompletionRequestToolChoiceTypedDict,
|
|
61
|
+
ChatCompletionRequestTypedDict,
|
|
62
|
+
Messages,
|
|
63
|
+
MessagesTypedDict,
|
|
64
|
+
Stop,
|
|
65
|
+
StopTypedDict,
|
|
66
|
+
)
|
|
67
|
+
from .chatcompletionresponse import (
|
|
68
|
+
ChatCompletionResponse,
|
|
69
|
+
ChatCompletionResponseTypedDict,
|
|
70
|
+
)
|
|
71
|
+
from .chatcompletionstreamrequest import (
|
|
72
|
+
ChatCompletionStreamRequest,
|
|
73
|
+
ChatCompletionStreamRequestMessages,
|
|
74
|
+
ChatCompletionStreamRequestMessagesTypedDict,
|
|
75
|
+
ChatCompletionStreamRequestStop,
|
|
76
|
+
ChatCompletionStreamRequestStopTypedDict,
|
|
77
|
+
ChatCompletionStreamRequestToolChoice,
|
|
78
|
+
ChatCompletionStreamRequestToolChoiceTypedDict,
|
|
79
|
+
ChatCompletionStreamRequestTypedDict,
|
|
80
|
+
)
|
|
11
81
|
from .checkpointout import CheckpointOut, CheckpointOutTypedDict
|
|
82
|
+
from .classificationobject import ClassificationObject, ClassificationObjectTypedDict
|
|
83
|
+
from .classificationrequest import (
|
|
84
|
+
ClassificationRequest,
|
|
85
|
+
ClassificationRequestInputs,
|
|
86
|
+
ClassificationRequestInputsTypedDict,
|
|
87
|
+
ClassificationRequestTypedDict,
|
|
88
|
+
)
|
|
89
|
+
from .classificationresponse import (
|
|
90
|
+
ClassificationResponse,
|
|
91
|
+
ClassificationResponseTypedDict,
|
|
92
|
+
)
|
|
12
93
|
from .completionchunk import CompletionChunk, CompletionChunkTypedDict
|
|
13
94
|
from .completionevent import CompletionEvent, CompletionEventTypedDict
|
|
14
|
-
from .completionresponsestreamchoice import
|
|
95
|
+
from .completionresponsestreamchoice import (
|
|
96
|
+
CompletionResponseStreamChoice,
|
|
97
|
+
CompletionResponseStreamChoiceFinishReason,
|
|
98
|
+
CompletionResponseStreamChoiceTypedDict,
|
|
99
|
+
)
|
|
15
100
|
from .contentchunk import ContentChunk, ContentChunkTypedDict
|
|
16
|
-
from .delete_model_v1_models_model_id_deleteop import
|
|
101
|
+
from .delete_model_v1_models_model_id_deleteop import (
|
|
102
|
+
DeleteModelV1ModelsModelIDDeleteRequest,
|
|
103
|
+
DeleteModelV1ModelsModelIDDeleteRequestTypedDict,
|
|
104
|
+
)
|
|
17
105
|
from .deletefileout import DeleteFileOut, DeleteFileOutTypedDict
|
|
18
106
|
from .deletemodelout import DeleteModelOut, DeleteModelOutTypedDict
|
|
19
|
-
from .deltamessage import DeltaMessage, DeltaMessageTypedDict
|
|
20
|
-
from .detailedjobout import
|
|
21
|
-
|
|
107
|
+
from .deltamessage import Content, ContentTypedDict, DeltaMessage, DeltaMessageTypedDict
|
|
108
|
+
from .detailedjobout import (
|
|
109
|
+
DetailedJobOut,
|
|
110
|
+
DetailedJobOutIntegrations,
|
|
111
|
+
DetailedJobOutIntegrationsTypedDict,
|
|
112
|
+
DetailedJobOutObject,
|
|
113
|
+
DetailedJobOutRepositories,
|
|
114
|
+
DetailedJobOutRepositoriesTypedDict,
|
|
115
|
+
DetailedJobOutStatus,
|
|
116
|
+
DetailedJobOutTypedDict,
|
|
117
|
+
)
|
|
118
|
+
from .embeddingrequest import (
|
|
119
|
+
EmbeddingRequest,
|
|
120
|
+
EmbeddingRequestTypedDict,
|
|
121
|
+
Inputs,
|
|
122
|
+
InputsTypedDict,
|
|
123
|
+
)
|
|
22
124
|
from .embeddingresponse import EmbeddingResponse, EmbeddingResponseTypedDict
|
|
23
125
|
from .embeddingresponsedata import EmbeddingResponseData, EmbeddingResponseDataTypedDict
|
|
24
126
|
from .eventout import EventOut, EventOutTypedDict
|
|
25
|
-
from .
|
|
26
|
-
from .
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
127
|
+
from .filepurpose import FilePurpose
|
|
128
|
+
from .files_api_routes_delete_fileop import (
|
|
129
|
+
FilesAPIRoutesDeleteFileRequest,
|
|
130
|
+
FilesAPIRoutesDeleteFileRequestTypedDict,
|
|
131
|
+
)
|
|
132
|
+
from .files_api_routes_download_fileop import (
|
|
133
|
+
FilesAPIRoutesDownloadFileRequest,
|
|
134
|
+
FilesAPIRoutesDownloadFileRequestTypedDict,
|
|
135
|
+
)
|
|
136
|
+
from .files_api_routes_list_filesop import (
|
|
137
|
+
FilesAPIRoutesListFilesRequest,
|
|
138
|
+
FilesAPIRoutesListFilesRequestTypedDict,
|
|
139
|
+
)
|
|
140
|
+
from .files_api_routes_retrieve_fileop import (
|
|
141
|
+
FilesAPIRoutesRetrieveFileRequest,
|
|
142
|
+
FilesAPIRoutesRetrieveFileRequestTypedDict,
|
|
143
|
+
)
|
|
144
|
+
from .files_api_routes_upload_fileop import (
|
|
145
|
+
File,
|
|
146
|
+
FileTypedDict,
|
|
147
|
+
FilesAPIRoutesUploadFileMultiPartBodyParams,
|
|
148
|
+
FilesAPIRoutesUploadFileMultiPartBodyParamsTypedDict,
|
|
149
|
+
)
|
|
150
|
+
from .fileschema import FileSchema, FileSchemaTypedDict
|
|
151
|
+
from .fimcompletionrequest import (
|
|
152
|
+
FIMCompletionRequest,
|
|
153
|
+
FIMCompletionRequestStop,
|
|
154
|
+
FIMCompletionRequestStopTypedDict,
|
|
155
|
+
FIMCompletionRequestTypedDict,
|
|
156
|
+
)
|
|
30
157
|
from .fimcompletionresponse import FIMCompletionResponse, FIMCompletionResponseTypedDict
|
|
31
|
-
from .fimcompletionstreamrequest import
|
|
158
|
+
from .fimcompletionstreamrequest import (
|
|
159
|
+
FIMCompletionStreamRequest,
|
|
160
|
+
FIMCompletionStreamRequestStop,
|
|
161
|
+
FIMCompletionStreamRequestStopTypedDict,
|
|
162
|
+
FIMCompletionStreamRequestTypedDict,
|
|
163
|
+
)
|
|
32
164
|
from .finetuneablemodel import FineTuneableModel
|
|
33
|
-
from .ftmodelcapabilitiesout import
|
|
165
|
+
from .ftmodelcapabilitiesout import (
|
|
166
|
+
FTModelCapabilitiesOut,
|
|
167
|
+
FTModelCapabilitiesOutTypedDict,
|
|
168
|
+
)
|
|
169
|
+
from .ftmodelcard import FTModelCard, FTModelCardType, FTModelCardTypedDict
|
|
34
170
|
from .ftmodelout import FTModelOut, FTModelOutObject, FTModelOutTypedDict
|
|
35
171
|
from .function import Function, FunctionTypedDict
|
|
36
|
-
from .functioncall import
|
|
37
|
-
|
|
38
|
-
|
|
172
|
+
from .functioncall import (
|
|
173
|
+
Arguments,
|
|
174
|
+
ArgumentsTypedDict,
|
|
175
|
+
FunctionCall,
|
|
176
|
+
FunctionCallTypedDict,
|
|
177
|
+
)
|
|
178
|
+
from .functionname import FunctionName, FunctionNameTypedDict
|
|
179
|
+
from .githubrepositoryin import (
|
|
180
|
+
GithubRepositoryIn,
|
|
181
|
+
GithubRepositoryInType,
|
|
182
|
+
GithubRepositoryInTypedDict,
|
|
183
|
+
)
|
|
184
|
+
from .githubrepositoryout import (
|
|
185
|
+
GithubRepositoryOut,
|
|
186
|
+
GithubRepositoryOutType,
|
|
187
|
+
GithubRepositoryOutTypedDict,
|
|
188
|
+
)
|
|
39
189
|
from .httpvalidationerror import HTTPValidationError, HTTPValidationErrorData
|
|
40
|
-
from .
|
|
190
|
+
from .imageurl import ImageURL, ImageURLTypedDict
|
|
191
|
+
from .imageurlchunk import (
|
|
192
|
+
ImageURLChunk,
|
|
193
|
+
ImageURLChunkImageURL,
|
|
194
|
+
ImageURLChunkImageURLTypedDict,
|
|
195
|
+
ImageURLChunkType,
|
|
196
|
+
ImageURLChunkTypedDict,
|
|
197
|
+
)
|
|
198
|
+
from .jobin import (
|
|
199
|
+
JobIn,
|
|
200
|
+
JobInIntegrations,
|
|
201
|
+
JobInIntegrationsTypedDict,
|
|
202
|
+
JobInRepositories,
|
|
203
|
+
JobInRepositoriesTypedDict,
|
|
204
|
+
JobInTypedDict,
|
|
205
|
+
)
|
|
41
206
|
from .jobmetadataout import JobMetadataOut, JobMetadataOutTypedDict
|
|
42
|
-
from .jobout import
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
207
|
+
from .jobout import (
|
|
208
|
+
Integrations,
|
|
209
|
+
IntegrationsTypedDict,
|
|
210
|
+
JobOut,
|
|
211
|
+
JobOutTypedDict,
|
|
212
|
+
Object,
|
|
213
|
+
Repositories,
|
|
214
|
+
RepositoriesTypedDict,
|
|
215
|
+
Status,
|
|
216
|
+
)
|
|
217
|
+
from .jobs_api_routes_batch_cancel_batch_jobop import (
|
|
218
|
+
JobsAPIRoutesBatchCancelBatchJobRequest,
|
|
219
|
+
JobsAPIRoutesBatchCancelBatchJobRequestTypedDict,
|
|
220
|
+
)
|
|
221
|
+
from .jobs_api_routes_batch_get_batch_jobop import (
|
|
222
|
+
JobsAPIRoutesBatchGetBatchJobRequest,
|
|
223
|
+
JobsAPIRoutesBatchGetBatchJobRequestTypedDict,
|
|
224
|
+
)
|
|
225
|
+
from .jobs_api_routes_batch_get_batch_jobsop import (
|
|
226
|
+
JobsAPIRoutesBatchGetBatchJobsRequest,
|
|
227
|
+
JobsAPIRoutesBatchGetBatchJobsRequestTypedDict,
|
|
228
|
+
)
|
|
229
|
+
from .jobs_api_routes_fine_tuning_archive_fine_tuned_modelop import (
|
|
230
|
+
JobsAPIRoutesFineTuningArchiveFineTunedModelRequest,
|
|
231
|
+
JobsAPIRoutesFineTuningArchiveFineTunedModelRequestTypedDict,
|
|
232
|
+
)
|
|
233
|
+
from .jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop import (
|
|
234
|
+
JobsAPIRoutesFineTuningCancelFineTuningJobRequest,
|
|
235
|
+
JobsAPIRoutesFineTuningCancelFineTuningJobRequestTypedDict,
|
|
236
|
+
)
|
|
237
|
+
from .jobs_api_routes_fine_tuning_create_fine_tuning_jobop import (
|
|
238
|
+
JobsAPIRoutesFineTuningCreateFineTuningJobResponse,
|
|
239
|
+
JobsAPIRoutesFineTuningCreateFineTuningJobResponseTypedDict,
|
|
240
|
+
)
|
|
241
|
+
from .jobs_api_routes_fine_tuning_get_fine_tuning_jobop import (
|
|
242
|
+
JobsAPIRoutesFineTuningGetFineTuningJobRequest,
|
|
243
|
+
JobsAPIRoutesFineTuningGetFineTuningJobRequestTypedDict,
|
|
244
|
+
)
|
|
245
|
+
from .jobs_api_routes_fine_tuning_get_fine_tuning_jobsop import (
|
|
246
|
+
JobsAPIRoutesFineTuningGetFineTuningJobsRequest,
|
|
247
|
+
JobsAPIRoutesFineTuningGetFineTuningJobsRequestTypedDict,
|
|
248
|
+
QueryParamStatus,
|
|
249
|
+
)
|
|
250
|
+
from .jobs_api_routes_fine_tuning_start_fine_tuning_jobop import (
|
|
251
|
+
JobsAPIRoutesFineTuningStartFineTuningJobRequest,
|
|
252
|
+
JobsAPIRoutesFineTuningStartFineTuningJobRequestTypedDict,
|
|
253
|
+
)
|
|
254
|
+
from .jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop import (
|
|
255
|
+
JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequest,
|
|
256
|
+
JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequestTypedDict,
|
|
257
|
+
)
|
|
258
|
+
from .jobs_api_routes_fine_tuning_update_fine_tuned_modelop import (
|
|
259
|
+
JobsAPIRoutesFineTuningUpdateFineTunedModelRequest,
|
|
260
|
+
JobsAPIRoutesFineTuningUpdateFineTunedModelRequestTypedDict,
|
|
261
|
+
)
|
|
51
262
|
from .jobsout import JobsOut, JobsOutObject, JobsOutTypedDict
|
|
52
|
-
from .legacyjobmetadataout import
|
|
263
|
+
from .legacyjobmetadataout import (
|
|
264
|
+
LegacyJobMetadataOut,
|
|
265
|
+
LegacyJobMetadataOutObject,
|
|
266
|
+
LegacyJobMetadataOutTypedDict,
|
|
267
|
+
)
|
|
53
268
|
from .listfilesout import ListFilesOut, ListFilesOutTypedDict
|
|
54
269
|
from .metricout import MetricOut, MetricOutTypedDict
|
|
55
270
|
from .modelcapabilities import ModelCapabilities, ModelCapabilitiesTypedDict
|
|
56
|
-
from .
|
|
57
|
-
from .
|
|
58
|
-
from .
|
|
59
|
-
from .retrieve_model_v1_models_model_id_getop import
|
|
60
|
-
|
|
271
|
+
from .modellist import Data, DataTypedDict, ModelList, ModelListTypedDict
|
|
272
|
+
from .responseformat import ResponseFormat, ResponseFormatTypedDict
|
|
273
|
+
from .responseformats import ResponseFormats
|
|
274
|
+
from .retrieve_model_v1_models_model_id_getop import (
|
|
275
|
+
RetrieveModelV1ModelsModelIDGetRequest,
|
|
276
|
+
RetrieveModelV1ModelsModelIDGetRequestTypedDict,
|
|
277
|
+
RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGet,
|
|
278
|
+
RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGetTypedDict,
|
|
279
|
+
)
|
|
280
|
+
from .retrievefileout import RetrieveFileOut, RetrieveFileOutTypedDict
|
|
61
281
|
from .sampletype import SampleType
|
|
62
282
|
from .sdkerror import SDKError
|
|
63
283
|
from .security import Security, SecurityTypedDict
|
|
64
284
|
from .source import Source
|
|
65
|
-
from .systemmessage import
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
285
|
+
from .systemmessage import (
|
|
286
|
+
Role,
|
|
287
|
+
SystemMessage,
|
|
288
|
+
SystemMessageContent,
|
|
289
|
+
SystemMessageContentTypedDict,
|
|
290
|
+
SystemMessageTypedDict,
|
|
291
|
+
)
|
|
292
|
+
from .textchunk import TextChunk, TextChunkType, TextChunkTypedDict
|
|
293
|
+
from .tool import Tool, ToolTypedDict
|
|
294
|
+
from .toolcall import ToolCall, ToolCallTypedDict
|
|
295
|
+
from .toolchoice import ToolChoice, ToolChoiceTypedDict
|
|
296
|
+
from .toolchoiceenum import ToolChoiceEnum
|
|
69
297
|
from .toolmessage import ToolMessage, ToolMessageRole, ToolMessageTypedDict
|
|
298
|
+
from .tooltypes import ToolTypes
|
|
70
299
|
from .trainingfile import TrainingFile, TrainingFileTypedDict
|
|
71
300
|
from .trainingparameters import TrainingParameters, TrainingParametersTypedDict
|
|
72
301
|
from .trainingparametersin import TrainingParametersIn, TrainingParametersInTypedDict
|
|
73
|
-
from .unarchiveftmodelout import
|
|
302
|
+
from .unarchiveftmodelout import (
|
|
303
|
+
UnarchiveFTModelOut,
|
|
304
|
+
UnarchiveFTModelOutObject,
|
|
305
|
+
UnarchiveFTModelOutTypedDict,
|
|
306
|
+
)
|
|
74
307
|
from .updateftmodelin import UpdateFTModelIn, UpdateFTModelInTypedDict
|
|
75
|
-
from .uploadfileout import
|
|
308
|
+
from .uploadfileout import UploadFileOut, UploadFileOutTypedDict
|
|
76
309
|
from .usageinfo import UsageInfo, UsageInfoTypedDict
|
|
77
|
-
from .usermessage import
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
310
|
+
from .usermessage import (
|
|
311
|
+
UserMessage,
|
|
312
|
+
UserMessageContent,
|
|
313
|
+
UserMessageContentTypedDict,
|
|
314
|
+
UserMessageRole,
|
|
315
|
+
UserMessageTypedDict,
|
|
316
|
+
)
|
|
317
|
+
from .validationerror import (
|
|
318
|
+
Loc,
|
|
319
|
+
LocTypedDict,
|
|
320
|
+
ValidationError,
|
|
321
|
+
ValidationErrorTypedDict,
|
|
322
|
+
)
|
|
323
|
+
from .wandbintegration import (
|
|
324
|
+
WandbIntegration,
|
|
325
|
+
WandbIntegrationType,
|
|
326
|
+
WandbIntegrationTypedDict,
|
|
327
|
+
)
|
|
328
|
+
from .wandbintegrationout import (
|
|
329
|
+
WandbIntegrationOut,
|
|
330
|
+
WandbIntegrationOutType,
|
|
331
|
+
WandbIntegrationOutTypedDict,
|
|
332
|
+
)
|
|
81
333
|
|
|
82
|
-
__all__ = [
|
|
334
|
+
__all__ = [
|
|
335
|
+
"APIEndpoint",
|
|
336
|
+
"AgentsCompletionRequest",
|
|
337
|
+
"AgentsCompletionRequestMessages",
|
|
338
|
+
"AgentsCompletionRequestMessagesTypedDict",
|
|
339
|
+
"AgentsCompletionRequestStop",
|
|
340
|
+
"AgentsCompletionRequestStopTypedDict",
|
|
341
|
+
"AgentsCompletionRequestToolChoice",
|
|
342
|
+
"AgentsCompletionRequestToolChoiceTypedDict",
|
|
343
|
+
"AgentsCompletionRequestTypedDict",
|
|
344
|
+
"AgentsCompletionStreamRequest",
|
|
345
|
+
"AgentsCompletionStreamRequestMessages",
|
|
346
|
+
"AgentsCompletionStreamRequestMessagesTypedDict",
|
|
347
|
+
"AgentsCompletionStreamRequestStop",
|
|
348
|
+
"AgentsCompletionStreamRequestStopTypedDict",
|
|
349
|
+
"AgentsCompletionStreamRequestToolChoice",
|
|
350
|
+
"AgentsCompletionStreamRequestToolChoiceTypedDict",
|
|
351
|
+
"AgentsCompletionStreamRequestTypedDict",
|
|
352
|
+
"ArchiveFTModelOut",
|
|
353
|
+
"ArchiveFTModelOutObject",
|
|
354
|
+
"ArchiveFTModelOutTypedDict",
|
|
355
|
+
"Arguments",
|
|
356
|
+
"ArgumentsTypedDict",
|
|
357
|
+
"AssistantMessage",
|
|
358
|
+
"AssistantMessageContent",
|
|
359
|
+
"AssistantMessageContentTypedDict",
|
|
360
|
+
"AssistantMessageRole",
|
|
361
|
+
"AssistantMessageTypedDict",
|
|
362
|
+
"BaseModelCard",
|
|
363
|
+
"BaseModelCardTypedDict",
|
|
364
|
+
"BatchError",
|
|
365
|
+
"BatchErrorTypedDict",
|
|
366
|
+
"BatchJobIn",
|
|
367
|
+
"BatchJobInTypedDict",
|
|
368
|
+
"BatchJobOut",
|
|
369
|
+
"BatchJobOutObject",
|
|
370
|
+
"BatchJobOutTypedDict",
|
|
371
|
+
"BatchJobStatus",
|
|
372
|
+
"BatchJobsOut",
|
|
373
|
+
"BatchJobsOutObject",
|
|
374
|
+
"BatchJobsOutTypedDict",
|
|
375
|
+
"ChatClassificationRequest",
|
|
376
|
+
"ChatClassificationRequestInputs",
|
|
377
|
+
"ChatClassificationRequestInputsTypedDict",
|
|
378
|
+
"ChatClassificationRequestTypedDict",
|
|
379
|
+
"ChatCompletionChoice",
|
|
380
|
+
"ChatCompletionChoiceTypedDict",
|
|
381
|
+
"ChatCompletionRequest",
|
|
382
|
+
"ChatCompletionRequestToolChoice",
|
|
383
|
+
"ChatCompletionRequestToolChoiceTypedDict",
|
|
384
|
+
"ChatCompletionRequestTypedDict",
|
|
385
|
+
"ChatCompletionResponse",
|
|
386
|
+
"ChatCompletionResponseTypedDict",
|
|
387
|
+
"ChatCompletionStreamRequest",
|
|
388
|
+
"ChatCompletionStreamRequestMessages",
|
|
389
|
+
"ChatCompletionStreamRequestMessagesTypedDict",
|
|
390
|
+
"ChatCompletionStreamRequestStop",
|
|
391
|
+
"ChatCompletionStreamRequestStopTypedDict",
|
|
392
|
+
"ChatCompletionStreamRequestToolChoice",
|
|
393
|
+
"ChatCompletionStreamRequestToolChoiceTypedDict",
|
|
394
|
+
"ChatCompletionStreamRequestTypedDict",
|
|
395
|
+
"CheckpointOut",
|
|
396
|
+
"CheckpointOutTypedDict",
|
|
397
|
+
"ClassificationObject",
|
|
398
|
+
"ClassificationObjectTypedDict",
|
|
399
|
+
"ClassificationRequest",
|
|
400
|
+
"ClassificationRequestInputs",
|
|
401
|
+
"ClassificationRequestInputsTypedDict",
|
|
402
|
+
"ClassificationRequestTypedDict",
|
|
403
|
+
"ClassificationResponse",
|
|
404
|
+
"ClassificationResponseTypedDict",
|
|
405
|
+
"CompletionChunk",
|
|
406
|
+
"CompletionChunkTypedDict",
|
|
407
|
+
"CompletionEvent",
|
|
408
|
+
"CompletionEventTypedDict",
|
|
409
|
+
"CompletionResponseStreamChoice",
|
|
410
|
+
"CompletionResponseStreamChoiceFinishReason",
|
|
411
|
+
"CompletionResponseStreamChoiceTypedDict",
|
|
412
|
+
"Content",
|
|
413
|
+
"ContentChunk",
|
|
414
|
+
"ContentChunkTypedDict",
|
|
415
|
+
"ContentTypedDict",
|
|
416
|
+
"Data",
|
|
417
|
+
"DataTypedDict",
|
|
418
|
+
"DeleteFileOut",
|
|
419
|
+
"DeleteFileOutTypedDict",
|
|
420
|
+
"DeleteModelOut",
|
|
421
|
+
"DeleteModelOutTypedDict",
|
|
422
|
+
"DeleteModelV1ModelsModelIDDeleteRequest",
|
|
423
|
+
"DeleteModelV1ModelsModelIDDeleteRequestTypedDict",
|
|
424
|
+
"DeltaMessage",
|
|
425
|
+
"DeltaMessageTypedDict",
|
|
426
|
+
"DetailedJobOut",
|
|
427
|
+
"DetailedJobOutIntegrations",
|
|
428
|
+
"DetailedJobOutIntegrationsTypedDict",
|
|
429
|
+
"DetailedJobOutObject",
|
|
430
|
+
"DetailedJobOutRepositories",
|
|
431
|
+
"DetailedJobOutRepositoriesTypedDict",
|
|
432
|
+
"DetailedJobOutStatus",
|
|
433
|
+
"DetailedJobOutTypedDict",
|
|
434
|
+
"EmbeddingRequest",
|
|
435
|
+
"EmbeddingRequestTypedDict",
|
|
436
|
+
"EmbeddingResponse",
|
|
437
|
+
"EmbeddingResponseData",
|
|
438
|
+
"EmbeddingResponseDataTypedDict",
|
|
439
|
+
"EmbeddingResponseTypedDict",
|
|
440
|
+
"EventOut",
|
|
441
|
+
"EventOutTypedDict",
|
|
442
|
+
"FIMCompletionRequest",
|
|
443
|
+
"FIMCompletionRequestStop",
|
|
444
|
+
"FIMCompletionRequestStopTypedDict",
|
|
445
|
+
"FIMCompletionRequestTypedDict",
|
|
446
|
+
"FIMCompletionResponse",
|
|
447
|
+
"FIMCompletionResponseTypedDict",
|
|
448
|
+
"FIMCompletionStreamRequest",
|
|
449
|
+
"FIMCompletionStreamRequestStop",
|
|
450
|
+
"FIMCompletionStreamRequestStopTypedDict",
|
|
451
|
+
"FIMCompletionStreamRequestTypedDict",
|
|
452
|
+
"FTModelCapabilitiesOut",
|
|
453
|
+
"FTModelCapabilitiesOutTypedDict",
|
|
454
|
+
"FTModelCard",
|
|
455
|
+
"FTModelCardType",
|
|
456
|
+
"FTModelCardTypedDict",
|
|
457
|
+
"FTModelOut",
|
|
458
|
+
"FTModelOutObject",
|
|
459
|
+
"FTModelOutTypedDict",
|
|
460
|
+
"File",
|
|
461
|
+
"FilePurpose",
|
|
462
|
+
"FileSchema",
|
|
463
|
+
"FileSchemaTypedDict",
|
|
464
|
+
"FileTypedDict",
|
|
465
|
+
"FilesAPIRoutesDeleteFileRequest",
|
|
466
|
+
"FilesAPIRoutesDeleteFileRequestTypedDict",
|
|
467
|
+
"FilesAPIRoutesDownloadFileRequest",
|
|
468
|
+
"FilesAPIRoutesDownloadFileRequestTypedDict",
|
|
469
|
+
"FilesAPIRoutesListFilesRequest",
|
|
470
|
+
"FilesAPIRoutesListFilesRequestTypedDict",
|
|
471
|
+
"FilesAPIRoutesRetrieveFileRequest",
|
|
472
|
+
"FilesAPIRoutesRetrieveFileRequestTypedDict",
|
|
473
|
+
"FilesAPIRoutesUploadFileMultiPartBodyParams",
|
|
474
|
+
"FilesAPIRoutesUploadFileMultiPartBodyParamsTypedDict",
|
|
475
|
+
"FineTuneableModel",
|
|
476
|
+
"FinishReason",
|
|
477
|
+
"Function",
|
|
478
|
+
"FunctionCall",
|
|
479
|
+
"FunctionCallTypedDict",
|
|
480
|
+
"FunctionName",
|
|
481
|
+
"FunctionNameTypedDict",
|
|
482
|
+
"FunctionTypedDict",
|
|
483
|
+
"GithubRepositoryIn",
|
|
484
|
+
"GithubRepositoryInType",
|
|
485
|
+
"GithubRepositoryInTypedDict",
|
|
486
|
+
"GithubRepositoryOut",
|
|
487
|
+
"GithubRepositoryOutType",
|
|
488
|
+
"GithubRepositoryOutTypedDict",
|
|
489
|
+
"HTTPValidationError",
|
|
490
|
+
"HTTPValidationErrorData",
|
|
491
|
+
"ImageURL",
|
|
492
|
+
"ImageURLChunk",
|
|
493
|
+
"ImageURLChunkImageURL",
|
|
494
|
+
"ImageURLChunkImageURLTypedDict",
|
|
495
|
+
"ImageURLChunkType",
|
|
496
|
+
"ImageURLChunkTypedDict",
|
|
497
|
+
"ImageURLTypedDict",
|
|
498
|
+
"Inputs",
|
|
499
|
+
"InputsTypedDict",
|
|
500
|
+
"Integrations",
|
|
501
|
+
"IntegrationsTypedDict",
|
|
502
|
+
"JobIn",
|
|
503
|
+
"JobInIntegrations",
|
|
504
|
+
"JobInIntegrationsTypedDict",
|
|
505
|
+
"JobInRepositories",
|
|
506
|
+
"JobInRepositoriesTypedDict",
|
|
507
|
+
"JobInTypedDict",
|
|
508
|
+
"JobMetadataOut",
|
|
509
|
+
"JobMetadataOutTypedDict",
|
|
510
|
+
"JobOut",
|
|
511
|
+
"JobOutTypedDict",
|
|
512
|
+
"JobsAPIRoutesBatchCancelBatchJobRequest",
|
|
513
|
+
"JobsAPIRoutesBatchCancelBatchJobRequestTypedDict",
|
|
514
|
+
"JobsAPIRoutesBatchGetBatchJobRequest",
|
|
515
|
+
"JobsAPIRoutesBatchGetBatchJobRequestTypedDict",
|
|
516
|
+
"JobsAPIRoutesBatchGetBatchJobsRequest",
|
|
517
|
+
"JobsAPIRoutesBatchGetBatchJobsRequestTypedDict",
|
|
518
|
+
"JobsAPIRoutesFineTuningArchiveFineTunedModelRequest",
|
|
519
|
+
"JobsAPIRoutesFineTuningArchiveFineTunedModelRequestTypedDict",
|
|
520
|
+
"JobsAPIRoutesFineTuningCancelFineTuningJobRequest",
|
|
521
|
+
"JobsAPIRoutesFineTuningCancelFineTuningJobRequestTypedDict",
|
|
522
|
+
"JobsAPIRoutesFineTuningCreateFineTuningJobResponse",
|
|
523
|
+
"JobsAPIRoutesFineTuningCreateFineTuningJobResponseTypedDict",
|
|
524
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobRequest",
|
|
525
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobRequestTypedDict",
|
|
526
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobsRequest",
|
|
527
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobsRequestTypedDict",
|
|
528
|
+
"JobsAPIRoutesFineTuningStartFineTuningJobRequest",
|
|
529
|
+
"JobsAPIRoutesFineTuningStartFineTuningJobRequestTypedDict",
|
|
530
|
+
"JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequest",
|
|
531
|
+
"JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequestTypedDict",
|
|
532
|
+
"JobsAPIRoutesFineTuningUpdateFineTunedModelRequest",
|
|
533
|
+
"JobsAPIRoutesFineTuningUpdateFineTunedModelRequestTypedDict",
|
|
534
|
+
"JobsOut",
|
|
535
|
+
"JobsOutObject",
|
|
536
|
+
"JobsOutTypedDict",
|
|
537
|
+
"LegacyJobMetadataOut",
|
|
538
|
+
"LegacyJobMetadataOutObject",
|
|
539
|
+
"LegacyJobMetadataOutTypedDict",
|
|
540
|
+
"ListFilesOut",
|
|
541
|
+
"ListFilesOutTypedDict",
|
|
542
|
+
"Loc",
|
|
543
|
+
"LocTypedDict",
|
|
544
|
+
"Messages",
|
|
545
|
+
"MessagesTypedDict",
|
|
546
|
+
"MetricOut",
|
|
547
|
+
"MetricOutTypedDict",
|
|
548
|
+
"ModelCapabilities",
|
|
549
|
+
"ModelCapabilitiesTypedDict",
|
|
550
|
+
"ModelList",
|
|
551
|
+
"ModelListTypedDict",
|
|
552
|
+
"Object",
|
|
553
|
+
"One",
|
|
554
|
+
"OneTypedDict",
|
|
555
|
+
"QueryParamStatus",
|
|
556
|
+
"Repositories",
|
|
557
|
+
"RepositoriesTypedDict",
|
|
558
|
+
"ResponseFormat",
|
|
559
|
+
"ResponseFormatTypedDict",
|
|
560
|
+
"ResponseFormats",
|
|
561
|
+
"RetrieveFileOut",
|
|
562
|
+
"RetrieveFileOutTypedDict",
|
|
563
|
+
"RetrieveModelV1ModelsModelIDGetRequest",
|
|
564
|
+
"RetrieveModelV1ModelsModelIDGetRequestTypedDict",
|
|
565
|
+
"RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGet",
|
|
566
|
+
"RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGetTypedDict",
|
|
567
|
+
"Role",
|
|
568
|
+
"SDKError",
|
|
569
|
+
"SampleType",
|
|
570
|
+
"Security",
|
|
571
|
+
"SecurityTypedDict",
|
|
572
|
+
"Source",
|
|
573
|
+
"Status",
|
|
574
|
+
"Stop",
|
|
575
|
+
"StopTypedDict",
|
|
576
|
+
"SystemMessage",
|
|
577
|
+
"SystemMessageContent",
|
|
578
|
+
"SystemMessageContentTypedDict",
|
|
579
|
+
"SystemMessageTypedDict",
|
|
580
|
+
"TextChunk",
|
|
581
|
+
"TextChunkType",
|
|
582
|
+
"TextChunkTypedDict",
|
|
583
|
+
"Tool",
|
|
584
|
+
"ToolCall",
|
|
585
|
+
"ToolCallTypedDict",
|
|
586
|
+
"ToolChoice",
|
|
587
|
+
"ToolChoiceEnum",
|
|
588
|
+
"ToolChoiceTypedDict",
|
|
589
|
+
"ToolMessage",
|
|
590
|
+
"ToolMessageRole",
|
|
591
|
+
"ToolMessageTypedDict",
|
|
592
|
+
"ToolTypedDict",
|
|
593
|
+
"ToolTypes",
|
|
594
|
+
"TrainingFile",
|
|
595
|
+
"TrainingFileTypedDict",
|
|
596
|
+
"TrainingParameters",
|
|
597
|
+
"TrainingParametersIn",
|
|
598
|
+
"TrainingParametersInTypedDict",
|
|
599
|
+
"TrainingParametersTypedDict",
|
|
600
|
+
"Two",
|
|
601
|
+
"TwoTypedDict",
|
|
602
|
+
"Type",
|
|
603
|
+
"UnarchiveFTModelOut",
|
|
604
|
+
"UnarchiveFTModelOutObject",
|
|
605
|
+
"UnarchiveFTModelOutTypedDict",
|
|
606
|
+
"UpdateFTModelIn",
|
|
607
|
+
"UpdateFTModelInTypedDict",
|
|
608
|
+
"UploadFileOut",
|
|
609
|
+
"UploadFileOutTypedDict",
|
|
610
|
+
"UsageInfo",
|
|
611
|
+
"UsageInfoTypedDict",
|
|
612
|
+
"UserMessage",
|
|
613
|
+
"UserMessageContent",
|
|
614
|
+
"UserMessageContentTypedDict",
|
|
615
|
+
"UserMessageRole",
|
|
616
|
+
"UserMessageTypedDict",
|
|
617
|
+
"ValidationError",
|
|
618
|
+
"ValidationErrorTypedDict",
|
|
619
|
+
"WandbIntegration",
|
|
620
|
+
"WandbIntegrationOut",
|
|
621
|
+
"WandbIntegrationOutType",
|
|
622
|
+
"WandbIntegrationOutTypedDict",
|
|
623
|
+
"WandbIntegrationType",
|
|
624
|
+
"WandbIntegrationTypedDict",
|
|
625
|
+
]
|