mistralai 1.8.2__py3-none-any.whl → 1.9.1__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/_hooks/types.py +7 -0
- mistralai/_version.py +3 -3
- mistralai/agents.py +8 -4
- mistralai/basesdk.py +12 -20
- mistralai/chat.py +8 -4
- mistralai/classifiers.py +8 -0
- mistralai/conversations.py +34 -14
- mistralai/embeddings.py +2 -0
- mistralai/extra/run/context.py +2 -4
- mistralai/files.py +12 -0
- mistralai/fim.py +4 -0
- mistralai/httpclient.py +6 -16
- mistralai/jobs.py +10 -0
- mistralai/mistral_agents.py +10 -0
- mistralai/mistral_jobs.py +8 -0
- mistralai/models/__init__.py +1356 -723
- mistralai/models/agent.py +1 -1
- mistralai/models/agentconversation.py +1 -1
- mistralai/models/agentcreationrequest.py +1 -1
- mistralai/models/agenthandoffentry.py +1 -1
- mistralai/models/agents_api_v1_conversations_getop.py +2 -0
- mistralai/models/agents_api_v1_conversations_historyop.py +2 -0
- mistralai/models/agents_api_v1_conversations_messagesop.py +2 -0
- mistralai/models/agents_api_v1_conversations_restart_streamop.py +2 -0
- mistralai/models/agents_api_v1_conversations_restartop.py +2 -0
- mistralai/models/agentscompletionrequest.py +3 -1
- mistralai/models/agentscompletionstreamrequest.py +3 -1
- mistralai/models/agentupdaterequest.py +1 -1
- mistralai/models/assistantmessage.py +1 -1
- mistralai/models/basemodelcard.py +8 -6
- mistralai/models/batchjobin.py +1 -1
- mistralai/models/batchjobout.py +1 -1
- mistralai/models/chatcompletionrequest.py +3 -1
- mistralai/models/chatcompletionstreamrequest.py +3 -1
- mistralai/models/classifierdetailedjobout.py +1 -1
- mistralai/models/classifierftmodelout.py +1 -1
- mistralai/models/classifierjobout.py +1 -1
- mistralai/models/classifiertargetin.py +1 -1
- mistralai/models/classifiertrainingparameters.py +1 -1
- mistralai/models/classifiertrainingparametersin.py +1 -1
- mistralai/models/completionargs.py +1 -1
- mistralai/models/completiondetailedjobout.py +1 -1
- mistralai/models/completionftmodelout.py +1 -1
- mistralai/models/completionjobout.py +1 -1
- mistralai/models/completionresponsestreamchoice.py +1 -1
- mistralai/models/completiontrainingparameters.py +1 -1
- mistralai/models/completiontrainingparametersin.py +1 -1
- mistralai/models/contentchunk.py +3 -0
- mistralai/models/conversationrequest.py +1 -1
- mistralai/models/conversationstreamrequest.py +1 -1
- mistralai/models/conversationusageinfo.py +1 -1
- mistralai/models/deltamessage.py +1 -1
- mistralai/models/documenturlchunk.py +1 -1
- mistralai/models/embeddingrequest.py +1 -1
- mistralai/models/eventout.py +1 -1
- mistralai/models/filechunk.py +23 -0
- mistralai/models/files_api_routes_list_filesop.py +1 -1
- mistralai/models/fileschema.py +1 -1
- mistralai/models/fimcompletionrequest.py +1 -1
- mistralai/models/fimcompletionstreamrequest.py +1 -1
- mistralai/models/ftmodelcard.py +9 -6
- mistralai/models/functioncallentry.py +1 -1
- mistralai/models/functionresultentry.py +1 -1
- mistralai/models/githubrepositoryin.py +1 -1
- mistralai/models/githubrepositoryout.py +1 -1
- mistralai/models/imageurl.py +1 -1
- mistralai/models/inputentries.py +21 -2
- mistralai/models/jobin.py +1 -1
- mistralai/models/jobmetadataout.py +1 -1
- mistralai/models/jobs_api_routes_batch_get_batch_jobsop.py +1 -1
- mistralai/models/jobs_api_routes_fine_tuning_get_fine_tuning_jobsop.py +1 -1
- mistralai/models/jsonschema.py +1 -1
- mistralai/models/legacyjobmetadataout.py +1 -1
- mistralai/models/messageinputentry.py +4 -4
- mistralai/models/messageoutputentry.py +1 -1
- mistralai/models/messageoutputevent.py +1 -1
- mistralai/models/metricout.py +1 -1
- mistralai/models/modelcapabilities.py +3 -0
- mistralai/models/modelconversation.py +1 -1
- mistralai/models/ocrimageobject.py +1 -1
- mistralai/models/ocrpageobject.py +1 -1
- mistralai/models/ocrrequest.py +5 -3
- mistralai/models/ocrresponse.py +1 -1
- mistralai/models/ocrusageinfo.py +1 -1
- mistralai/models/responseformat.py +1 -1
- mistralai/models/retrievefileout.py +1 -1
- mistralai/models/toolexecutionentry.py +1 -1
- mistralai/models/toolfilechunk.py +1 -1
- mistralai/models/toolmessage.py +1 -1
- mistralai/models/toolreferencechunk.py +1 -1
- mistralai/models/updateftmodelin.py +1 -1
- mistralai/models/uploadfileout.py +1 -1
- mistralai/models/usermessage.py +1 -1
- mistralai/models/wandbintegration.py +1 -1
- mistralai/models/wandbintegrationout.py +1 -1
- mistralai/models_.py +14 -2
- mistralai/ocr.py +2 -0
- mistralai/sdk.py +68 -40
- mistralai/sdkconfiguration.py +0 -7
- mistralai/types/basemodel.py +3 -3
- mistralai/utils/__init__.py +131 -45
- mistralai/utils/datetimes.py +23 -0
- mistralai/utils/enums.py +67 -27
- mistralai/utils/forms.py +49 -28
- mistralai/utils/serializers.py +32 -3
- {mistralai-1.8.2.dist-info → mistralai-1.9.1.dist-info}/METADATA +13 -6
- {mistralai-1.8.2.dist-info → mistralai-1.9.1.dist-info}/RECORD +109 -107
- {mistralai-1.8.2.dist-info → mistralai-1.9.1.dist-info}/LICENSE +0 -0
- {mistralai-1.8.2.dist-info → mistralai-1.9.1.dist-info}/WHEEL +0 -0
mistralai/models/__init__.py
CHANGED
|
@@ -1,727 +1,755 @@
|
|
|
1
1
|
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
2
|
|
|
3
|
-
from
|
|
4
|
-
from
|
|
5
|
-
AgentConversation,
|
|
6
|
-
AgentConversationObject,
|
|
7
|
-
AgentConversationTypedDict,
|
|
8
|
-
)
|
|
9
|
-
from .agentcreationrequest import (
|
|
10
|
-
AgentCreationRequest,
|
|
11
|
-
AgentCreationRequestTools,
|
|
12
|
-
AgentCreationRequestToolsTypedDict,
|
|
13
|
-
AgentCreationRequestTypedDict,
|
|
14
|
-
)
|
|
15
|
-
from .agenthandoffdoneevent import (
|
|
16
|
-
AgentHandoffDoneEvent,
|
|
17
|
-
AgentHandoffDoneEventType,
|
|
18
|
-
AgentHandoffDoneEventTypedDict,
|
|
19
|
-
)
|
|
20
|
-
from .agenthandoffentry import (
|
|
21
|
-
AgentHandoffEntry,
|
|
22
|
-
AgentHandoffEntryObject,
|
|
23
|
-
AgentHandoffEntryType,
|
|
24
|
-
AgentHandoffEntryTypedDict,
|
|
25
|
-
)
|
|
26
|
-
from .agenthandoffstartedevent import (
|
|
27
|
-
AgentHandoffStartedEvent,
|
|
28
|
-
AgentHandoffStartedEventType,
|
|
29
|
-
AgentHandoffStartedEventTypedDict,
|
|
30
|
-
)
|
|
31
|
-
from .agents_api_v1_agents_getop import (
|
|
32
|
-
AgentsAPIV1AgentsGetRequest,
|
|
33
|
-
AgentsAPIV1AgentsGetRequestTypedDict,
|
|
34
|
-
)
|
|
35
|
-
from .agents_api_v1_agents_listop import (
|
|
36
|
-
AgentsAPIV1AgentsListRequest,
|
|
37
|
-
AgentsAPIV1AgentsListRequestTypedDict,
|
|
38
|
-
)
|
|
39
|
-
from .agents_api_v1_agents_update_versionop import (
|
|
40
|
-
AgentsAPIV1AgentsUpdateVersionRequest,
|
|
41
|
-
AgentsAPIV1AgentsUpdateVersionRequestTypedDict,
|
|
42
|
-
)
|
|
43
|
-
from .agents_api_v1_agents_updateop import (
|
|
44
|
-
AgentsAPIV1AgentsUpdateRequest,
|
|
45
|
-
AgentsAPIV1AgentsUpdateRequestTypedDict,
|
|
46
|
-
)
|
|
47
|
-
from .agents_api_v1_conversations_append_streamop import (
|
|
48
|
-
AgentsAPIV1ConversationsAppendStreamRequest,
|
|
49
|
-
AgentsAPIV1ConversationsAppendStreamRequestTypedDict,
|
|
50
|
-
)
|
|
51
|
-
from .agents_api_v1_conversations_appendop import (
|
|
52
|
-
AgentsAPIV1ConversationsAppendRequest,
|
|
53
|
-
AgentsAPIV1ConversationsAppendRequestTypedDict,
|
|
54
|
-
)
|
|
55
|
-
from .agents_api_v1_conversations_getop import (
|
|
56
|
-
AgentsAPIV1ConversationsGetRequest,
|
|
57
|
-
AgentsAPIV1ConversationsGetRequestTypedDict,
|
|
58
|
-
AgentsAPIV1ConversationsGetResponseV1ConversationsGet,
|
|
59
|
-
AgentsAPIV1ConversationsGetResponseV1ConversationsGetTypedDict,
|
|
60
|
-
)
|
|
61
|
-
from .agents_api_v1_conversations_historyop import (
|
|
62
|
-
AgentsAPIV1ConversationsHistoryRequest,
|
|
63
|
-
AgentsAPIV1ConversationsHistoryRequestTypedDict,
|
|
64
|
-
)
|
|
65
|
-
from .agents_api_v1_conversations_listop import (
|
|
66
|
-
AgentsAPIV1ConversationsListRequest,
|
|
67
|
-
AgentsAPIV1ConversationsListRequestTypedDict,
|
|
68
|
-
ResponseBody,
|
|
69
|
-
ResponseBodyTypedDict,
|
|
70
|
-
)
|
|
71
|
-
from .agents_api_v1_conversations_messagesop import (
|
|
72
|
-
AgentsAPIV1ConversationsMessagesRequest,
|
|
73
|
-
AgentsAPIV1ConversationsMessagesRequestTypedDict,
|
|
74
|
-
)
|
|
75
|
-
from .agents_api_v1_conversations_restart_streamop import (
|
|
76
|
-
AgentsAPIV1ConversationsRestartStreamRequest,
|
|
77
|
-
AgentsAPIV1ConversationsRestartStreamRequestTypedDict,
|
|
78
|
-
)
|
|
79
|
-
from .agents_api_v1_conversations_restartop import (
|
|
80
|
-
AgentsAPIV1ConversationsRestartRequest,
|
|
81
|
-
AgentsAPIV1ConversationsRestartRequestTypedDict,
|
|
82
|
-
)
|
|
83
|
-
from .agentscompletionrequest import (
|
|
84
|
-
AgentsCompletionRequest,
|
|
85
|
-
AgentsCompletionRequestMessages,
|
|
86
|
-
AgentsCompletionRequestMessagesTypedDict,
|
|
87
|
-
AgentsCompletionRequestStop,
|
|
88
|
-
AgentsCompletionRequestStopTypedDict,
|
|
89
|
-
AgentsCompletionRequestToolChoice,
|
|
90
|
-
AgentsCompletionRequestToolChoiceTypedDict,
|
|
91
|
-
AgentsCompletionRequestTypedDict,
|
|
92
|
-
)
|
|
93
|
-
from .agentscompletionstreamrequest import (
|
|
94
|
-
AgentsCompletionStreamRequest,
|
|
95
|
-
AgentsCompletionStreamRequestMessages,
|
|
96
|
-
AgentsCompletionStreamRequestMessagesTypedDict,
|
|
97
|
-
AgentsCompletionStreamRequestStop,
|
|
98
|
-
AgentsCompletionStreamRequestStopTypedDict,
|
|
99
|
-
AgentsCompletionStreamRequestToolChoice,
|
|
100
|
-
AgentsCompletionStreamRequestToolChoiceTypedDict,
|
|
101
|
-
AgentsCompletionStreamRequestTypedDict,
|
|
102
|
-
)
|
|
103
|
-
from .agentupdaterequest import (
|
|
104
|
-
AgentUpdateRequest,
|
|
105
|
-
AgentUpdateRequestTools,
|
|
106
|
-
AgentUpdateRequestToolsTypedDict,
|
|
107
|
-
AgentUpdateRequestTypedDict,
|
|
108
|
-
)
|
|
109
|
-
from .apiendpoint import APIEndpoint
|
|
110
|
-
from .archiveftmodelout import (
|
|
111
|
-
ArchiveFTModelOut,
|
|
112
|
-
ArchiveFTModelOutObject,
|
|
113
|
-
ArchiveFTModelOutTypedDict,
|
|
114
|
-
)
|
|
115
|
-
from .assistantmessage import (
|
|
116
|
-
AssistantMessage,
|
|
117
|
-
AssistantMessageContent,
|
|
118
|
-
AssistantMessageContentTypedDict,
|
|
119
|
-
AssistantMessageRole,
|
|
120
|
-
AssistantMessageTypedDict,
|
|
121
|
-
)
|
|
122
|
-
from .basemodelcard import BaseModelCard, BaseModelCardTypedDict, Type
|
|
123
|
-
from .batcherror import BatchError, BatchErrorTypedDict
|
|
124
|
-
from .batchjobin import BatchJobIn, BatchJobInTypedDict
|
|
125
|
-
from .batchjobout import BatchJobOut, BatchJobOutObject, BatchJobOutTypedDict
|
|
126
|
-
from .batchjobsout import BatchJobsOut, BatchJobsOutObject, BatchJobsOutTypedDict
|
|
127
|
-
from .batchjobstatus import BatchJobStatus
|
|
128
|
-
from .builtinconnectors import BuiltInConnectors
|
|
129
|
-
from .chatclassificationrequest import (
|
|
130
|
-
ChatClassificationRequest,
|
|
131
|
-
ChatClassificationRequestTypedDict,
|
|
132
|
-
)
|
|
133
|
-
from .chatcompletionchoice import (
|
|
134
|
-
ChatCompletionChoice,
|
|
135
|
-
ChatCompletionChoiceTypedDict,
|
|
136
|
-
FinishReason,
|
|
137
|
-
)
|
|
138
|
-
from .chatcompletionrequest import (
|
|
139
|
-
ChatCompletionRequest,
|
|
140
|
-
ChatCompletionRequestToolChoice,
|
|
141
|
-
ChatCompletionRequestToolChoiceTypedDict,
|
|
142
|
-
ChatCompletionRequestTypedDict,
|
|
143
|
-
Messages,
|
|
144
|
-
MessagesTypedDict,
|
|
145
|
-
Stop,
|
|
146
|
-
StopTypedDict,
|
|
147
|
-
)
|
|
148
|
-
from .chatcompletionresponse import (
|
|
149
|
-
ChatCompletionResponse,
|
|
150
|
-
ChatCompletionResponseTypedDict,
|
|
151
|
-
)
|
|
152
|
-
from .chatcompletionstreamrequest import (
|
|
153
|
-
ChatCompletionStreamRequest,
|
|
154
|
-
ChatCompletionStreamRequestMessages,
|
|
155
|
-
ChatCompletionStreamRequestMessagesTypedDict,
|
|
156
|
-
ChatCompletionStreamRequestStop,
|
|
157
|
-
ChatCompletionStreamRequestStopTypedDict,
|
|
158
|
-
ChatCompletionStreamRequestToolChoice,
|
|
159
|
-
ChatCompletionStreamRequestToolChoiceTypedDict,
|
|
160
|
-
ChatCompletionStreamRequestTypedDict,
|
|
161
|
-
)
|
|
162
|
-
from .chatmoderationrequest import (
|
|
163
|
-
ChatModerationRequest,
|
|
164
|
-
ChatModerationRequestInputs,
|
|
165
|
-
ChatModerationRequestInputsTypedDict,
|
|
166
|
-
ChatModerationRequestTypedDict,
|
|
167
|
-
One,
|
|
168
|
-
OneTypedDict,
|
|
169
|
-
Two,
|
|
170
|
-
TwoTypedDict,
|
|
171
|
-
)
|
|
172
|
-
from .checkpointout import CheckpointOut, CheckpointOutTypedDict
|
|
173
|
-
from .classificationrequest import (
|
|
174
|
-
ClassificationRequest,
|
|
175
|
-
ClassificationRequestInputs,
|
|
176
|
-
ClassificationRequestInputsTypedDict,
|
|
177
|
-
ClassificationRequestTypedDict,
|
|
178
|
-
)
|
|
179
|
-
from .classificationresponse import (
|
|
180
|
-
ClassificationResponse,
|
|
181
|
-
ClassificationResponseTypedDict,
|
|
182
|
-
)
|
|
183
|
-
from .classificationtargetresult import (
|
|
184
|
-
ClassificationTargetResult,
|
|
185
|
-
ClassificationTargetResultTypedDict,
|
|
186
|
-
)
|
|
187
|
-
from .classifierdetailedjobout import (
|
|
188
|
-
ClassifierDetailedJobOut,
|
|
189
|
-
ClassifierDetailedJobOutIntegrations,
|
|
190
|
-
ClassifierDetailedJobOutIntegrationsTypedDict,
|
|
191
|
-
ClassifierDetailedJobOutJobType,
|
|
192
|
-
ClassifierDetailedJobOutObject,
|
|
193
|
-
ClassifierDetailedJobOutStatus,
|
|
194
|
-
ClassifierDetailedJobOutTypedDict,
|
|
195
|
-
)
|
|
196
|
-
from .classifierftmodelout import (
|
|
197
|
-
ClassifierFTModelOut,
|
|
198
|
-
ClassifierFTModelOutModelType,
|
|
199
|
-
ClassifierFTModelOutObject,
|
|
200
|
-
ClassifierFTModelOutTypedDict,
|
|
201
|
-
)
|
|
202
|
-
from .classifierjobout import (
|
|
203
|
-
ClassifierJobOut,
|
|
204
|
-
ClassifierJobOutIntegrations,
|
|
205
|
-
ClassifierJobOutIntegrationsTypedDict,
|
|
206
|
-
ClassifierJobOutJobType,
|
|
207
|
-
ClassifierJobOutObject,
|
|
208
|
-
ClassifierJobOutStatus,
|
|
209
|
-
ClassifierJobOutTypedDict,
|
|
210
|
-
)
|
|
211
|
-
from .classifiertargetin import ClassifierTargetIn, ClassifierTargetInTypedDict
|
|
212
|
-
from .classifiertargetout import ClassifierTargetOut, ClassifierTargetOutTypedDict
|
|
213
|
-
from .classifiertrainingparameters import (
|
|
214
|
-
ClassifierTrainingParameters,
|
|
215
|
-
ClassifierTrainingParametersTypedDict,
|
|
216
|
-
)
|
|
217
|
-
from .classifiertrainingparametersin import (
|
|
218
|
-
ClassifierTrainingParametersIn,
|
|
219
|
-
ClassifierTrainingParametersInTypedDict,
|
|
220
|
-
)
|
|
221
|
-
from .codeinterpretertool import (
|
|
222
|
-
CodeInterpreterTool,
|
|
223
|
-
CodeInterpreterToolType,
|
|
224
|
-
CodeInterpreterToolTypedDict,
|
|
225
|
-
)
|
|
226
|
-
from .completionargs import CompletionArgs, CompletionArgsTypedDict
|
|
227
|
-
from .completionargsstop import CompletionArgsStop, CompletionArgsStopTypedDict
|
|
228
|
-
from .completionchunk import CompletionChunk, CompletionChunkTypedDict
|
|
229
|
-
from .completiondetailedjobout import (
|
|
230
|
-
CompletionDetailedJobOut,
|
|
231
|
-
CompletionDetailedJobOutIntegrations,
|
|
232
|
-
CompletionDetailedJobOutIntegrationsTypedDict,
|
|
233
|
-
CompletionDetailedJobOutJobType,
|
|
234
|
-
CompletionDetailedJobOutObject,
|
|
235
|
-
CompletionDetailedJobOutRepositories,
|
|
236
|
-
CompletionDetailedJobOutRepositoriesTypedDict,
|
|
237
|
-
CompletionDetailedJobOutStatus,
|
|
238
|
-
CompletionDetailedJobOutTypedDict,
|
|
239
|
-
)
|
|
240
|
-
from .completionevent import CompletionEvent, CompletionEventTypedDict
|
|
241
|
-
from .completionftmodelout import (
|
|
242
|
-
CompletionFTModelOut,
|
|
243
|
-
CompletionFTModelOutObject,
|
|
244
|
-
CompletionFTModelOutTypedDict,
|
|
245
|
-
ModelType,
|
|
246
|
-
)
|
|
247
|
-
from .completionjobout import (
|
|
248
|
-
CompletionJobOut,
|
|
249
|
-
CompletionJobOutObject,
|
|
250
|
-
CompletionJobOutTypedDict,
|
|
251
|
-
Integrations,
|
|
252
|
-
IntegrationsTypedDict,
|
|
253
|
-
JobType,
|
|
254
|
-
Repositories,
|
|
255
|
-
RepositoriesTypedDict,
|
|
256
|
-
Status,
|
|
257
|
-
)
|
|
258
|
-
from .completionresponsestreamchoice import (
|
|
259
|
-
CompletionResponseStreamChoice,
|
|
260
|
-
CompletionResponseStreamChoiceFinishReason,
|
|
261
|
-
CompletionResponseStreamChoiceTypedDict,
|
|
262
|
-
)
|
|
263
|
-
from .completiontrainingparameters import (
|
|
264
|
-
CompletionTrainingParameters,
|
|
265
|
-
CompletionTrainingParametersTypedDict,
|
|
266
|
-
)
|
|
267
|
-
from .completiontrainingparametersin import (
|
|
268
|
-
CompletionTrainingParametersIn,
|
|
269
|
-
CompletionTrainingParametersInTypedDict,
|
|
270
|
-
)
|
|
271
|
-
from .contentchunk import ContentChunk, ContentChunkTypedDict
|
|
272
|
-
from .conversationappendrequest import (
|
|
273
|
-
ConversationAppendRequest,
|
|
274
|
-
ConversationAppendRequestHandoffExecution,
|
|
275
|
-
ConversationAppendRequestTypedDict,
|
|
276
|
-
)
|
|
277
|
-
from .conversationappendstreamrequest import (
|
|
278
|
-
ConversationAppendStreamRequest,
|
|
279
|
-
ConversationAppendStreamRequestHandoffExecution,
|
|
280
|
-
ConversationAppendStreamRequestTypedDict,
|
|
281
|
-
)
|
|
282
|
-
from .conversationevents import (
|
|
283
|
-
ConversationEvents,
|
|
284
|
-
ConversationEventsData,
|
|
285
|
-
ConversationEventsDataTypedDict,
|
|
286
|
-
ConversationEventsTypedDict,
|
|
287
|
-
)
|
|
288
|
-
from .conversationhistory import (
|
|
289
|
-
ConversationHistory,
|
|
290
|
-
ConversationHistoryObject,
|
|
291
|
-
ConversationHistoryTypedDict,
|
|
292
|
-
Entries,
|
|
293
|
-
EntriesTypedDict,
|
|
294
|
-
)
|
|
295
|
-
from .conversationinputs import ConversationInputs, ConversationInputsTypedDict
|
|
296
|
-
from .conversationmessages import (
|
|
297
|
-
ConversationMessages,
|
|
298
|
-
ConversationMessagesObject,
|
|
299
|
-
ConversationMessagesTypedDict,
|
|
300
|
-
)
|
|
301
|
-
from .conversationrequest import (
|
|
302
|
-
ConversationRequest,
|
|
303
|
-
ConversationRequestTypedDict,
|
|
304
|
-
HandoffExecution,
|
|
305
|
-
Tools,
|
|
306
|
-
ToolsTypedDict,
|
|
307
|
-
)
|
|
308
|
-
from .conversationresponse import (
|
|
309
|
-
ConversationResponse,
|
|
310
|
-
ConversationResponseObject,
|
|
311
|
-
ConversationResponseTypedDict,
|
|
312
|
-
Outputs,
|
|
313
|
-
OutputsTypedDict,
|
|
314
|
-
)
|
|
315
|
-
from .conversationrestartrequest import (
|
|
316
|
-
ConversationRestartRequest,
|
|
317
|
-
ConversationRestartRequestHandoffExecution,
|
|
318
|
-
ConversationRestartRequestTypedDict,
|
|
319
|
-
)
|
|
320
|
-
from .conversationrestartstreamrequest import (
|
|
321
|
-
ConversationRestartStreamRequest,
|
|
322
|
-
ConversationRestartStreamRequestHandoffExecution,
|
|
323
|
-
ConversationRestartStreamRequestTypedDict,
|
|
324
|
-
)
|
|
325
|
-
from .conversationstreamrequest import (
|
|
326
|
-
ConversationStreamRequest,
|
|
327
|
-
ConversationStreamRequestHandoffExecution,
|
|
328
|
-
ConversationStreamRequestTools,
|
|
329
|
-
ConversationStreamRequestToolsTypedDict,
|
|
330
|
-
ConversationStreamRequestTypedDict,
|
|
331
|
-
)
|
|
332
|
-
from .conversationusageinfo import ConversationUsageInfo, ConversationUsageInfoTypedDict
|
|
333
|
-
from .delete_model_v1_models_model_id_deleteop import (
|
|
334
|
-
DeleteModelV1ModelsModelIDDeleteRequest,
|
|
335
|
-
DeleteModelV1ModelsModelIDDeleteRequestTypedDict,
|
|
336
|
-
)
|
|
337
|
-
from .deletefileout import DeleteFileOut, DeleteFileOutTypedDict
|
|
338
|
-
from .deletemodelout import DeleteModelOut, DeleteModelOutTypedDict
|
|
339
|
-
from .deltamessage import Content, ContentTypedDict, DeltaMessage, DeltaMessageTypedDict
|
|
340
|
-
from .documentlibrarytool import (
|
|
341
|
-
DocumentLibraryTool,
|
|
342
|
-
DocumentLibraryToolType,
|
|
343
|
-
DocumentLibraryToolTypedDict,
|
|
344
|
-
)
|
|
345
|
-
from .documenturlchunk import (
|
|
346
|
-
DocumentURLChunk,
|
|
347
|
-
DocumentURLChunkType,
|
|
348
|
-
DocumentURLChunkTypedDict,
|
|
349
|
-
)
|
|
350
|
-
from .embeddingdtype import EmbeddingDtype
|
|
351
|
-
from .embeddingrequest import (
|
|
352
|
-
EmbeddingRequest,
|
|
353
|
-
EmbeddingRequestInputs,
|
|
354
|
-
EmbeddingRequestInputsTypedDict,
|
|
355
|
-
EmbeddingRequestTypedDict,
|
|
356
|
-
)
|
|
357
|
-
from .embeddingresponse import EmbeddingResponse, EmbeddingResponseTypedDict
|
|
358
|
-
from .embeddingresponsedata import EmbeddingResponseData, EmbeddingResponseDataTypedDict
|
|
359
|
-
from .eventout import EventOut, EventOutTypedDict
|
|
360
|
-
from .filepurpose import FilePurpose
|
|
361
|
-
from .files_api_routes_delete_fileop import (
|
|
362
|
-
FilesAPIRoutesDeleteFileRequest,
|
|
363
|
-
FilesAPIRoutesDeleteFileRequestTypedDict,
|
|
364
|
-
)
|
|
365
|
-
from .files_api_routes_download_fileop import (
|
|
366
|
-
FilesAPIRoutesDownloadFileRequest,
|
|
367
|
-
FilesAPIRoutesDownloadFileRequestTypedDict,
|
|
368
|
-
)
|
|
369
|
-
from .files_api_routes_get_signed_urlop import (
|
|
370
|
-
FilesAPIRoutesGetSignedURLRequest,
|
|
371
|
-
FilesAPIRoutesGetSignedURLRequestTypedDict,
|
|
372
|
-
)
|
|
373
|
-
from .files_api_routes_list_filesop import (
|
|
374
|
-
FilesAPIRoutesListFilesRequest,
|
|
375
|
-
FilesAPIRoutesListFilesRequestTypedDict,
|
|
376
|
-
)
|
|
377
|
-
from .files_api_routes_retrieve_fileop import (
|
|
378
|
-
FilesAPIRoutesRetrieveFileRequest,
|
|
379
|
-
FilesAPIRoutesRetrieveFileRequestTypedDict,
|
|
380
|
-
)
|
|
381
|
-
from .files_api_routes_upload_fileop import (
|
|
382
|
-
File,
|
|
383
|
-
FileTypedDict,
|
|
384
|
-
FilesAPIRoutesUploadFileMultiPartBodyParams,
|
|
385
|
-
FilesAPIRoutesUploadFileMultiPartBodyParamsTypedDict,
|
|
386
|
-
)
|
|
387
|
-
from .fileschema import FileSchema, FileSchemaTypedDict
|
|
388
|
-
from .filesignedurl import FileSignedURL, FileSignedURLTypedDict
|
|
389
|
-
from .fimcompletionrequest import (
|
|
390
|
-
FIMCompletionRequest,
|
|
391
|
-
FIMCompletionRequestStop,
|
|
392
|
-
FIMCompletionRequestStopTypedDict,
|
|
393
|
-
FIMCompletionRequestTypedDict,
|
|
394
|
-
)
|
|
395
|
-
from .fimcompletionresponse import FIMCompletionResponse, FIMCompletionResponseTypedDict
|
|
396
|
-
from .fimcompletionstreamrequest import (
|
|
397
|
-
FIMCompletionStreamRequest,
|
|
398
|
-
FIMCompletionStreamRequestStop,
|
|
399
|
-
FIMCompletionStreamRequestStopTypedDict,
|
|
400
|
-
FIMCompletionStreamRequestTypedDict,
|
|
401
|
-
)
|
|
402
|
-
from .finetuneablemodeltype import FineTuneableModelType
|
|
403
|
-
from .ftclassifierlossfunction import FTClassifierLossFunction
|
|
404
|
-
from .ftmodelcapabilitiesout import (
|
|
405
|
-
FTModelCapabilitiesOut,
|
|
406
|
-
FTModelCapabilitiesOutTypedDict,
|
|
407
|
-
)
|
|
408
|
-
from .ftmodelcard import FTModelCard, FTModelCardType, FTModelCardTypedDict
|
|
409
|
-
from .function import Function, FunctionTypedDict
|
|
410
|
-
from .functioncall import (
|
|
411
|
-
Arguments,
|
|
412
|
-
ArgumentsTypedDict,
|
|
413
|
-
FunctionCall,
|
|
414
|
-
FunctionCallTypedDict,
|
|
415
|
-
)
|
|
416
|
-
from .functioncallentry import (
|
|
417
|
-
FunctionCallEntry,
|
|
418
|
-
FunctionCallEntryObject,
|
|
419
|
-
FunctionCallEntryType,
|
|
420
|
-
FunctionCallEntryTypedDict,
|
|
421
|
-
)
|
|
422
|
-
from .functioncallentryarguments import (
|
|
423
|
-
FunctionCallEntryArguments,
|
|
424
|
-
FunctionCallEntryArgumentsTypedDict,
|
|
425
|
-
)
|
|
426
|
-
from .functioncallevent import (
|
|
427
|
-
FunctionCallEvent,
|
|
428
|
-
FunctionCallEventType,
|
|
429
|
-
FunctionCallEventTypedDict,
|
|
430
|
-
)
|
|
431
|
-
from .functionname import FunctionName, FunctionNameTypedDict
|
|
432
|
-
from .functionresultentry import (
|
|
433
|
-
FunctionResultEntry,
|
|
434
|
-
FunctionResultEntryObject,
|
|
435
|
-
FunctionResultEntryType,
|
|
436
|
-
FunctionResultEntryTypedDict,
|
|
437
|
-
)
|
|
438
|
-
from .functiontool import FunctionTool, FunctionToolType, FunctionToolTypedDict
|
|
439
|
-
from .githubrepositoryin import (
|
|
440
|
-
GithubRepositoryIn,
|
|
441
|
-
GithubRepositoryInType,
|
|
442
|
-
GithubRepositoryInTypedDict,
|
|
443
|
-
)
|
|
444
|
-
from .githubrepositoryout import (
|
|
445
|
-
GithubRepositoryOut,
|
|
446
|
-
GithubRepositoryOutType,
|
|
447
|
-
GithubRepositoryOutTypedDict,
|
|
448
|
-
)
|
|
449
|
-
from .httpvalidationerror import HTTPValidationError, HTTPValidationErrorData
|
|
450
|
-
from .imagegenerationtool import (
|
|
451
|
-
ImageGenerationTool,
|
|
452
|
-
ImageGenerationToolType,
|
|
453
|
-
ImageGenerationToolTypedDict,
|
|
454
|
-
)
|
|
455
|
-
from .imageurl import ImageURL, ImageURLTypedDict
|
|
456
|
-
from .imageurlchunk import (
|
|
457
|
-
ImageURLChunk,
|
|
458
|
-
ImageURLChunkImageURL,
|
|
459
|
-
ImageURLChunkImageURLTypedDict,
|
|
460
|
-
ImageURLChunkType,
|
|
461
|
-
ImageURLChunkTypedDict,
|
|
462
|
-
)
|
|
463
|
-
from .inputentries import InputEntries, InputEntriesTypedDict
|
|
464
|
-
from .inputs import (
|
|
465
|
-
Inputs,
|
|
466
|
-
InputsTypedDict,
|
|
467
|
-
InstructRequestInputs,
|
|
468
|
-
InstructRequestInputsMessages,
|
|
469
|
-
InstructRequestInputsMessagesTypedDict,
|
|
470
|
-
InstructRequestInputsTypedDict,
|
|
471
|
-
)
|
|
472
|
-
from .instructrequest import (
|
|
473
|
-
InstructRequest,
|
|
474
|
-
InstructRequestMessages,
|
|
475
|
-
InstructRequestMessagesTypedDict,
|
|
476
|
-
InstructRequestTypedDict,
|
|
477
|
-
)
|
|
478
|
-
from .jobin import (
|
|
479
|
-
Hyperparameters,
|
|
480
|
-
HyperparametersTypedDict,
|
|
481
|
-
JobIn,
|
|
482
|
-
JobInIntegrations,
|
|
483
|
-
JobInIntegrationsTypedDict,
|
|
484
|
-
JobInRepositories,
|
|
485
|
-
JobInRepositoriesTypedDict,
|
|
486
|
-
JobInTypedDict,
|
|
487
|
-
)
|
|
488
|
-
from .jobmetadataout import JobMetadataOut, JobMetadataOutTypedDict
|
|
489
|
-
from .jobs_api_routes_batch_cancel_batch_jobop import (
|
|
490
|
-
JobsAPIRoutesBatchCancelBatchJobRequest,
|
|
491
|
-
JobsAPIRoutesBatchCancelBatchJobRequestTypedDict,
|
|
492
|
-
)
|
|
493
|
-
from .jobs_api_routes_batch_get_batch_jobop import (
|
|
494
|
-
JobsAPIRoutesBatchGetBatchJobRequest,
|
|
495
|
-
JobsAPIRoutesBatchGetBatchJobRequestTypedDict,
|
|
496
|
-
)
|
|
497
|
-
from .jobs_api_routes_batch_get_batch_jobsop import (
|
|
498
|
-
JobsAPIRoutesBatchGetBatchJobsRequest,
|
|
499
|
-
JobsAPIRoutesBatchGetBatchJobsRequestTypedDict,
|
|
500
|
-
)
|
|
501
|
-
from .jobs_api_routes_fine_tuning_archive_fine_tuned_modelop import (
|
|
502
|
-
JobsAPIRoutesFineTuningArchiveFineTunedModelRequest,
|
|
503
|
-
JobsAPIRoutesFineTuningArchiveFineTunedModelRequestTypedDict,
|
|
504
|
-
)
|
|
505
|
-
from .jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop import (
|
|
506
|
-
JobsAPIRoutesFineTuningCancelFineTuningJobRequest,
|
|
507
|
-
JobsAPIRoutesFineTuningCancelFineTuningJobRequestTypedDict,
|
|
508
|
-
JobsAPIRoutesFineTuningCancelFineTuningJobResponse,
|
|
509
|
-
JobsAPIRoutesFineTuningCancelFineTuningJobResponseTypedDict,
|
|
510
|
-
)
|
|
511
|
-
from .jobs_api_routes_fine_tuning_create_fine_tuning_jobop import (
|
|
512
|
-
JobsAPIRoutesFineTuningCreateFineTuningJobResponse,
|
|
513
|
-
JobsAPIRoutesFineTuningCreateFineTuningJobResponseTypedDict,
|
|
514
|
-
Response1,
|
|
515
|
-
Response1TypedDict,
|
|
516
|
-
)
|
|
517
|
-
from .jobs_api_routes_fine_tuning_get_fine_tuning_jobop import (
|
|
518
|
-
JobsAPIRoutesFineTuningGetFineTuningJobRequest,
|
|
519
|
-
JobsAPIRoutesFineTuningGetFineTuningJobRequestTypedDict,
|
|
520
|
-
JobsAPIRoutesFineTuningGetFineTuningJobResponse,
|
|
521
|
-
JobsAPIRoutesFineTuningGetFineTuningJobResponseTypedDict,
|
|
522
|
-
)
|
|
523
|
-
from .jobs_api_routes_fine_tuning_get_fine_tuning_jobsop import (
|
|
524
|
-
JobsAPIRoutesFineTuningGetFineTuningJobsRequest,
|
|
525
|
-
JobsAPIRoutesFineTuningGetFineTuningJobsRequestTypedDict,
|
|
526
|
-
QueryParamStatus,
|
|
527
|
-
)
|
|
528
|
-
from .jobs_api_routes_fine_tuning_start_fine_tuning_jobop import (
|
|
529
|
-
JobsAPIRoutesFineTuningStartFineTuningJobRequest,
|
|
530
|
-
JobsAPIRoutesFineTuningStartFineTuningJobRequestTypedDict,
|
|
531
|
-
JobsAPIRoutesFineTuningStartFineTuningJobResponse,
|
|
532
|
-
JobsAPIRoutesFineTuningStartFineTuningJobResponseTypedDict,
|
|
533
|
-
)
|
|
534
|
-
from .jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop import (
|
|
535
|
-
JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequest,
|
|
536
|
-
JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequestTypedDict,
|
|
537
|
-
)
|
|
538
|
-
from .jobs_api_routes_fine_tuning_update_fine_tuned_modelop import (
|
|
539
|
-
JobsAPIRoutesFineTuningUpdateFineTunedModelRequest,
|
|
540
|
-
JobsAPIRoutesFineTuningUpdateFineTunedModelRequestTypedDict,
|
|
541
|
-
JobsAPIRoutesFineTuningUpdateFineTunedModelResponse,
|
|
542
|
-
JobsAPIRoutesFineTuningUpdateFineTunedModelResponseTypedDict,
|
|
543
|
-
)
|
|
544
|
-
from .jobsout import (
|
|
545
|
-
JobsOut,
|
|
546
|
-
JobsOutData,
|
|
547
|
-
JobsOutDataTypedDict,
|
|
548
|
-
JobsOutObject,
|
|
549
|
-
JobsOutTypedDict,
|
|
550
|
-
)
|
|
551
|
-
from .jsonschema import JSONSchema, JSONSchemaTypedDict
|
|
552
|
-
from .legacyjobmetadataout import (
|
|
553
|
-
LegacyJobMetadataOut,
|
|
554
|
-
LegacyJobMetadataOutObject,
|
|
555
|
-
LegacyJobMetadataOutTypedDict,
|
|
556
|
-
)
|
|
557
|
-
from .listfilesout import ListFilesOut, ListFilesOutTypedDict
|
|
558
|
-
from .messageentries import MessageEntries, MessageEntriesTypedDict
|
|
559
|
-
from .messageinputcontentchunks import (
|
|
560
|
-
MessageInputContentChunks,
|
|
561
|
-
MessageInputContentChunksTypedDict,
|
|
562
|
-
)
|
|
563
|
-
from .messageinputentry import (
|
|
564
|
-
MessageInputEntry,
|
|
565
|
-
MessageInputEntryContent,
|
|
566
|
-
MessageInputEntryContentTypedDict,
|
|
567
|
-
MessageInputEntryRole,
|
|
568
|
-
MessageInputEntryType,
|
|
569
|
-
MessageInputEntryTypedDict,
|
|
570
|
-
Object,
|
|
571
|
-
)
|
|
572
|
-
from .messageoutputcontentchunks import (
|
|
573
|
-
MessageOutputContentChunks,
|
|
574
|
-
MessageOutputContentChunksTypedDict,
|
|
575
|
-
)
|
|
576
|
-
from .messageoutputentry import (
|
|
577
|
-
MessageOutputEntry,
|
|
578
|
-
MessageOutputEntryContent,
|
|
579
|
-
MessageOutputEntryContentTypedDict,
|
|
580
|
-
MessageOutputEntryObject,
|
|
581
|
-
MessageOutputEntryRole,
|
|
582
|
-
MessageOutputEntryType,
|
|
583
|
-
MessageOutputEntryTypedDict,
|
|
584
|
-
)
|
|
585
|
-
from .messageoutputevent import (
|
|
586
|
-
MessageOutputEvent,
|
|
587
|
-
MessageOutputEventContent,
|
|
588
|
-
MessageOutputEventContentTypedDict,
|
|
589
|
-
MessageOutputEventRole,
|
|
590
|
-
MessageOutputEventType,
|
|
591
|
-
MessageOutputEventTypedDict,
|
|
592
|
-
)
|
|
593
|
-
from .metricout import MetricOut, MetricOutTypedDict
|
|
594
|
-
from .mistralpromptmode import MistralPromptMode
|
|
595
|
-
from .modelcapabilities import ModelCapabilities, ModelCapabilitiesTypedDict
|
|
596
|
-
from .modelconversation import (
|
|
597
|
-
ModelConversation,
|
|
598
|
-
ModelConversationObject,
|
|
599
|
-
ModelConversationTools,
|
|
600
|
-
ModelConversationToolsTypedDict,
|
|
601
|
-
ModelConversationTypedDict,
|
|
602
|
-
)
|
|
603
|
-
from .modellist import Data, DataTypedDict, ModelList, ModelListTypedDict
|
|
604
|
-
from .moderationobject import ModerationObject, ModerationObjectTypedDict
|
|
605
|
-
from .moderationresponse import ModerationResponse, ModerationResponseTypedDict
|
|
606
|
-
from .ocrimageobject import OCRImageObject, OCRImageObjectTypedDict
|
|
607
|
-
from .ocrpagedimensions import OCRPageDimensions, OCRPageDimensionsTypedDict
|
|
608
|
-
from .ocrpageobject import OCRPageObject, OCRPageObjectTypedDict
|
|
609
|
-
from .ocrrequest import Document, DocumentTypedDict, OCRRequest, OCRRequestTypedDict
|
|
610
|
-
from .ocrresponse import OCRResponse, OCRResponseTypedDict
|
|
611
|
-
from .ocrusageinfo import OCRUsageInfo, OCRUsageInfoTypedDict
|
|
612
|
-
from .outputcontentchunks import OutputContentChunks, OutputContentChunksTypedDict
|
|
613
|
-
from .prediction import Prediction, PredictionTypedDict
|
|
614
|
-
from .referencechunk import ReferenceChunk, ReferenceChunkType, ReferenceChunkTypedDict
|
|
615
|
-
from .responsedoneevent import (
|
|
616
|
-
ResponseDoneEvent,
|
|
617
|
-
ResponseDoneEventType,
|
|
618
|
-
ResponseDoneEventTypedDict,
|
|
619
|
-
)
|
|
620
|
-
from .responseerrorevent import (
|
|
621
|
-
ResponseErrorEvent,
|
|
622
|
-
ResponseErrorEventType,
|
|
623
|
-
ResponseErrorEventTypedDict,
|
|
624
|
-
)
|
|
625
|
-
from .responseformat import ResponseFormat, ResponseFormatTypedDict
|
|
626
|
-
from .responseformats import ResponseFormats
|
|
627
|
-
from .responsestartedevent import (
|
|
628
|
-
ResponseStartedEvent,
|
|
629
|
-
ResponseStartedEventType,
|
|
630
|
-
ResponseStartedEventTypedDict,
|
|
631
|
-
)
|
|
632
|
-
from .retrieve_model_v1_models_model_id_getop import (
|
|
633
|
-
RetrieveModelV1ModelsModelIDGetRequest,
|
|
634
|
-
RetrieveModelV1ModelsModelIDGetRequestTypedDict,
|
|
635
|
-
RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGet,
|
|
636
|
-
RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGetTypedDict,
|
|
637
|
-
)
|
|
638
|
-
from .retrievefileout import RetrieveFileOut, RetrieveFileOutTypedDict
|
|
639
|
-
from .sampletype import SampleType
|
|
640
|
-
from .sdkerror import SDKError
|
|
641
|
-
from .security import Security, SecurityTypedDict
|
|
642
|
-
from .source import Source
|
|
643
|
-
from .ssetypes import SSETypes
|
|
644
|
-
from .systemmessage import (
|
|
645
|
-
Role,
|
|
646
|
-
SystemMessage,
|
|
647
|
-
SystemMessageContent,
|
|
648
|
-
SystemMessageContentTypedDict,
|
|
649
|
-
SystemMessageTypedDict,
|
|
650
|
-
)
|
|
651
|
-
from .textchunk import TextChunk, TextChunkType, TextChunkTypedDict
|
|
652
|
-
from .tool import Tool, ToolTypedDict
|
|
653
|
-
from .toolcall import ToolCall, ToolCallTypedDict
|
|
654
|
-
from .toolchoice import ToolChoice, ToolChoiceTypedDict
|
|
655
|
-
from .toolchoiceenum import ToolChoiceEnum
|
|
656
|
-
from .toolexecutiondoneevent import (
|
|
657
|
-
ToolExecutionDoneEvent,
|
|
658
|
-
ToolExecutionDoneEventType,
|
|
659
|
-
ToolExecutionDoneEventTypedDict,
|
|
660
|
-
)
|
|
661
|
-
from .toolexecutionentry import (
|
|
662
|
-
ToolExecutionEntry,
|
|
663
|
-
ToolExecutionEntryObject,
|
|
664
|
-
ToolExecutionEntryType,
|
|
665
|
-
ToolExecutionEntryTypedDict,
|
|
666
|
-
)
|
|
667
|
-
from .toolexecutionstartedevent import (
|
|
668
|
-
ToolExecutionStartedEvent,
|
|
669
|
-
ToolExecutionStartedEventType,
|
|
670
|
-
ToolExecutionStartedEventTypedDict,
|
|
671
|
-
)
|
|
672
|
-
from .toolfilechunk import ToolFileChunk, ToolFileChunkType, ToolFileChunkTypedDict
|
|
673
|
-
from .toolmessage import (
|
|
674
|
-
ToolMessage,
|
|
675
|
-
ToolMessageContent,
|
|
676
|
-
ToolMessageContentTypedDict,
|
|
677
|
-
ToolMessageRole,
|
|
678
|
-
ToolMessageTypedDict,
|
|
679
|
-
)
|
|
680
|
-
from .toolreferencechunk import (
|
|
681
|
-
ToolReferenceChunk,
|
|
682
|
-
ToolReferenceChunkType,
|
|
683
|
-
ToolReferenceChunkTypedDict,
|
|
684
|
-
)
|
|
685
|
-
from .tooltypes import ToolTypes
|
|
686
|
-
from .trainingfile import TrainingFile, TrainingFileTypedDict
|
|
687
|
-
from .unarchiveftmodelout import (
|
|
688
|
-
UnarchiveFTModelOut,
|
|
689
|
-
UnarchiveFTModelOutObject,
|
|
690
|
-
UnarchiveFTModelOutTypedDict,
|
|
691
|
-
)
|
|
692
|
-
from .updateftmodelin import UpdateFTModelIn, UpdateFTModelInTypedDict
|
|
693
|
-
from .uploadfileout import UploadFileOut, UploadFileOutTypedDict
|
|
694
|
-
from .usageinfo import UsageInfo, UsageInfoTypedDict
|
|
695
|
-
from .usermessage import (
|
|
696
|
-
UserMessage,
|
|
697
|
-
UserMessageContent,
|
|
698
|
-
UserMessageContentTypedDict,
|
|
699
|
-
UserMessageRole,
|
|
700
|
-
UserMessageTypedDict,
|
|
701
|
-
)
|
|
702
|
-
from .validationerror import (
|
|
703
|
-
Loc,
|
|
704
|
-
LocTypedDict,
|
|
705
|
-
ValidationError,
|
|
706
|
-
ValidationErrorTypedDict,
|
|
707
|
-
)
|
|
708
|
-
from .wandbintegration import (
|
|
709
|
-
WandbIntegration,
|
|
710
|
-
WandbIntegrationType,
|
|
711
|
-
WandbIntegrationTypedDict,
|
|
712
|
-
)
|
|
713
|
-
from .wandbintegrationout import (
|
|
714
|
-
WandbIntegrationOut,
|
|
715
|
-
WandbIntegrationOutType,
|
|
716
|
-
WandbIntegrationOutTypedDict,
|
|
717
|
-
)
|
|
718
|
-
from .websearchpremiumtool import (
|
|
719
|
-
WebSearchPremiumTool,
|
|
720
|
-
WebSearchPremiumToolType,
|
|
721
|
-
WebSearchPremiumToolTypedDict,
|
|
722
|
-
)
|
|
723
|
-
from .websearchtool import WebSearchTool, WebSearchToolType, WebSearchToolTypedDict
|
|
3
|
+
from typing import TYPE_CHECKING
|
|
4
|
+
from importlib import import_module
|
|
724
5
|
|
|
6
|
+
if TYPE_CHECKING:
|
|
7
|
+
from .agent import (
|
|
8
|
+
Agent,
|
|
9
|
+
AgentObject,
|
|
10
|
+
AgentTools,
|
|
11
|
+
AgentToolsTypedDict,
|
|
12
|
+
AgentTypedDict,
|
|
13
|
+
)
|
|
14
|
+
from .agentconversation import (
|
|
15
|
+
AgentConversation,
|
|
16
|
+
AgentConversationObject,
|
|
17
|
+
AgentConversationTypedDict,
|
|
18
|
+
)
|
|
19
|
+
from .agentcreationrequest import (
|
|
20
|
+
AgentCreationRequest,
|
|
21
|
+
AgentCreationRequestTools,
|
|
22
|
+
AgentCreationRequestToolsTypedDict,
|
|
23
|
+
AgentCreationRequestTypedDict,
|
|
24
|
+
)
|
|
25
|
+
from .agenthandoffdoneevent import (
|
|
26
|
+
AgentHandoffDoneEvent,
|
|
27
|
+
AgentHandoffDoneEventType,
|
|
28
|
+
AgentHandoffDoneEventTypedDict,
|
|
29
|
+
)
|
|
30
|
+
from .agenthandoffentry import (
|
|
31
|
+
AgentHandoffEntry,
|
|
32
|
+
AgentHandoffEntryObject,
|
|
33
|
+
AgentHandoffEntryType,
|
|
34
|
+
AgentHandoffEntryTypedDict,
|
|
35
|
+
)
|
|
36
|
+
from .agenthandoffstartedevent import (
|
|
37
|
+
AgentHandoffStartedEvent,
|
|
38
|
+
AgentHandoffStartedEventType,
|
|
39
|
+
AgentHandoffStartedEventTypedDict,
|
|
40
|
+
)
|
|
41
|
+
from .agents_api_v1_agents_getop import (
|
|
42
|
+
AgentsAPIV1AgentsGetRequest,
|
|
43
|
+
AgentsAPIV1AgentsGetRequestTypedDict,
|
|
44
|
+
)
|
|
45
|
+
from .agents_api_v1_agents_listop import (
|
|
46
|
+
AgentsAPIV1AgentsListRequest,
|
|
47
|
+
AgentsAPIV1AgentsListRequestTypedDict,
|
|
48
|
+
)
|
|
49
|
+
from .agents_api_v1_agents_update_versionop import (
|
|
50
|
+
AgentsAPIV1AgentsUpdateVersionRequest,
|
|
51
|
+
AgentsAPIV1AgentsUpdateVersionRequestTypedDict,
|
|
52
|
+
)
|
|
53
|
+
from .agents_api_v1_agents_updateop import (
|
|
54
|
+
AgentsAPIV1AgentsUpdateRequest,
|
|
55
|
+
AgentsAPIV1AgentsUpdateRequestTypedDict,
|
|
56
|
+
)
|
|
57
|
+
from .agents_api_v1_conversations_append_streamop import (
|
|
58
|
+
AgentsAPIV1ConversationsAppendStreamRequest,
|
|
59
|
+
AgentsAPIV1ConversationsAppendStreamRequestTypedDict,
|
|
60
|
+
)
|
|
61
|
+
from .agents_api_v1_conversations_appendop import (
|
|
62
|
+
AgentsAPIV1ConversationsAppendRequest,
|
|
63
|
+
AgentsAPIV1ConversationsAppendRequestTypedDict,
|
|
64
|
+
)
|
|
65
|
+
from .agents_api_v1_conversations_getop import (
|
|
66
|
+
AgentsAPIV1ConversationsGetRequest,
|
|
67
|
+
AgentsAPIV1ConversationsGetRequestTypedDict,
|
|
68
|
+
AgentsAPIV1ConversationsGetResponseV1ConversationsGet,
|
|
69
|
+
AgentsAPIV1ConversationsGetResponseV1ConversationsGetTypedDict,
|
|
70
|
+
)
|
|
71
|
+
from .agents_api_v1_conversations_historyop import (
|
|
72
|
+
AgentsAPIV1ConversationsHistoryRequest,
|
|
73
|
+
AgentsAPIV1ConversationsHistoryRequestTypedDict,
|
|
74
|
+
)
|
|
75
|
+
from .agents_api_v1_conversations_listop import (
|
|
76
|
+
AgentsAPIV1ConversationsListRequest,
|
|
77
|
+
AgentsAPIV1ConversationsListRequestTypedDict,
|
|
78
|
+
ResponseBody,
|
|
79
|
+
ResponseBodyTypedDict,
|
|
80
|
+
)
|
|
81
|
+
from .agents_api_v1_conversations_messagesop import (
|
|
82
|
+
AgentsAPIV1ConversationsMessagesRequest,
|
|
83
|
+
AgentsAPIV1ConversationsMessagesRequestTypedDict,
|
|
84
|
+
)
|
|
85
|
+
from .agents_api_v1_conversations_restart_streamop import (
|
|
86
|
+
AgentsAPIV1ConversationsRestartStreamRequest,
|
|
87
|
+
AgentsAPIV1ConversationsRestartStreamRequestTypedDict,
|
|
88
|
+
)
|
|
89
|
+
from .agents_api_v1_conversations_restartop import (
|
|
90
|
+
AgentsAPIV1ConversationsRestartRequest,
|
|
91
|
+
AgentsAPIV1ConversationsRestartRequestTypedDict,
|
|
92
|
+
)
|
|
93
|
+
from .agentscompletionrequest import (
|
|
94
|
+
AgentsCompletionRequest,
|
|
95
|
+
AgentsCompletionRequestMessages,
|
|
96
|
+
AgentsCompletionRequestMessagesTypedDict,
|
|
97
|
+
AgentsCompletionRequestStop,
|
|
98
|
+
AgentsCompletionRequestStopTypedDict,
|
|
99
|
+
AgentsCompletionRequestToolChoice,
|
|
100
|
+
AgentsCompletionRequestToolChoiceTypedDict,
|
|
101
|
+
AgentsCompletionRequestTypedDict,
|
|
102
|
+
)
|
|
103
|
+
from .agentscompletionstreamrequest import (
|
|
104
|
+
AgentsCompletionStreamRequest,
|
|
105
|
+
AgentsCompletionStreamRequestMessages,
|
|
106
|
+
AgentsCompletionStreamRequestMessagesTypedDict,
|
|
107
|
+
AgentsCompletionStreamRequestStop,
|
|
108
|
+
AgentsCompletionStreamRequestStopTypedDict,
|
|
109
|
+
AgentsCompletionStreamRequestToolChoice,
|
|
110
|
+
AgentsCompletionStreamRequestToolChoiceTypedDict,
|
|
111
|
+
AgentsCompletionStreamRequestTypedDict,
|
|
112
|
+
)
|
|
113
|
+
from .agentupdaterequest import (
|
|
114
|
+
AgentUpdateRequest,
|
|
115
|
+
AgentUpdateRequestTools,
|
|
116
|
+
AgentUpdateRequestToolsTypedDict,
|
|
117
|
+
AgentUpdateRequestTypedDict,
|
|
118
|
+
)
|
|
119
|
+
from .apiendpoint import APIEndpoint
|
|
120
|
+
from .archiveftmodelout import (
|
|
121
|
+
ArchiveFTModelOut,
|
|
122
|
+
ArchiveFTModelOutObject,
|
|
123
|
+
ArchiveFTModelOutTypedDict,
|
|
124
|
+
)
|
|
125
|
+
from .assistantmessage import (
|
|
126
|
+
AssistantMessage,
|
|
127
|
+
AssistantMessageContent,
|
|
128
|
+
AssistantMessageContentTypedDict,
|
|
129
|
+
AssistantMessageRole,
|
|
130
|
+
AssistantMessageTypedDict,
|
|
131
|
+
)
|
|
132
|
+
from .basemodelcard import BaseModelCard, BaseModelCardTypedDict
|
|
133
|
+
from .batcherror import BatchError, BatchErrorTypedDict
|
|
134
|
+
from .batchjobin import BatchJobIn, BatchJobInTypedDict
|
|
135
|
+
from .batchjobout import BatchJobOut, BatchJobOutObject, BatchJobOutTypedDict
|
|
136
|
+
from .batchjobsout import BatchJobsOut, BatchJobsOutObject, BatchJobsOutTypedDict
|
|
137
|
+
from .batchjobstatus import BatchJobStatus
|
|
138
|
+
from .builtinconnectors import BuiltInConnectors
|
|
139
|
+
from .chatclassificationrequest import (
|
|
140
|
+
ChatClassificationRequest,
|
|
141
|
+
ChatClassificationRequestTypedDict,
|
|
142
|
+
)
|
|
143
|
+
from .chatcompletionchoice import (
|
|
144
|
+
ChatCompletionChoice,
|
|
145
|
+
ChatCompletionChoiceTypedDict,
|
|
146
|
+
FinishReason,
|
|
147
|
+
)
|
|
148
|
+
from .chatcompletionrequest import (
|
|
149
|
+
ChatCompletionRequest,
|
|
150
|
+
ChatCompletionRequestToolChoice,
|
|
151
|
+
ChatCompletionRequestToolChoiceTypedDict,
|
|
152
|
+
ChatCompletionRequestTypedDict,
|
|
153
|
+
Messages,
|
|
154
|
+
MessagesTypedDict,
|
|
155
|
+
Stop,
|
|
156
|
+
StopTypedDict,
|
|
157
|
+
)
|
|
158
|
+
from .chatcompletionresponse import (
|
|
159
|
+
ChatCompletionResponse,
|
|
160
|
+
ChatCompletionResponseTypedDict,
|
|
161
|
+
)
|
|
162
|
+
from .chatcompletionstreamrequest import (
|
|
163
|
+
ChatCompletionStreamRequest,
|
|
164
|
+
ChatCompletionStreamRequestMessages,
|
|
165
|
+
ChatCompletionStreamRequestMessagesTypedDict,
|
|
166
|
+
ChatCompletionStreamRequestStop,
|
|
167
|
+
ChatCompletionStreamRequestStopTypedDict,
|
|
168
|
+
ChatCompletionStreamRequestToolChoice,
|
|
169
|
+
ChatCompletionStreamRequestToolChoiceTypedDict,
|
|
170
|
+
ChatCompletionStreamRequestTypedDict,
|
|
171
|
+
)
|
|
172
|
+
from .chatmoderationrequest import (
|
|
173
|
+
ChatModerationRequest,
|
|
174
|
+
ChatModerationRequestInputs,
|
|
175
|
+
ChatModerationRequestInputsTypedDict,
|
|
176
|
+
ChatModerationRequestTypedDict,
|
|
177
|
+
One,
|
|
178
|
+
OneTypedDict,
|
|
179
|
+
Two,
|
|
180
|
+
TwoTypedDict,
|
|
181
|
+
)
|
|
182
|
+
from .checkpointout import CheckpointOut, CheckpointOutTypedDict
|
|
183
|
+
from .classificationrequest import (
|
|
184
|
+
ClassificationRequest,
|
|
185
|
+
ClassificationRequestInputs,
|
|
186
|
+
ClassificationRequestInputsTypedDict,
|
|
187
|
+
ClassificationRequestTypedDict,
|
|
188
|
+
)
|
|
189
|
+
from .classificationresponse import (
|
|
190
|
+
ClassificationResponse,
|
|
191
|
+
ClassificationResponseTypedDict,
|
|
192
|
+
)
|
|
193
|
+
from .classificationtargetresult import (
|
|
194
|
+
ClassificationTargetResult,
|
|
195
|
+
ClassificationTargetResultTypedDict,
|
|
196
|
+
)
|
|
197
|
+
from .classifierdetailedjobout import (
|
|
198
|
+
ClassifierDetailedJobOut,
|
|
199
|
+
ClassifierDetailedJobOutIntegrations,
|
|
200
|
+
ClassifierDetailedJobOutIntegrationsTypedDict,
|
|
201
|
+
ClassifierDetailedJobOutJobType,
|
|
202
|
+
ClassifierDetailedJobOutObject,
|
|
203
|
+
ClassifierDetailedJobOutStatus,
|
|
204
|
+
ClassifierDetailedJobOutTypedDict,
|
|
205
|
+
)
|
|
206
|
+
from .classifierftmodelout import (
|
|
207
|
+
ClassifierFTModelOut,
|
|
208
|
+
ClassifierFTModelOutModelType,
|
|
209
|
+
ClassifierFTModelOutObject,
|
|
210
|
+
ClassifierFTModelOutTypedDict,
|
|
211
|
+
)
|
|
212
|
+
from .classifierjobout import (
|
|
213
|
+
ClassifierJobOut,
|
|
214
|
+
ClassifierJobOutIntegrations,
|
|
215
|
+
ClassifierJobOutIntegrationsTypedDict,
|
|
216
|
+
ClassifierJobOutJobType,
|
|
217
|
+
ClassifierJobOutObject,
|
|
218
|
+
ClassifierJobOutStatus,
|
|
219
|
+
ClassifierJobOutTypedDict,
|
|
220
|
+
)
|
|
221
|
+
from .classifiertargetin import ClassifierTargetIn, ClassifierTargetInTypedDict
|
|
222
|
+
from .classifiertargetout import ClassifierTargetOut, ClassifierTargetOutTypedDict
|
|
223
|
+
from .classifiertrainingparameters import (
|
|
224
|
+
ClassifierTrainingParameters,
|
|
225
|
+
ClassifierTrainingParametersTypedDict,
|
|
226
|
+
)
|
|
227
|
+
from .classifiertrainingparametersin import (
|
|
228
|
+
ClassifierTrainingParametersIn,
|
|
229
|
+
ClassifierTrainingParametersInTypedDict,
|
|
230
|
+
)
|
|
231
|
+
from .codeinterpretertool import (
|
|
232
|
+
CodeInterpreterTool,
|
|
233
|
+
CodeInterpreterToolType,
|
|
234
|
+
CodeInterpreterToolTypedDict,
|
|
235
|
+
)
|
|
236
|
+
from .completionargs import CompletionArgs, CompletionArgsTypedDict
|
|
237
|
+
from .completionargsstop import CompletionArgsStop, CompletionArgsStopTypedDict
|
|
238
|
+
from .completionchunk import CompletionChunk, CompletionChunkTypedDict
|
|
239
|
+
from .completiondetailedjobout import (
|
|
240
|
+
CompletionDetailedJobOut,
|
|
241
|
+
CompletionDetailedJobOutIntegrations,
|
|
242
|
+
CompletionDetailedJobOutIntegrationsTypedDict,
|
|
243
|
+
CompletionDetailedJobOutJobType,
|
|
244
|
+
CompletionDetailedJobOutObject,
|
|
245
|
+
CompletionDetailedJobOutRepositories,
|
|
246
|
+
CompletionDetailedJobOutRepositoriesTypedDict,
|
|
247
|
+
CompletionDetailedJobOutStatus,
|
|
248
|
+
CompletionDetailedJobOutTypedDict,
|
|
249
|
+
)
|
|
250
|
+
from .completionevent import CompletionEvent, CompletionEventTypedDict
|
|
251
|
+
from .completionftmodelout import (
|
|
252
|
+
CompletionFTModelOut,
|
|
253
|
+
CompletionFTModelOutObject,
|
|
254
|
+
CompletionFTModelOutTypedDict,
|
|
255
|
+
ModelType,
|
|
256
|
+
)
|
|
257
|
+
from .completionjobout import (
|
|
258
|
+
CompletionJobOut,
|
|
259
|
+
CompletionJobOutObject,
|
|
260
|
+
CompletionJobOutTypedDict,
|
|
261
|
+
Integrations,
|
|
262
|
+
IntegrationsTypedDict,
|
|
263
|
+
JobType,
|
|
264
|
+
Repositories,
|
|
265
|
+
RepositoriesTypedDict,
|
|
266
|
+
Status,
|
|
267
|
+
)
|
|
268
|
+
from .completionresponsestreamchoice import (
|
|
269
|
+
CompletionResponseStreamChoice,
|
|
270
|
+
CompletionResponseStreamChoiceFinishReason,
|
|
271
|
+
CompletionResponseStreamChoiceTypedDict,
|
|
272
|
+
)
|
|
273
|
+
from .completiontrainingparameters import (
|
|
274
|
+
CompletionTrainingParameters,
|
|
275
|
+
CompletionTrainingParametersTypedDict,
|
|
276
|
+
)
|
|
277
|
+
from .completiontrainingparametersin import (
|
|
278
|
+
CompletionTrainingParametersIn,
|
|
279
|
+
CompletionTrainingParametersInTypedDict,
|
|
280
|
+
)
|
|
281
|
+
from .contentchunk import ContentChunk, ContentChunkTypedDict
|
|
282
|
+
from .conversationappendrequest import (
|
|
283
|
+
ConversationAppendRequest,
|
|
284
|
+
ConversationAppendRequestHandoffExecution,
|
|
285
|
+
ConversationAppendRequestTypedDict,
|
|
286
|
+
)
|
|
287
|
+
from .conversationappendstreamrequest import (
|
|
288
|
+
ConversationAppendStreamRequest,
|
|
289
|
+
ConversationAppendStreamRequestHandoffExecution,
|
|
290
|
+
ConversationAppendStreamRequestTypedDict,
|
|
291
|
+
)
|
|
292
|
+
from .conversationevents import (
|
|
293
|
+
ConversationEvents,
|
|
294
|
+
ConversationEventsData,
|
|
295
|
+
ConversationEventsDataTypedDict,
|
|
296
|
+
ConversationEventsTypedDict,
|
|
297
|
+
)
|
|
298
|
+
from .conversationhistory import (
|
|
299
|
+
ConversationHistory,
|
|
300
|
+
ConversationHistoryObject,
|
|
301
|
+
ConversationHistoryTypedDict,
|
|
302
|
+
Entries,
|
|
303
|
+
EntriesTypedDict,
|
|
304
|
+
)
|
|
305
|
+
from .conversationinputs import ConversationInputs, ConversationInputsTypedDict
|
|
306
|
+
from .conversationmessages import (
|
|
307
|
+
ConversationMessages,
|
|
308
|
+
ConversationMessagesObject,
|
|
309
|
+
ConversationMessagesTypedDict,
|
|
310
|
+
)
|
|
311
|
+
from .conversationrequest import (
|
|
312
|
+
ConversationRequest,
|
|
313
|
+
ConversationRequestTypedDict,
|
|
314
|
+
HandoffExecution,
|
|
315
|
+
Tools,
|
|
316
|
+
ToolsTypedDict,
|
|
317
|
+
)
|
|
318
|
+
from .conversationresponse import (
|
|
319
|
+
ConversationResponse,
|
|
320
|
+
ConversationResponseObject,
|
|
321
|
+
ConversationResponseTypedDict,
|
|
322
|
+
Outputs,
|
|
323
|
+
OutputsTypedDict,
|
|
324
|
+
)
|
|
325
|
+
from .conversationrestartrequest import (
|
|
326
|
+
ConversationRestartRequest,
|
|
327
|
+
ConversationRestartRequestHandoffExecution,
|
|
328
|
+
ConversationRestartRequestTypedDict,
|
|
329
|
+
)
|
|
330
|
+
from .conversationrestartstreamrequest import (
|
|
331
|
+
ConversationRestartStreamRequest,
|
|
332
|
+
ConversationRestartStreamRequestHandoffExecution,
|
|
333
|
+
ConversationRestartStreamRequestTypedDict,
|
|
334
|
+
)
|
|
335
|
+
from .conversationstreamrequest import (
|
|
336
|
+
ConversationStreamRequest,
|
|
337
|
+
ConversationStreamRequestHandoffExecution,
|
|
338
|
+
ConversationStreamRequestTools,
|
|
339
|
+
ConversationStreamRequestToolsTypedDict,
|
|
340
|
+
ConversationStreamRequestTypedDict,
|
|
341
|
+
)
|
|
342
|
+
from .conversationusageinfo import (
|
|
343
|
+
ConversationUsageInfo,
|
|
344
|
+
ConversationUsageInfoTypedDict,
|
|
345
|
+
)
|
|
346
|
+
from .delete_model_v1_models_model_id_deleteop import (
|
|
347
|
+
DeleteModelV1ModelsModelIDDeleteRequest,
|
|
348
|
+
DeleteModelV1ModelsModelIDDeleteRequestTypedDict,
|
|
349
|
+
)
|
|
350
|
+
from .deletefileout import DeleteFileOut, DeleteFileOutTypedDict
|
|
351
|
+
from .deletemodelout import DeleteModelOut, DeleteModelOutTypedDict
|
|
352
|
+
from .deltamessage import (
|
|
353
|
+
Content,
|
|
354
|
+
ContentTypedDict,
|
|
355
|
+
DeltaMessage,
|
|
356
|
+
DeltaMessageTypedDict,
|
|
357
|
+
)
|
|
358
|
+
from .documentlibrarytool import (
|
|
359
|
+
DocumentLibraryTool,
|
|
360
|
+
DocumentLibraryToolType,
|
|
361
|
+
DocumentLibraryToolTypedDict,
|
|
362
|
+
)
|
|
363
|
+
from .documenturlchunk import (
|
|
364
|
+
DocumentURLChunk,
|
|
365
|
+
DocumentURLChunkType,
|
|
366
|
+
DocumentURLChunkTypedDict,
|
|
367
|
+
)
|
|
368
|
+
from .embeddingdtype import EmbeddingDtype
|
|
369
|
+
from .embeddingrequest import (
|
|
370
|
+
EmbeddingRequest,
|
|
371
|
+
EmbeddingRequestInputs,
|
|
372
|
+
EmbeddingRequestInputsTypedDict,
|
|
373
|
+
EmbeddingRequestTypedDict,
|
|
374
|
+
)
|
|
375
|
+
from .embeddingresponse import EmbeddingResponse, EmbeddingResponseTypedDict
|
|
376
|
+
from .embeddingresponsedata import (
|
|
377
|
+
EmbeddingResponseData,
|
|
378
|
+
EmbeddingResponseDataTypedDict,
|
|
379
|
+
)
|
|
380
|
+
from .eventout import EventOut, EventOutTypedDict
|
|
381
|
+
from .filechunk import FileChunk, FileChunkTypedDict
|
|
382
|
+
from .filepurpose import FilePurpose
|
|
383
|
+
from .files_api_routes_delete_fileop import (
|
|
384
|
+
FilesAPIRoutesDeleteFileRequest,
|
|
385
|
+
FilesAPIRoutesDeleteFileRequestTypedDict,
|
|
386
|
+
)
|
|
387
|
+
from .files_api_routes_download_fileop import (
|
|
388
|
+
FilesAPIRoutesDownloadFileRequest,
|
|
389
|
+
FilesAPIRoutesDownloadFileRequestTypedDict,
|
|
390
|
+
)
|
|
391
|
+
from .files_api_routes_get_signed_urlop import (
|
|
392
|
+
FilesAPIRoutesGetSignedURLRequest,
|
|
393
|
+
FilesAPIRoutesGetSignedURLRequestTypedDict,
|
|
394
|
+
)
|
|
395
|
+
from .files_api_routes_list_filesop import (
|
|
396
|
+
FilesAPIRoutesListFilesRequest,
|
|
397
|
+
FilesAPIRoutesListFilesRequestTypedDict,
|
|
398
|
+
)
|
|
399
|
+
from .files_api_routes_retrieve_fileop import (
|
|
400
|
+
FilesAPIRoutesRetrieveFileRequest,
|
|
401
|
+
FilesAPIRoutesRetrieveFileRequestTypedDict,
|
|
402
|
+
)
|
|
403
|
+
from .files_api_routes_upload_fileop import (
|
|
404
|
+
File,
|
|
405
|
+
FileTypedDict,
|
|
406
|
+
FilesAPIRoutesUploadFileMultiPartBodyParams,
|
|
407
|
+
FilesAPIRoutesUploadFileMultiPartBodyParamsTypedDict,
|
|
408
|
+
)
|
|
409
|
+
from .fileschema import FileSchema, FileSchemaTypedDict
|
|
410
|
+
from .filesignedurl import FileSignedURL, FileSignedURLTypedDict
|
|
411
|
+
from .fimcompletionrequest import (
|
|
412
|
+
FIMCompletionRequest,
|
|
413
|
+
FIMCompletionRequestStop,
|
|
414
|
+
FIMCompletionRequestStopTypedDict,
|
|
415
|
+
FIMCompletionRequestTypedDict,
|
|
416
|
+
)
|
|
417
|
+
from .fimcompletionresponse import (
|
|
418
|
+
FIMCompletionResponse,
|
|
419
|
+
FIMCompletionResponseTypedDict,
|
|
420
|
+
)
|
|
421
|
+
from .fimcompletionstreamrequest import (
|
|
422
|
+
FIMCompletionStreamRequest,
|
|
423
|
+
FIMCompletionStreamRequestStop,
|
|
424
|
+
FIMCompletionStreamRequestStopTypedDict,
|
|
425
|
+
FIMCompletionStreamRequestTypedDict,
|
|
426
|
+
)
|
|
427
|
+
from .finetuneablemodeltype import FineTuneableModelType
|
|
428
|
+
from .ftclassifierlossfunction import FTClassifierLossFunction
|
|
429
|
+
from .ftmodelcapabilitiesout import (
|
|
430
|
+
FTModelCapabilitiesOut,
|
|
431
|
+
FTModelCapabilitiesOutTypedDict,
|
|
432
|
+
)
|
|
433
|
+
from .ftmodelcard import FTModelCard, FTModelCardTypedDict
|
|
434
|
+
from .function import Function, FunctionTypedDict
|
|
435
|
+
from .functioncall import (
|
|
436
|
+
Arguments,
|
|
437
|
+
ArgumentsTypedDict,
|
|
438
|
+
FunctionCall,
|
|
439
|
+
FunctionCallTypedDict,
|
|
440
|
+
)
|
|
441
|
+
from .functioncallentry import (
|
|
442
|
+
FunctionCallEntry,
|
|
443
|
+
FunctionCallEntryObject,
|
|
444
|
+
FunctionCallEntryType,
|
|
445
|
+
FunctionCallEntryTypedDict,
|
|
446
|
+
)
|
|
447
|
+
from .functioncallentryarguments import (
|
|
448
|
+
FunctionCallEntryArguments,
|
|
449
|
+
FunctionCallEntryArgumentsTypedDict,
|
|
450
|
+
)
|
|
451
|
+
from .functioncallevent import (
|
|
452
|
+
FunctionCallEvent,
|
|
453
|
+
FunctionCallEventType,
|
|
454
|
+
FunctionCallEventTypedDict,
|
|
455
|
+
)
|
|
456
|
+
from .functionname import FunctionName, FunctionNameTypedDict
|
|
457
|
+
from .functionresultentry import (
|
|
458
|
+
FunctionResultEntry,
|
|
459
|
+
FunctionResultEntryObject,
|
|
460
|
+
FunctionResultEntryType,
|
|
461
|
+
FunctionResultEntryTypedDict,
|
|
462
|
+
)
|
|
463
|
+
from .functiontool import FunctionTool, FunctionToolType, FunctionToolTypedDict
|
|
464
|
+
from .githubrepositoryin import (
|
|
465
|
+
GithubRepositoryIn,
|
|
466
|
+
GithubRepositoryInType,
|
|
467
|
+
GithubRepositoryInTypedDict,
|
|
468
|
+
)
|
|
469
|
+
from .githubrepositoryout import (
|
|
470
|
+
GithubRepositoryOut,
|
|
471
|
+
GithubRepositoryOutType,
|
|
472
|
+
GithubRepositoryOutTypedDict,
|
|
473
|
+
)
|
|
474
|
+
from .httpvalidationerror import HTTPValidationError, HTTPValidationErrorData
|
|
475
|
+
from .imagegenerationtool import (
|
|
476
|
+
ImageGenerationTool,
|
|
477
|
+
ImageGenerationToolType,
|
|
478
|
+
ImageGenerationToolTypedDict,
|
|
479
|
+
)
|
|
480
|
+
from .imageurl import ImageURL, ImageURLTypedDict
|
|
481
|
+
from .imageurlchunk import (
|
|
482
|
+
ImageURLChunk,
|
|
483
|
+
ImageURLChunkImageURL,
|
|
484
|
+
ImageURLChunkImageURLTypedDict,
|
|
485
|
+
ImageURLChunkType,
|
|
486
|
+
ImageURLChunkTypedDict,
|
|
487
|
+
)
|
|
488
|
+
from .inputentries import InputEntries, InputEntriesTypedDict
|
|
489
|
+
from .inputs import (
|
|
490
|
+
Inputs,
|
|
491
|
+
InputsTypedDict,
|
|
492
|
+
InstructRequestInputs,
|
|
493
|
+
InstructRequestInputsMessages,
|
|
494
|
+
InstructRequestInputsMessagesTypedDict,
|
|
495
|
+
InstructRequestInputsTypedDict,
|
|
496
|
+
)
|
|
497
|
+
from .instructrequest import (
|
|
498
|
+
InstructRequest,
|
|
499
|
+
InstructRequestMessages,
|
|
500
|
+
InstructRequestMessagesTypedDict,
|
|
501
|
+
InstructRequestTypedDict,
|
|
502
|
+
)
|
|
503
|
+
from .jobin import (
|
|
504
|
+
Hyperparameters,
|
|
505
|
+
HyperparametersTypedDict,
|
|
506
|
+
JobIn,
|
|
507
|
+
JobInIntegrations,
|
|
508
|
+
JobInIntegrationsTypedDict,
|
|
509
|
+
JobInRepositories,
|
|
510
|
+
JobInRepositoriesTypedDict,
|
|
511
|
+
JobInTypedDict,
|
|
512
|
+
)
|
|
513
|
+
from .jobmetadataout import JobMetadataOut, JobMetadataOutTypedDict
|
|
514
|
+
from .jobs_api_routes_batch_cancel_batch_jobop import (
|
|
515
|
+
JobsAPIRoutesBatchCancelBatchJobRequest,
|
|
516
|
+
JobsAPIRoutesBatchCancelBatchJobRequestTypedDict,
|
|
517
|
+
)
|
|
518
|
+
from .jobs_api_routes_batch_get_batch_jobop import (
|
|
519
|
+
JobsAPIRoutesBatchGetBatchJobRequest,
|
|
520
|
+
JobsAPIRoutesBatchGetBatchJobRequestTypedDict,
|
|
521
|
+
)
|
|
522
|
+
from .jobs_api_routes_batch_get_batch_jobsop import (
|
|
523
|
+
JobsAPIRoutesBatchGetBatchJobsRequest,
|
|
524
|
+
JobsAPIRoutesBatchGetBatchJobsRequestTypedDict,
|
|
525
|
+
)
|
|
526
|
+
from .jobs_api_routes_fine_tuning_archive_fine_tuned_modelop import (
|
|
527
|
+
JobsAPIRoutesFineTuningArchiveFineTunedModelRequest,
|
|
528
|
+
JobsAPIRoutesFineTuningArchiveFineTunedModelRequestTypedDict,
|
|
529
|
+
)
|
|
530
|
+
from .jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop import (
|
|
531
|
+
JobsAPIRoutesFineTuningCancelFineTuningJobRequest,
|
|
532
|
+
JobsAPIRoutesFineTuningCancelFineTuningJobRequestTypedDict,
|
|
533
|
+
JobsAPIRoutesFineTuningCancelFineTuningJobResponse,
|
|
534
|
+
JobsAPIRoutesFineTuningCancelFineTuningJobResponseTypedDict,
|
|
535
|
+
)
|
|
536
|
+
from .jobs_api_routes_fine_tuning_create_fine_tuning_jobop import (
|
|
537
|
+
JobsAPIRoutesFineTuningCreateFineTuningJobResponse,
|
|
538
|
+
JobsAPIRoutesFineTuningCreateFineTuningJobResponseTypedDict,
|
|
539
|
+
Response1,
|
|
540
|
+
Response1TypedDict,
|
|
541
|
+
)
|
|
542
|
+
from .jobs_api_routes_fine_tuning_get_fine_tuning_jobop import (
|
|
543
|
+
JobsAPIRoutesFineTuningGetFineTuningJobRequest,
|
|
544
|
+
JobsAPIRoutesFineTuningGetFineTuningJobRequestTypedDict,
|
|
545
|
+
JobsAPIRoutesFineTuningGetFineTuningJobResponse,
|
|
546
|
+
JobsAPIRoutesFineTuningGetFineTuningJobResponseTypedDict,
|
|
547
|
+
)
|
|
548
|
+
from .jobs_api_routes_fine_tuning_get_fine_tuning_jobsop import (
|
|
549
|
+
JobsAPIRoutesFineTuningGetFineTuningJobsRequest,
|
|
550
|
+
JobsAPIRoutesFineTuningGetFineTuningJobsRequestTypedDict,
|
|
551
|
+
QueryParamStatus,
|
|
552
|
+
)
|
|
553
|
+
from .jobs_api_routes_fine_tuning_start_fine_tuning_jobop import (
|
|
554
|
+
JobsAPIRoutesFineTuningStartFineTuningJobRequest,
|
|
555
|
+
JobsAPIRoutesFineTuningStartFineTuningJobRequestTypedDict,
|
|
556
|
+
JobsAPIRoutesFineTuningStartFineTuningJobResponse,
|
|
557
|
+
JobsAPIRoutesFineTuningStartFineTuningJobResponseTypedDict,
|
|
558
|
+
)
|
|
559
|
+
from .jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop import (
|
|
560
|
+
JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequest,
|
|
561
|
+
JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequestTypedDict,
|
|
562
|
+
)
|
|
563
|
+
from .jobs_api_routes_fine_tuning_update_fine_tuned_modelop import (
|
|
564
|
+
JobsAPIRoutesFineTuningUpdateFineTunedModelRequest,
|
|
565
|
+
JobsAPIRoutesFineTuningUpdateFineTunedModelRequestTypedDict,
|
|
566
|
+
JobsAPIRoutesFineTuningUpdateFineTunedModelResponse,
|
|
567
|
+
JobsAPIRoutesFineTuningUpdateFineTunedModelResponseTypedDict,
|
|
568
|
+
)
|
|
569
|
+
from .jobsout import (
|
|
570
|
+
JobsOut,
|
|
571
|
+
JobsOutData,
|
|
572
|
+
JobsOutDataTypedDict,
|
|
573
|
+
JobsOutObject,
|
|
574
|
+
JobsOutTypedDict,
|
|
575
|
+
)
|
|
576
|
+
from .jsonschema import JSONSchema, JSONSchemaTypedDict
|
|
577
|
+
from .legacyjobmetadataout import (
|
|
578
|
+
LegacyJobMetadataOut,
|
|
579
|
+
LegacyJobMetadataOutObject,
|
|
580
|
+
LegacyJobMetadataOutTypedDict,
|
|
581
|
+
)
|
|
582
|
+
from .listfilesout import ListFilesOut, ListFilesOutTypedDict
|
|
583
|
+
from .messageentries import MessageEntries, MessageEntriesTypedDict
|
|
584
|
+
from .messageinputcontentchunks import (
|
|
585
|
+
MessageInputContentChunks,
|
|
586
|
+
MessageInputContentChunksTypedDict,
|
|
587
|
+
)
|
|
588
|
+
from .messageinputentry import (
|
|
589
|
+
MessageInputEntry,
|
|
590
|
+
MessageInputEntryContent,
|
|
591
|
+
MessageInputEntryContentTypedDict,
|
|
592
|
+
MessageInputEntryRole,
|
|
593
|
+
MessageInputEntryTypedDict,
|
|
594
|
+
Object,
|
|
595
|
+
Type,
|
|
596
|
+
)
|
|
597
|
+
from .messageoutputcontentchunks import (
|
|
598
|
+
MessageOutputContentChunks,
|
|
599
|
+
MessageOutputContentChunksTypedDict,
|
|
600
|
+
)
|
|
601
|
+
from .messageoutputentry import (
|
|
602
|
+
MessageOutputEntry,
|
|
603
|
+
MessageOutputEntryContent,
|
|
604
|
+
MessageOutputEntryContentTypedDict,
|
|
605
|
+
MessageOutputEntryObject,
|
|
606
|
+
MessageOutputEntryRole,
|
|
607
|
+
MessageOutputEntryType,
|
|
608
|
+
MessageOutputEntryTypedDict,
|
|
609
|
+
)
|
|
610
|
+
from .messageoutputevent import (
|
|
611
|
+
MessageOutputEvent,
|
|
612
|
+
MessageOutputEventContent,
|
|
613
|
+
MessageOutputEventContentTypedDict,
|
|
614
|
+
MessageOutputEventRole,
|
|
615
|
+
MessageOutputEventType,
|
|
616
|
+
MessageOutputEventTypedDict,
|
|
617
|
+
)
|
|
618
|
+
from .metricout import MetricOut, MetricOutTypedDict
|
|
619
|
+
from .mistralpromptmode import MistralPromptMode
|
|
620
|
+
from .modelcapabilities import ModelCapabilities, ModelCapabilitiesTypedDict
|
|
621
|
+
from .modelconversation import (
|
|
622
|
+
ModelConversation,
|
|
623
|
+
ModelConversationObject,
|
|
624
|
+
ModelConversationTools,
|
|
625
|
+
ModelConversationToolsTypedDict,
|
|
626
|
+
ModelConversationTypedDict,
|
|
627
|
+
)
|
|
628
|
+
from .modellist import Data, DataTypedDict, ModelList, ModelListTypedDict
|
|
629
|
+
from .moderationobject import ModerationObject, ModerationObjectTypedDict
|
|
630
|
+
from .moderationresponse import ModerationResponse, ModerationResponseTypedDict
|
|
631
|
+
from .ocrimageobject import OCRImageObject, OCRImageObjectTypedDict
|
|
632
|
+
from .ocrpagedimensions import OCRPageDimensions, OCRPageDimensionsTypedDict
|
|
633
|
+
from .ocrpageobject import OCRPageObject, OCRPageObjectTypedDict
|
|
634
|
+
from .ocrrequest import Document, DocumentTypedDict, OCRRequest, OCRRequestTypedDict
|
|
635
|
+
from .ocrresponse import OCRResponse, OCRResponseTypedDict
|
|
636
|
+
from .ocrusageinfo import OCRUsageInfo, OCRUsageInfoTypedDict
|
|
637
|
+
from .outputcontentchunks import OutputContentChunks, OutputContentChunksTypedDict
|
|
638
|
+
from .prediction import Prediction, PredictionTypedDict
|
|
639
|
+
from .referencechunk import (
|
|
640
|
+
ReferenceChunk,
|
|
641
|
+
ReferenceChunkType,
|
|
642
|
+
ReferenceChunkTypedDict,
|
|
643
|
+
)
|
|
644
|
+
from .responsedoneevent import (
|
|
645
|
+
ResponseDoneEvent,
|
|
646
|
+
ResponseDoneEventType,
|
|
647
|
+
ResponseDoneEventTypedDict,
|
|
648
|
+
)
|
|
649
|
+
from .responseerrorevent import (
|
|
650
|
+
ResponseErrorEvent,
|
|
651
|
+
ResponseErrorEventType,
|
|
652
|
+
ResponseErrorEventTypedDict,
|
|
653
|
+
)
|
|
654
|
+
from .responseformat import ResponseFormat, ResponseFormatTypedDict
|
|
655
|
+
from .responseformats import ResponseFormats
|
|
656
|
+
from .responsestartedevent import (
|
|
657
|
+
ResponseStartedEvent,
|
|
658
|
+
ResponseStartedEventType,
|
|
659
|
+
ResponseStartedEventTypedDict,
|
|
660
|
+
)
|
|
661
|
+
from .retrieve_model_v1_models_model_id_getop import (
|
|
662
|
+
RetrieveModelV1ModelsModelIDGetRequest,
|
|
663
|
+
RetrieveModelV1ModelsModelIDGetRequestTypedDict,
|
|
664
|
+
RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGet,
|
|
665
|
+
RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGetTypedDict,
|
|
666
|
+
)
|
|
667
|
+
from .retrievefileout import RetrieveFileOut, RetrieveFileOutTypedDict
|
|
668
|
+
from .sampletype import SampleType
|
|
669
|
+
from .sdkerror import SDKError
|
|
670
|
+
from .security import Security, SecurityTypedDict
|
|
671
|
+
from .source import Source
|
|
672
|
+
from .ssetypes import SSETypes
|
|
673
|
+
from .systemmessage import (
|
|
674
|
+
Role,
|
|
675
|
+
SystemMessage,
|
|
676
|
+
SystemMessageContent,
|
|
677
|
+
SystemMessageContentTypedDict,
|
|
678
|
+
SystemMessageTypedDict,
|
|
679
|
+
)
|
|
680
|
+
from .textchunk import TextChunk, TextChunkType, TextChunkTypedDict
|
|
681
|
+
from .tool import Tool, ToolTypedDict
|
|
682
|
+
from .toolcall import ToolCall, ToolCallTypedDict
|
|
683
|
+
from .toolchoice import ToolChoice, ToolChoiceTypedDict
|
|
684
|
+
from .toolchoiceenum import ToolChoiceEnum
|
|
685
|
+
from .toolexecutiondoneevent import (
|
|
686
|
+
ToolExecutionDoneEvent,
|
|
687
|
+
ToolExecutionDoneEventType,
|
|
688
|
+
ToolExecutionDoneEventTypedDict,
|
|
689
|
+
)
|
|
690
|
+
from .toolexecutionentry import (
|
|
691
|
+
ToolExecutionEntry,
|
|
692
|
+
ToolExecutionEntryObject,
|
|
693
|
+
ToolExecutionEntryType,
|
|
694
|
+
ToolExecutionEntryTypedDict,
|
|
695
|
+
)
|
|
696
|
+
from .toolexecutionstartedevent import (
|
|
697
|
+
ToolExecutionStartedEvent,
|
|
698
|
+
ToolExecutionStartedEventType,
|
|
699
|
+
ToolExecutionStartedEventTypedDict,
|
|
700
|
+
)
|
|
701
|
+
from .toolfilechunk import ToolFileChunk, ToolFileChunkType, ToolFileChunkTypedDict
|
|
702
|
+
from .toolmessage import (
|
|
703
|
+
ToolMessage,
|
|
704
|
+
ToolMessageContent,
|
|
705
|
+
ToolMessageContentTypedDict,
|
|
706
|
+
ToolMessageRole,
|
|
707
|
+
ToolMessageTypedDict,
|
|
708
|
+
)
|
|
709
|
+
from .toolreferencechunk import (
|
|
710
|
+
ToolReferenceChunk,
|
|
711
|
+
ToolReferenceChunkType,
|
|
712
|
+
ToolReferenceChunkTypedDict,
|
|
713
|
+
)
|
|
714
|
+
from .tooltypes import ToolTypes
|
|
715
|
+
from .trainingfile import TrainingFile, TrainingFileTypedDict
|
|
716
|
+
from .unarchiveftmodelout import (
|
|
717
|
+
UnarchiveFTModelOut,
|
|
718
|
+
UnarchiveFTModelOutObject,
|
|
719
|
+
UnarchiveFTModelOutTypedDict,
|
|
720
|
+
)
|
|
721
|
+
from .updateftmodelin import UpdateFTModelIn, UpdateFTModelInTypedDict
|
|
722
|
+
from .uploadfileout import UploadFileOut, UploadFileOutTypedDict
|
|
723
|
+
from .usageinfo import UsageInfo, UsageInfoTypedDict
|
|
724
|
+
from .usermessage import (
|
|
725
|
+
UserMessage,
|
|
726
|
+
UserMessageContent,
|
|
727
|
+
UserMessageContentTypedDict,
|
|
728
|
+
UserMessageRole,
|
|
729
|
+
UserMessageTypedDict,
|
|
730
|
+
)
|
|
731
|
+
from .validationerror import (
|
|
732
|
+
Loc,
|
|
733
|
+
LocTypedDict,
|
|
734
|
+
ValidationError,
|
|
735
|
+
ValidationErrorTypedDict,
|
|
736
|
+
)
|
|
737
|
+
from .wandbintegration import (
|
|
738
|
+
WandbIntegration,
|
|
739
|
+
WandbIntegrationType,
|
|
740
|
+
WandbIntegrationTypedDict,
|
|
741
|
+
)
|
|
742
|
+
from .wandbintegrationout import (
|
|
743
|
+
WandbIntegrationOut,
|
|
744
|
+
WandbIntegrationOutType,
|
|
745
|
+
WandbIntegrationOutTypedDict,
|
|
746
|
+
)
|
|
747
|
+
from .websearchpremiumtool import (
|
|
748
|
+
WebSearchPremiumTool,
|
|
749
|
+
WebSearchPremiumToolType,
|
|
750
|
+
WebSearchPremiumToolTypedDict,
|
|
751
|
+
)
|
|
752
|
+
from .websearchtool import WebSearchTool, WebSearchToolType, WebSearchToolTypedDict
|
|
725
753
|
|
|
726
754
|
__all__ = [
|
|
727
755
|
"APIEndpoint",
|
|
@@ -993,9 +1021,10 @@ __all__ = [
|
|
|
993
1021
|
"FTModelCapabilitiesOut",
|
|
994
1022
|
"FTModelCapabilitiesOutTypedDict",
|
|
995
1023
|
"FTModelCard",
|
|
996
|
-
"FTModelCardType",
|
|
997
1024
|
"FTModelCardTypedDict",
|
|
998
1025
|
"File",
|
|
1026
|
+
"FileChunk",
|
|
1027
|
+
"FileChunkTypedDict",
|
|
999
1028
|
"FilePurpose",
|
|
1000
1029
|
"FileSchema",
|
|
1001
1030
|
"FileSchemaTypedDict",
|
|
@@ -1134,7 +1163,6 @@ __all__ = [
|
|
|
1134
1163
|
"MessageInputEntryContent",
|
|
1135
1164
|
"MessageInputEntryContentTypedDict",
|
|
1136
1165
|
"MessageInputEntryRole",
|
|
1137
|
-
"MessageInputEntryType",
|
|
1138
1166
|
"MessageInputEntryTypedDict",
|
|
1139
1167
|
"MessageOutputContentChunks",
|
|
1140
1168
|
"MessageOutputContentChunksTypedDict",
|
|
@@ -1301,3 +1329,608 @@ __all__ = [
|
|
|
1301
1329
|
"WebSearchToolType",
|
|
1302
1330
|
"WebSearchToolTypedDict",
|
|
1303
1331
|
]
|
|
1332
|
+
|
|
1333
|
+
_dynamic_imports: dict[str, str] = {
|
|
1334
|
+
"Agent": ".agent",
|
|
1335
|
+
"AgentObject": ".agent",
|
|
1336
|
+
"AgentTools": ".agent",
|
|
1337
|
+
"AgentToolsTypedDict": ".agent",
|
|
1338
|
+
"AgentTypedDict": ".agent",
|
|
1339
|
+
"AgentConversation": ".agentconversation",
|
|
1340
|
+
"AgentConversationObject": ".agentconversation",
|
|
1341
|
+
"AgentConversationTypedDict": ".agentconversation",
|
|
1342
|
+
"AgentCreationRequest": ".agentcreationrequest",
|
|
1343
|
+
"AgentCreationRequestTools": ".agentcreationrequest",
|
|
1344
|
+
"AgentCreationRequestToolsTypedDict": ".agentcreationrequest",
|
|
1345
|
+
"AgentCreationRequestTypedDict": ".agentcreationrequest",
|
|
1346
|
+
"AgentHandoffDoneEvent": ".agenthandoffdoneevent",
|
|
1347
|
+
"AgentHandoffDoneEventType": ".agenthandoffdoneevent",
|
|
1348
|
+
"AgentHandoffDoneEventTypedDict": ".agenthandoffdoneevent",
|
|
1349
|
+
"AgentHandoffEntry": ".agenthandoffentry",
|
|
1350
|
+
"AgentHandoffEntryObject": ".agenthandoffentry",
|
|
1351
|
+
"AgentHandoffEntryType": ".agenthandoffentry",
|
|
1352
|
+
"AgentHandoffEntryTypedDict": ".agenthandoffentry",
|
|
1353
|
+
"AgentHandoffStartedEvent": ".agenthandoffstartedevent",
|
|
1354
|
+
"AgentHandoffStartedEventType": ".agenthandoffstartedevent",
|
|
1355
|
+
"AgentHandoffStartedEventTypedDict": ".agenthandoffstartedevent",
|
|
1356
|
+
"AgentsAPIV1AgentsGetRequest": ".agents_api_v1_agents_getop",
|
|
1357
|
+
"AgentsAPIV1AgentsGetRequestTypedDict": ".agents_api_v1_agents_getop",
|
|
1358
|
+
"AgentsAPIV1AgentsListRequest": ".agents_api_v1_agents_listop",
|
|
1359
|
+
"AgentsAPIV1AgentsListRequestTypedDict": ".agents_api_v1_agents_listop",
|
|
1360
|
+
"AgentsAPIV1AgentsUpdateVersionRequest": ".agents_api_v1_agents_update_versionop",
|
|
1361
|
+
"AgentsAPIV1AgentsUpdateVersionRequestTypedDict": ".agents_api_v1_agents_update_versionop",
|
|
1362
|
+
"AgentsAPIV1AgentsUpdateRequest": ".agents_api_v1_agents_updateop",
|
|
1363
|
+
"AgentsAPIV1AgentsUpdateRequestTypedDict": ".agents_api_v1_agents_updateop",
|
|
1364
|
+
"AgentsAPIV1ConversationsAppendStreamRequest": ".agents_api_v1_conversations_append_streamop",
|
|
1365
|
+
"AgentsAPIV1ConversationsAppendStreamRequestTypedDict": ".agents_api_v1_conversations_append_streamop",
|
|
1366
|
+
"AgentsAPIV1ConversationsAppendRequest": ".agents_api_v1_conversations_appendop",
|
|
1367
|
+
"AgentsAPIV1ConversationsAppendRequestTypedDict": ".agents_api_v1_conversations_appendop",
|
|
1368
|
+
"AgentsAPIV1ConversationsGetRequest": ".agents_api_v1_conversations_getop",
|
|
1369
|
+
"AgentsAPIV1ConversationsGetRequestTypedDict": ".agents_api_v1_conversations_getop",
|
|
1370
|
+
"AgentsAPIV1ConversationsGetResponseV1ConversationsGet": ".agents_api_v1_conversations_getop",
|
|
1371
|
+
"AgentsAPIV1ConversationsGetResponseV1ConversationsGetTypedDict": ".agents_api_v1_conversations_getop",
|
|
1372
|
+
"AgentsAPIV1ConversationsHistoryRequest": ".agents_api_v1_conversations_historyop",
|
|
1373
|
+
"AgentsAPIV1ConversationsHistoryRequestTypedDict": ".agents_api_v1_conversations_historyop",
|
|
1374
|
+
"AgentsAPIV1ConversationsListRequest": ".agents_api_v1_conversations_listop",
|
|
1375
|
+
"AgentsAPIV1ConversationsListRequestTypedDict": ".agents_api_v1_conversations_listop",
|
|
1376
|
+
"ResponseBody": ".agents_api_v1_conversations_listop",
|
|
1377
|
+
"ResponseBodyTypedDict": ".agents_api_v1_conversations_listop",
|
|
1378
|
+
"AgentsAPIV1ConversationsMessagesRequest": ".agents_api_v1_conversations_messagesop",
|
|
1379
|
+
"AgentsAPIV1ConversationsMessagesRequestTypedDict": ".agents_api_v1_conversations_messagesop",
|
|
1380
|
+
"AgentsAPIV1ConversationsRestartStreamRequest": ".agents_api_v1_conversations_restart_streamop",
|
|
1381
|
+
"AgentsAPIV1ConversationsRestartStreamRequestTypedDict": ".agents_api_v1_conversations_restart_streamop",
|
|
1382
|
+
"AgentsAPIV1ConversationsRestartRequest": ".agents_api_v1_conversations_restartop",
|
|
1383
|
+
"AgentsAPIV1ConversationsRestartRequestTypedDict": ".agents_api_v1_conversations_restartop",
|
|
1384
|
+
"AgentsCompletionRequest": ".agentscompletionrequest",
|
|
1385
|
+
"AgentsCompletionRequestMessages": ".agentscompletionrequest",
|
|
1386
|
+
"AgentsCompletionRequestMessagesTypedDict": ".agentscompletionrequest",
|
|
1387
|
+
"AgentsCompletionRequestStop": ".agentscompletionrequest",
|
|
1388
|
+
"AgentsCompletionRequestStopTypedDict": ".agentscompletionrequest",
|
|
1389
|
+
"AgentsCompletionRequestToolChoice": ".agentscompletionrequest",
|
|
1390
|
+
"AgentsCompletionRequestToolChoiceTypedDict": ".agentscompletionrequest",
|
|
1391
|
+
"AgentsCompletionRequestTypedDict": ".agentscompletionrequest",
|
|
1392
|
+
"AgentsCompletionStreamRequest": ".agentscompletionstreamrequest",
|
|
1393
|
+
"AgentsCompletionStreamRequestMessages": ".agentscompletionstreamrequest",
|
|
1394
|
+
"AgentsCompletionStreamRequestMessagesTypedDict": ".agentscompletionstreamrequest",
|
|
1395
|
+
"AgentsCompletionStreamRequestStop": ".agentscompletionstreamrequest",
|
|
1396
|
+
"AgentsCompletionStreamRequestStopTypedDict": ".agentscompletionstreamrequest",
|
|
1397
|
+
"AgentsCompletionStreamRequestToolChoice": ".agentscompletionstreamrequest",
|
|
1398
|
+
"AgentsCompletionStreamRequestToolChoiceTypedDict": ".agentscompletionstreamrequest",
|
|
1399
|
+
"AgentsCompletionStreamRequestTypedDict": ".agentscompletionstreamrequest",
|
|
1400
|
+
"AgentUpdateRequest": ".agentupdaterequest",
|
|
1401
|
+
"AgentUpdateRequestTools": ".agentupdaterequest",
|
|
1402
|
+
"AgentUpdateRequestToolsTypedDict": ".agentupdaterequest",
|
|
1403
|
+
"AgentUpdateRequestTypedDict": ".agentupdaterequest",
|
|
1404
|
+
"APIEndpoint": ".apiendpoint",
|
|
1405
|
+
"ArchiveFTModelOut": ".archiveftmodelout",
|
|
1406
|
+
"ArchiveFTModelOutObject": ".archiveftmodelout",
|
|
1407
|
+
"ArchiveFTModelOutTypedDict": ".archiveftmodelout",
|
|
1408
|
+
"AssistantMessage": ".assistantmessage",
|
|
1409
|
+
"AssistantMessageContent": ".assistantmessage",
|
|
1410
|
+
"AssistantMessageContentTypedDict": ".assistantmessage",
|
|
1411
|
+
"AssistantMessageRole": ".assistantmessage",
|
|
1412
|
+
"AssistantMessageTypedDict": ".assistantmessage",
|
|
1413
|
+
"BaseModelCard": ".basemodelcard",
|
|
1414
|
+
"BaseModelCardTypedDict": ".basemodelcard",
|
|
1415
|
+
"BatchError": ".batcherror",
|
|
1416
|
+
"BatchErrorTypedDict": ".batcherror",
|
|
1417
|
+
"BatchJobIn": ".batchjobin",
|
|
1418
|
+
"BatchJobInTypedDict": ".batchjobin",
|
|
1419
|
+
"BatchJobOut": ".batchjobout",
|
|
1420
|
+
"BatchJobOutObject": ".batchjobout",
|
|
1421
|
+
"BatchJobOutTypedDict": ".batchjobout",
|
|
1422
|
+
"BatchJobsOut": ".batchjobsout",
|
|
1423
|
+
"BatchJobsOutObject": ".batchjobsout",
|
|
1424
|
+
"BatchJobsOutTypedDict": ".batchjobsout",
|
|
1425
|
+
"BatchJobStatus": ".batchjobstatus",
|
|
1426
|
+
"BuiltInConnectors": ".builtinconnectors",
|
|
1427
|
+
"ChatClassificationRequest": ".chatclassificationrequest",
|
|
1428
|
+
"ChatClassificationRequestTypedDict": ".chatclassificationrequest",
|
|
1429
|
+
"ChatCompletionChoice": ".chatcompletionchoice",
|
|
1430
|
+
"ChatCompletionChoiceTypedDict": ".chatcompletionchoice",
|
|
1431
|
+
"FinishReason": ".chatcompletionchoice",
|
|
1432
|
+
"ChatCompletionRequest": ".chatcompletionrequest",
|
|
1433
|
+
"ChatCompletionRequestToolChoice": ".chatcompletionrequest",
|
|
1434
|
+
"ChatCompletionRequestToolChoiceTypedDict": ".chatcompletionrequest",
|
|
1435
|
+
"ChatCompletionRequestTypedDict": ".chatcompletionrequest",
|
|
1436
|
+
"Messages": ".chatcompletionrequest",
|
|
1437
|
+
"MessagesTypedDict": ".chatcompletionrequest",
|
|
1438
|
+
"Stop": ".chatcompletionrequest",
|
|
1439
|
+
"StopTypedDict": ".chatcompletionrequest",
|
|
1440
|
+
"ChatCompletionResponse": ".chatcompletionresponse",
|
|
1441
|
+
"ChatCompletionResponseTypedDict": ".chatcompletionresponse",
|
|
1442
|
+
"ChatCompletionStreamRequest": ".chatcompletionstreamrequest",
|
|
1443
|
+
"ChatCompletionStreamRequestMessages": ".chatcompletionstreamrequest",
|
|
1444
|
+
"ChatCompletionStreamRequestMessagesTypedDict": ".chatcompletionstreamrequest",
|
|
1445
|
+
"ChatCompletionStreamRequestStop": ".chatcompletionstreamrequest",
|
|
1446
|
+
"ChatCompletionStreamRequestStopTypedDict": ".chatcompletionstreamrequest",
|
|
1447
|
+
"ChatCompletionStreamRequestToolChoice": ".chatcompletionstreamrequest",
|
|
1448
|
+
"ChatCompletionStreamRequestToolChoiceTypedDict": ".chatcompletionstreamrequest",
|
|
1449
|
+
"ChatCompletionStreamRequestTypedDict": ".chatcompletionstreamrequest",
|
|
1450
|
+
"ChatModerationRequest": ".chatmoderationrequest",
|
|
1451
|
+
"ChatModerationRequestInputs": ".chatmoderationrequest",
|
|
1452
|
+
"ChatModerationRequestInputsTypedDict": ".chatmoderationrequest",
|
|
1453
|
+
"ChatModerationRequestTypedDict": ".chatmoderationrequest",
|
|
1454
|
+
"One": ".chatmoderationrequest",
|
|
1455
|
+
"OneTypedDict": ".chatmoderationrequest",
|
|
1456
|
+
"Two": ".chatmoderationrequest",
|
|
1457
|
+
"TwoTypedDict": ".chatmoderationrequest",
|
|
1458
|
+
"CheckpointOut": ".checkpointout",
|
|
1459
|
+
"CheckpointOutTypedDict": ".checkpointout",
|
|
1460
|
+
"ClassificationRequest": ".classificationrequest",
|
|
1461
|
+
"ClassificationRequestInputs": ".classificationrequest",
|
|
1462
|
+
"ClassificationRequestInputsTypedDict": ".classificationrequest",
|
|
1463
|
+
"ClassificationRequestTypedDict": ".classificationrequest",
|
|
1464
|
+
"ClassificationResponse": ".classificationresponse",
|
|
1465
|
+
"ClassificationResponseTypedDict": ".classificationresponse",
|
|
1466
|
+
"ClassificationTargetResult": ".classificationtargetresult",
|
|
1467
|
+
"ClassificationTargetResultTypedDict": ".classificationtargetresult",
|
|
1468
|
+
"ClassifierDetailedJobOut": ".classifierdetailedjobout",
|
|
1469
|
+
"ClassifierDetailedJobOutIntegrations": ".classifierdetailedjobout",
|
|
1470
|
+
"ClassifierDetailedJobOutIntegrationsTypedDict": ".classifierdetailedjobout",
|
|
1471
|
+
"ClassifierDetailedJobOutJobType": ".classifierdetailedjobout",
|
|
1472
|
+
"ClassifierDetailedJobOutObject": ".classifierdetailedjobout",
|
|
1473
|
+
"ClassifierDetailedJobOutStatus": ".classifierdetailedjobout",
|
|
1474
|
+
"ClassifierDetailedJobOutTypedDict": ".classifierdetailedjobout",
|
|
1475
|
+
"ClassifierFTModelOut": ".classifierftmodelout",
|
|
1476
|
+
"ClassifierFTModelOutModelType": ".classifierftmodelout",
|
|
1477
|
+
"ClassifierFTModelOutObject": ".classifierftmodelout",
|
|
1478
|
+
"ClassifierFTModelOutTypedDict": ".classifierftmodelout",
|
|
1479
|
+
"ClassifierJobOut": ".classifierjobout",
|
|
1480
|
+
"ClassifierJobOutIntegrations": ".classifierjobout",
|
|
1481
|
+
"ClassifierJobOutIntegrationsTypedDict": ".classifierjobout",
|
|
1482
|
+
"ClassifierJobOutJobType": ".classifierjobout",
|
|
1483
|
+
"ClassifierJobOutObject": ".classifierjobout",
|
|
1484
|
+
"ClassifierJobOutStatus": ".classifierjobout",
|
|
1485
|
+
"ClassifierJobOutTypedDict": ".classifierjobout",
|
|
1486
|
+
"ClassifierTargetIn": ".classifiertargetin",
|
|
1487
|
+
"ClassifierTargetInTypedDict": ".classifiertargetin",
|
|
1488
|
+
"ClassifierTargetOut": ".classifiertargetout",
|
|
1489
|
+
"ClassifierTargetOutTypedDict": ".classifiertargetout",
|
|
1490
|
+
"ClassifierTrainingParameters": ".classifiertrainingparameters",
|
|
1491
|
+
"ClassifierTrainingParametersTypedDict": ".classifiertrainingparameters",
|
|
1492
|
+
"ClassifierTrainingParametersIn": ".classifiertrainingparametersin",
|
|
1493
|
+
"ClassifierTrainingParametersInTypedDict": ".classifiertrainingparametersin",
|
|
1494
|
+
"CodeInterpreterTool": ".codeinterpretertool",
|
|
1495
|
+
"CodeInterpreterToolType": ".codeinterpretertool",
|
|
1496
|
+
"CodeInterpreterToolTypedDict": ".codeinterpretertool",
|
|
1497
|
+
"CompletionArgs": ".completionargs",
|
|
1498
|
+
"CompletionArgsTypedDict": ".completionargs",
|
|
1499
|
+
"CompletionArgsStop": ".completionargsstop",
|
|
1500
|
+
"CompletionArgsStopTypedDict": ".completionargsstop",
|
|
1501
|
+
"CompletionChunk": ".completionchunk",
|
|
1502
|
+
"CompletionChunkTypedDict": ".completionchunk",
|
|
1503
|
+
"CompletionDetailedJobOut": ".completiondetailedjobout",
|
|
1504
|
+
"CompletionDetailedJobOutIntegrations": ".completiondetailedjobout",
|
|
1505
|
+
"CompletionDetailedJobOutIntegrationsTypedDict": ".completiondetailedjobout",
|
|
1506
|
+
"CompletionDetailedJobOutJobType": ".completiondetailedjobout",
|
|
1507
|
+
"CompletionDetailedJobOutObject": ".completiondetailedjobout",
|
|
1508
|
+
"CompletionDetailedJobOutRepositories": ".completiondetailedjobout",
|
|
1509
|
+
"CompletionDetailedJobOutRepositoriesTypedDict": ".completiondetailedjobout",
|
|
1510
|
+
"CompletionDetailedJobOutStatus": ".completiondetailedjobout",
|
|
1511
|
+
"CompletionDetailedJobOutTypedDict": ".completiondetailedjobout",
|
|
1512
|
+
"CompletionEvent": ".completionevent",
|
|
1513
|
+
"CompletionEventTypedDict": ".completionevent",
|
|
1514
|
+
"CompletionFTModelOut": ".completionftmodelout",
|
|
1515
|
+
"CompletionFTModelOutObject": ".completionftmodelout",
|
|
1516
|
+
"CompletionFTModelOutTypedDict": ".completionftmodelout",
|
|
1517
|
+
"ModelType": ".completionftmodelout",
|
|
1518
|
+
"CompletionJobOut": ".completionjobout",
|
|
1519
|
+
"CompletionJobOutObject": ".completionjobout",
|
|
1520
|
+
"CompletionJobOutTypedDict": ".completionjobout",
|
|
1521
|
+
"Integrations": ".completionjobout",
|
|
1522
|
+
"IntegrationsTypedDict": ".completionjobout",
|
|
1523
|
+
"JobType": ".completionjobout",
|
|
1524
|
+
"Repositories": ".completionjobout",
|
|
1525
|
+
"RepositoriesTypedDict": ".completionjobout",
|
|
1526
|
+
"Status": ".completionjobout",
|
|
1527
|
+
"CompletionResponseStreamChoice": ".completionresponsestreamchoice",
|
|
1528
|
+
"CompletionResponseStreamChoiceFinishReason": ".completionresponsestreamchoice",
|
|
1529
|
+
"CompletionResponseStreamChoiceTypedDict": ".completionresponsestreamchoice",
|
|
1530
|
+
"CompletionTrainingParameters": ".completiontrainingparameters",
|
|
1531
|
+
"CompletionTrainingParametersTypedDict": ".completiontrainingparameters",
|
|
1532
|
+
"CompletionTrainingParametersIn": ".completiontrainingparametersin",
|
|
1533
|
+
"CompletionTrainingParametersInTypedDict": ".completiontrainingparametersin",
|
|
1534
|
+
"ContentChunk": ".contentchunk",
|
|
1535
|
+
"ContentChunkTypedDict": ".contentchunk",
|
|
1536
|
+
"ConversationAppendRequest": ".conversationappendrequest",
|
|
1537
|
+
"ConversationAppendRequestHandoffExecution": ".conversationappendrequest",
|
|
1538
|
+
"ConversationAppendRequestTypedDict": ".conversationappendrequest",
|
|
1539
|
+
"ConversationAppendStreamRequest": ".conversationappendstreamrequest",
|
|
1540
|
+
"ConversationAppendStreamRequestHandoffExecution": ".conversationappendstreamrequest",
|
|
1541
|
+
"ConversationAppendStreamRequestTypedDict": ".conversationappendstreamrequest",
|
|
1542
|
+
"ConversationEvents": ".conversationevents",
|
|
1543
|
+
"ConversationEventsData": ".conversationevents",
|
|
1544
|
+
"ConversationEventsDataTypedDict": ".conversationevents",
|
|
1545
|
+
"ConversationEventsTypedDict": ".conversationevents",
|
|
1546
|
+
"ConversationHistory": ".conversationhistory",
|
|
1547
|
+
"ConversationHistoryObject": ".conversationhistory",
|
|
1548
|
+
"ConversationHistoryTypedDict": ".conversationhistory",
|
|
1549
|
+
"Entries": ".conversationhistory",
|
|
1550
|
+
"EntriesTypedDict": ".conversationhistory",
|
|
1551
|
+
"ConversationInputs": ".conversationinputs",
|
|
1552
|
+
"ConversationInputsTypedDict": ".conversationinputs",
|
|
1553
|
+
"ConversationMessages": ".conversationmessages",
|
|
1554
|
+
"ConversationMessagesObject": ".conversationmessages",
|
|
1555
|
+
"ConversationMessagesTypedDict": ".conversationmessages",
|
|
1556
|
+
"ConversationRequest": ".conversationrequest",
|
|
1557
|
+
"ConversationRequestTypedDict": ".conversationrequest",
|
|
1558
|
+
"HandoffExecution": ".conversationrequest",
|
|
1559
|
+
"Tools": ".conversationrequest",
|
|
1560
|
+
"ToolsTypedDict": ".conversationrequest",
|
|
1561
|
+
"ConversationResponse": ".conversationresponse",
|
|
1562
|
+
"ConversationResponseObject": ".conversationresponse",
|
|
1563
|
+
"ConversationResponseTypedDict": ".conversationresponse",
|
|
1564
|
+
"Outputs": ".conversationresponse",
|
|
1565
|
+
"OutputsTypedDict": ".conversationresponse",
|
|
1566
|
+
"ConversationRestartRequest": ".conversationrestartrequest",
|
|
1567
|
+
"ConversationRestartRequestHandoffExecution": ".conversationrestartrequest",
|
|
1568
|
+
"ConversationRestartRequestTypedDict": ".conversationrestartrequest",
|
|
1569
|
+
"ConversationRestartStreamRequest": ".conversationrestartstreamrequest",
|
|
1570
|
+
"ConversationRestartStreamRequestHandoffExecution": ".conversationrestartstreamrequest",
|
|
1571
|
+
"ConversationRestartStreamRequestTypedDict": ".conversationrestartstreamrequest",
|
|
1572
|
+
"ConversationStreamRequest": ".conversationstreamrequest",
|
|
1573
|
+
"ConversationStreamRequestHandoffExecution": ".conversationstreamrequest",
|
|
1574
|
+
"ConversationStreamRequestTools": ".conversationstreamrequest",
|
|
1575
|
+
"ConversationStreamRequestToolsTypedDict": ".conversationstreamrequest",
|
|
1576
|
+
"ConversationStreamRequestTypedDict": ".conversationstreamrequest",
|
|
1577
|
+
"ConversationUsageInfo": ".conversationusageinfo",
|
|
1578
|
+
"ConversationUsageInfoTypedDict": ".conversationusageinfo",
|
|
1579
|
+
"DeleteModelV1ModelsModelIDDeleteRequest": ".delete_model_v1_models_model_id_deleteop",
|
|
1580
|
+
"DeleteModelV1ModelsModelIDDeleteRequestTypedDict": ".delete_model_v1_models_model_id_deleteop",
|
|
1581
|
+
"DeleteFileOut": ".deletefileout",
|
|
1582
|
+
"DeleteFileOutTypedDict": ".deletefileout",
|
|
1583
|
+
"DeleteModelOut": ".deletemodelout",
|
|
1584
|
+
"DeleteModelOutTypedDict": ".deletemodelout",
|
|
1585
|
+
"Content": ".deltamessage",
|
|
1586
|
+
"ContentTypedDict": ".deltamessage",
|
|
1587
|
+
"DeltaMessage": ".deltamessage",
|
|
1588
|
+
"DeltaMessageTypedDict": ".deltamessage",
|
|
1589
|
+
"DocumentLibraryTool": ".documentlibrarytool",
|
|
1590
|
+
"DocumentLibraryToolType": ".documentlibrarytool",
|
|
1591
|
+
"DocumentLibraryToolTypedDict": ".documentlibrarytool",
|
|
1592
|
+
"DocumentURLChunk": ".documenturlchunk",
|
|
1593
|
+
"DocumentURLChunkType": ".documenturlchunk",
|
|
1594
|
+
"DocumentURLChunkTypedDict": ".documenturlchunk",
|
|
1595
|
+
"EmbeddingDtype": ".embeddingdtype",
|
|
1596
|
+
"EmbeddingRequest": ".embeddingrequest",
|
|
1597
|
+
"EmbeddingRequestInputs": ".embeddingrequest",
|
|
1598
|
+
"EmbeddingRequestInputsTypedDict": ".embeddingrequest",
|
|
1599
|
+
"EmbeddingRequestTypedDict": ".embeddingrequest",
|
|
1600
|
+
"EmbeddingResponse": ".embeddingresponse",
|
|
1601
|
+
"EmbeddingResponseTypedDict": ".embeddingresponse",
|
|
1602
|
+
"EmbeddingResponseData": ".embeddingresponsedata",
|
|
1603
|
+
"EmbeddingResponseDataTypedDict": ".embeddingresponsedata",
|
|
1604
|
+
"EventOut": ".eventout",
|
|
1605
|
+
"EventOutTypedDict": ".eventout",
|
|
1606
|
+
"FileChunk": ".filechunk",
|
|
1607
|
+
"FileChunkTypedDict": ".filechunk",
|
|
1608
|
+
"FilePurpose": ".filepurpose",
|
|
1609
|
+
"FilesAPIRoutesDeleteFileRequest": ".files_api_routes_delete_fileop",
|
|
1610
|
+
"FilesAPIRoutesDeleteFileRequestTypedDict": ".files_api_routes_delete_fileop",
|
|
1611
|
+
"FilesAPIRoutesDownloadFileRequest": ".files_api_routes_download_fileop",
|
|
1612
|
+
"FilesAPIRoutesDownloadFileRequestTypedDict": ".files_api_routes_download_fileop",
|
|
1613
|
+
"FilesAPIRoutesGetSignedURLRequest": ".files_api_routes_get_signed_urlop",
|
|
1614
|
+
"FilesAPIRoutesGetSignedURLRequestTypedDict": ".files_api_routes_get_signed_urlop",
|
|
1615
|
+
"FilesAPIRoutesListFilesRequest": ".files_api_routes_list_filesop",
|
|
1616
|
+
"FilesAPIRoutesListFilesRequestTypedDict": ".files_api_routes_list_filesop",
|
|
1617
|
+
"FilesAPIRoutesRetrieveFileRequest": ".files_api_routes_retrieve_fileop",
|
|
1618
|
+
"FilesAPIRoutesRetrieveFileRequestTypedDict": ".files_api_routes_retrieve_fileop",
|
|
1619
|
+
"File": ".files_api_routes_upload_fileop",
|
|
1620
|
+
"FileTypedDict": ".files_api_routes_upload_fileop",
|
|
1621
|
+
"FilesAPIRoutesUploadFileMultiPartBodyParams": ".files_api_routes_upload_fileop",
|
|
1622
|
+
"FilesAPIRoutesUploadFileMultiPartBodyParamsTypedDict": ".files_api_routes_upload_fileop",
|
|
1623
|
+
"FileSchema": ".fileschema",
|
|
1624
|
+
"FileSchemaTypedDict": ".fileschema",
|
|
1625
|
+
"FileSignedURL": ".filesignedurl",
|
|
1626
|
+
"FileSignedURLTypedDict": ".filesignedurl",
|
|
1627
|
+
"FIMCompletionRequest": ".fimcompletionrequest",
|
|
1628
|
+
"FIMCompletionRequestStop": ".fimcompletionrequest",
|
|
1629
|
+
"FIMCompletionRequestStopTypedDict": ".fimcompletionrequest",
|
|
1630
|
+
"FIMCompletionRequestTypedDict": ".fimcompletionrequest",
|
|
1631
|
+
"FIMCompletionResponse": ".fimcompletionresponse",
|
|
1632
|
+
"FIMCompletionResponseTypedDict": ".fimcompletionresponse",
|
|
1633
|
+
"FIMCompletionStreamRequest": ".fimcompletionstreamrequest",
|
|
1634
|
+
"FIMCompletionStreamRequestStop": ".fimcompletionstreamrequest",
|
|
1635
|
+
"FIMCompletionStreamRequestStopTypedDict": ".fimcompletionstreamrequest",
|
|
1636
|
+
"FIMCompletionStreamRequestTypedDict": ".fimcompletionstreamrequest",
|
|
1637
|
+
"FineTuneableModelType": ".finetuneablemodeltype",
|
|
1638
|
+
"FTClassifierLossFunction": ".ftclassifierlossfunction",
|
|
1639
|
+
"FTModelCapabilitiesOut": ".ftmodelcapabilitiesout",
|
|
1640
|
+
"FTModelCapabilitiesOutTypedDict": ".ftmodelcapabilitiesout",
|
|
1641
|
+
"FTModelCard": ".ftmodelcard",
|
|
1642
|
+
"FTModelCardTypedDict": ".ftmodelcard",
|
|
1643
|
+
"Function": ".function",
|
|
1644
|
+
"FunctionTypedDict": ".function",
|
|
1645
|
+
"Arguments": ".functioncall",
|
|
1646
|
+
"ArgumentsTypedDict": ".functioncall",
|
|
1647
|
+
"FunctionCall": ".functioncall",
|
|
1648
|
+
"FunctionCallTypedDict": ".functioncall",
|
|
1649
|
+
"FunctionCallEntry": ".functioncallentry",
|
|
1650
|
+
"FunctionCallEntryObject": ".functioncallentry",
|
|
1651
|
+
"FunctionCallEntryType": ".functioncallentry",
|
|
1652
|
+
"FunctionCallEntryTypedDict": ".functioncallentry",
|
|
1653
|
+
"FunctionCallEntryArguments": ".functioncallentryarguments",
|
|
1654
|
+
"FunctionCallEntryArgumentsTypedDict": ".functioncallentryarguments",
|
|
1655
|
+
"FunctionCallEvent": ".functioncallevent",
|
|
1656
|
+
"FunctionCallEventType": ".functioncallevent",
|
|
1657
|
+
"FunctionCallEventTypedDict": ".functioncallevent",
|
|
1658
|
+
"FunctionName": ".functionname",
|
|
1659
|
+
"FunctionNameTypedDict": ".functionname",
|
|
1660
|
+
"FunctionResultEntry": ".functionresultentry",
|
|
1661
|
+
"FunctionResultEntryObject": ".functionresultentry",
|
|
1662
|
+
"FunctionResultEntryType": ".functionresultentry",
|
|
1663
|
+
"FunctionResultEntryTypedDict": ".functionresultentry",
|
|
1664
|
+
"FunctionTool": ".functiontool",
|
|
1665
|
+
"FunctionToolType": ".functiontool",
|
|
1666
|
+
"FunctionToolTypedDict": ".functiontool",
|
|
1667
|
+
"GithubRepositoryIn": ".githubrepositoryin",
|
|
1668
|
+
"GithubRepositoryInType": ".githubrepositoryin",
|
|
1669
|
+
"GithubRepositoryInTypedDict": ".githubrepositoryin",
|
|
1670
|
+
"GithubRepositoryOut": ".githubrepositoryout",
|
|
1671
|
+
"GithubRepositoryOutType": ".githubrepositoryout",
|
|
1672
|
+
"GithubRepositoryOutTypedDict": ".githubrepositoryout",
|
|
1673
|
+
"HTTPValidationError": ".httpvalidationerror",
|
|
1674
|
+
"HTTPValidationErrorData": ".httpvalidationerror",
|
|
1675
|
+
"ImageGenerationTool": ".imagegenerationtool",
|
|
1676
|
+
"ImageGenerationToolType": ".imagegenerationtool",
|
|
1677
|
+
"ImageGenerationToolTypedDict": ".imagegenerationtool",
|
|
1678
|
+
"ImageURL": ".imageurl",
|
|
1679
|
+
"ImageURLTypedDict": ".imageurl",
|
|
1680
|
+
"ImageURLChunk": ".imageurlchunk",
|
|
1681
|
+
"ImageURLChunkImageURL": ".imageurlchunk",
|
|
1682
|
+
"ImageURLChunkImageURLTypedDict": ".imageurlchunk",
|
|
1683
|
+
"ImageURLChunkType": ".imageurlchunk",
|
|
1684
|
+
"ImageURLChunkTypedDict": ".imageurlchunk",
|
|
1685
|
+
"InputEntries": ".inputentries",
|
|
1686
|
+
"InputEntriesTypedDict": ".inputentries",
|
|
1687
|
+
"Inputs": ".inputs",
|
|
1688
|
+
"InputsTypedDict": ".inputs",
|
|
1689
|
+
"InstructRequestInputs": ".inputs",
|
|
1690
|
+
"InstructRequestInputsMessages": ".inputs",
|
|
1691
|
+
"InstructRequestInputsMessagesTypedDict": ".inputs",
|
|
1692
|
+
"InstructRequestInputsTypedDict": ".inputs",
|
|
1693
|
+
"InstructRequest": ".instructrequest",
|
|
1694
|
+
"InstructRequestMessages": ".instructrequest",
|
|
1695
|
+
"InstructRequestMessagesTypedDict": ".instructrequest",
|
|
1696
|
+
"InstructRequestTypedDict": ".instructrequest",
|
|
1697
|
+
"Hyperparameters": ".jobin",
|
|
1698
|
+
"HyperparametersTypedDict": ".jobin",
|
|
1699
|
+
"JobIn": ".jobin",
|
|
1700
|
+
"JobInIntegrations": ".jobin",
|
|
1701
|
+
"JobInIntegrationsTypedDict": ".jobin",
|
|
1702
|
+
"JobInRepositories": ".jobin",
|
|
1703
|
+
"JobInRepositoriesTypedDict": ".jobin",
|
|
1704
|
+
"JobInTypedDict": ".jobin",
|
|
1705
|
+
"JobMetadataOut": ".jobmetadataout",
|
|
1706
|
+
"JobMetadataOutTypedDict": ".jobmetadataout",
|
|
1707
|
+
"JobsAPIRoutesBatchCancelBatchJobRequest": ".jobs_api_routes_batch_cancel_batch_jobop",
|
|
1708
|
+
"JobsAPIRoutesBatchCancelBatchJobRequestTypedDict": ".jobs_api_routes_batch_cancel_batch_jobop",
|
|
1709
|
+
"JobsAPIRoutesBatchGetBatchJobRequest": ".jobs_api_routes_batch_get_batch_jobop",
|
|
1710
|
+
"JobsAPIRoutesBatchGetBatchJobRequestTypedDict": ".jobs_api_routes_batch_get_batch_jobop",
|
|
1711
|
+
"JobsAPIRoutesBatchGetBatchJobsRequest": ".jobs_api_routes_batch_get_batch_jobsop",
|
|
1712
|
+
"JobsAPIRoutesBatchGetBatchJobsRequestTypedDict": ".jobs_api_routes_batch_get_batch_jobsop",
|
|
1713
|
+
"JobsAPIRoutesFineTuningArchiveFineTunedModelRequest": ".jobs_api_routes_fine_tuning_archive_fine_tuned_modelop",
|
|
1714
|
+
"JobsAPIRoutesFineTuningArchiveFineTunedModelRequestTypedDict": ".jobs_api_routes_fine_tuning_archive_fine_tuned_modelop",
|
|
1715
|
+
"JobsAPIRoutesFineTuningCancelFineTuningJobRequest": ".jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop",
|
|
1716
|
+
"JobsAPIRoutesFineTuningCancelFineTuningJobRequestTypedDict": ".jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop",
|
|
1717
|
+
"JobsAPIRoutesFineTuningCancelFineTuningJobResponse": ".jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop",
|
|
1718
|
+
"JobsAPIRoutesFineTuningCancelFineTuningJobResponseTypedDict": ".jobs_api_routes_fine_tuning_cancel_fine_tuning_jobop",
|
|
1719
|
+
"JobsAPIRoutesFineTuningCreateFineTuningJobResponse": ".jobs_api_routes_fine_tuning_create_fine_tuning_jobop",
|
|
1720
|
+
"JobsAPIRoutesFineTuningCreateFineTuningJobResponseTypedDict": ".jobs_api_routes_fine_tuning_create_fine_tuning_jobop",
|
|
1721
|
+
"Response1": ".jobs_api_routes_fine_tuning_create_fine_tuning_jobop",
|
|
1722
|
+
"Response1TypedDict": ".jobs_api_routes_fine_tuning_create_fine_tuning_jobop",
|
|
1723
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobRequest": ".jobs_api_routes_fine_tuning_get_fine_tuning_jobop",
|
|
1724
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobRequestTypedDict": ".jobs_api_routes_fine_tuning_get_fine_tuning_jobop",
|
|
1725
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobResponse": ".jobs_api_routes_fine_tuning_get_fine_tuning_jobop",
|
|
1726
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobResponseTypedDict": ".jobs_api_routes_fine_tuning_get_fine_tuning_jobop",
|
|
1727
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobsRequest": ".jobs_api_routes_fine_tuning_get_fine_tuning_jobsop",
|
|
1728
|
+
"JobsAPIRoutesFineTuningGetFineTuningJobsRequestTypedDict": ".jobs_api_routes_fine_tuning_get_fine_tuning_jobsop",
|
|
1729
|
+
"QueryParamStatus": ".jobs_api_routes_fine_tuning_get_fine_tuning_jobsop",
|
|
1730
|
+
"JobsAPIRoutesFineTuningStartFineTuningJobRequest": ".jobs_api_routes_fine_tuning_start_fine_tuning_jobop",
|
|
1731
|
+
"JobsAPIRoutesFineTuningStartFineTuningJobRequestTypedDict": ".jobs_api_routes_fine_tuning_start_fine_tuning_jobop",
|
|
1732
|
+
"JobsAPIRoutesFineTuningStartFineTuningJobResponse": ".jobs_api_routes_fine_tuning_start_fine_tuning_jobop",
|
|
1733
|
+
"JobsAPIRoutesFineTuningStartFineTuningJobResponseTypedDict": ".jobs_api_routes_fine_tuning_start_fine_tuning_jobop",
|
|
1734
|
+
"JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequest": ".jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop",
|
|
1735
|
+
"JobsAPIRoutesFineTuningUnarchiveFineTunedModelRequestTypedDict": ".jobs_api_routes_fine_tuning_unarchive_fine_tuned_modelop",
|
|
1736
|
+
"JobsAPIRoutesFineTuningUpdateFineTunedModelRequest": ".jobs_api_routes_fine_tuning_update_fine_tuned_modelop",
|
|
1737
|
+
"JobsAPIRoutesFineTuningUpdateFineTunedModelRequestTypedDict": ".jobs_api_routes_fine_tuning_update_fine_tuned_modelop",
|
|
1738
|
+
"JobsAPIRoutesFineTuningUpdateFineTunedModelResponse": ".jobs_api_routes_fine_tuning_update_fine_tuned_modelop",
|
|
1739
|
+
"JobsAPIRoutesFineTuningUpdateFineTunedModelResponseTypedDict": ".jobs_api_routes_fine_tuning_update_fine_tuned_modelop",
|
|
1740
|
+
"JobsOut": ".jobsout",
|
|
1741
|
+
"JobsOutData": ".jobsout",
|
|
1742
|
+
"JobsOutDataTypedDict": ".jobsout",
|
|
1743
|
+
"JobsOutObject": ".jobsout",
|
|
1744
|
+
"JobsOutTypedDict": ".jobsout",
|
|
1745
|
+
"JSONSchema": ".jsonschema",
|
|
1746
|
+
"JSONSchemaTypedDict": ".jsonschema",
|
|
1747
|
+
"LegacyJobMetadataOut": ".legacyjobmetadataout",
|
|
1748
|
+
"LegacyJobMetadataOutObject": ".legacyjobmetadataout",
|
|
1749
|
+
"LegacyJobMetadataOutTypedDict": ".legacyjobmetadataout",
|
|
1750
|
+
"ListFilesOut": ".listfilesout",
|
|
1751
|
+
"ListFilesOutTypedDict": ".listfilesout",
|
|
1752
|
+
"MessageEntries": ".messageentries",
|
|
1753
|
+
"MessageEntriesTypedDict": ".messageentries",
|
|
1754
|
+
"MessageInputContentChunks": ".messageinputcontentchunks",
|
|
1755
|
+
"MessageInputContentChunksTypedDict": ".messageinputcontentchunks",
|
|
1756
|
+
"MessageInputEntry": ".messageinputentry",
|
|
1757
|
+
"MessageInputEntryContent": ".messageinputentry",
|
|
1758
|
+
"MessageInputEntryContentTypedDict": ".messageinputentry",
|
|
1759
|
+
"MessageInputEntryRole": ".messageinputentry",
|
|
1760
|
+
"MessageInputEntryTypedDict": ".messageinputentry",
|
|
1761
|
+
"Object": ".messageinputentry",
|
|
1762
|
+
"Type": ".messageinputentry",
|
|
1763
|
+
"MessageOutputContentChunks": ".messageoutputcontentchunks",
|
|
1764
|
+
"MessageOutputContentChunksTypedDict": ".messageoutputcontentchunks",
|
|
1765
|
+
"MessageOutputEntry": ".messageoutputentry",
|
|
1766
|
+
"MessageOutputEntryContent": ".messageoutputentry",
|
|
1767
|
+
"MessageOutputEntryContentTypedDict": ".messageoutputentry",
|
|
1768
|
+
"MessageOutputEntryObject": ".messageoutputentry",
|
|
1769
|
+
"MessageOutputEntryRole": ".messageoutputentry",
|
|
1770
|
+
"MessageOutputEntryType": ".messageoutputentry",
|
|
1771
|
+
"MessageOutputEntryTypedDict": ".messageoutputentry",
|
|
1772
|
+
"MessageOutputEvent": ".messageoutputevent",
|
|
1773
|
+
"MessageOutputEventContent": ".messageoutputevent",
|
|
1774
|
+
"MessageOutputEventContentTypedDict": ".messageoutputevent",
|
|
1775
|
+
"MessageOutputEventRole": ".messageoutputevent",
|
|
1776
|
+
"MessageOutputEventType": ".messageoutputevent",
|
|
1777
|
+
"MessageOutputEventTypedDict": ".messageoutputevent",
|
|
1778
|
+
"MetricOut": ".metricout",
|
|
1779
|
+
"MetricOutTypedDict": ".metricout",
|
|
1780
|
+
"MistralPromptMode": ".mistralpromptmode",
|
|
1781
|
+
"ModelCapabilities": ".modelcapabilities",
|
|
1782
|
+
"ModelCapabilitiesTypedDict": ".modelcapabilities",
|
|
1783
|
+
"ModelConversation": ".modelconversation",
|
|
1784
|
+
"ModelConversationObject": ".modelconversation",
|
|
1785
|
+
"ModelConversationTools": ".modelconversation",
|
|
1786
|
+
"ModelConversationToolsTypedDict": ".modelconversation",
|
|
1787
|
+
"ModelConversationTypedDict": ".modelconversation",
|
|
1788
|
+
"Data": ".modellist",
|
|
1789
|
+
"DataTypedDict": ".modellist",
|
|
1790
|
+
"ModelList": ".modellist",
|
|
1791
|
+
"ModelListTypedDict": ".modellist",
|
|
1792
|
+
"ModerationObject": ".moderationobject",
|
|
1793
|
+
"ModerationObjectTypedDict": ".moderationobject",
|
|
1794
|
+
"ModerationResponse": ".moderationresponse",
|
|
1795
|
+
"ModerationResponseTypedDict": ".moderationresponse",
|
|
1796
|
+
"OCRImageObject": ".ocrimageobject",
|
|
1797
|
+
"OCRImageObjectTypedDict": ".ocrimageobject",
|
|
1798
|
+
"OCRPageDimensions": ".ocrpagedimensions",
|
|
1799
|
+
"OCRPageDimensionsTypedDict": ".ocrpagedimensions",
|
|
1800
|
+
"OCRPageObject": ".ocrpageobject",
|
|
1801
|
+
"OCRPageObjectTypedDict": ".ocrpageobject",
|
|
1802
|
+
"Document": ".ocrrequest",
|
|
1803
|
+
"DocumentTypedDict": ".ocrrequest",
|
|
1804
|
+
"OCRRequest": ".ocrrequest",
|
|
1805
|
+
"OCRRequestTypedDict": ".ocrrequest",
|
|
1806
|
+
"OCRResponse": ".ocrresponse",
|
|
1807
|
+
"OCRResponseTypedDict": ".ocrresponse",
|
|
1808
|
+
"OCRUsageInfo": ".ocrusageinfo",
|
|
1809
|
+
"OCRUsageInfoTypedDict": ".ocrusageinfo",
|
|
1810
|
+
"OutputContentChunks": ".outputcontentchunks",
|
|
1811
|
+
"OutputContentChunksTypedDict": ".outputcontentchunks",
|
|
1812
|
+
"Prediction": ".prediction",
|
|
1813
|
+
"PredictionTypedDict": ".prediction",
|
|
1814
|
+
"ReferenceChunk": ".referencechunk",
|
|
1815
|
+
"ReferenceChunkType": ".referencechunk",
|
|
1816
|
+
"ReferenceChunkTypedDict": ".referencechunk",
|
|
1817
|
+
"ResponseDoneEvent": ".responsedoneevent",
|
|
1818
|
+
"ResponseDoneEventType": ".responsedoneevent",
|
|
1819
|
+
"ResponseDoneEventTypedDict": ".responsedoneevent",
|
|
1820
|
+
"ResponseErrorEvent": ".responseerrorevent",
|
|
1821
|
+
"ResponseErrorEventType": ".responseerrorevent",
|
|
1822
|
+
"ResponseErrorEventTypedDict": ".responseerrorevent",
|
|
1823
|
+
"ResponseFormat": ".responseformat",
|
|
1824
|
+
"ResponseFormatTypedDict": ".responseformat",
|
|
1825
|
+
"ResponseFormats": ".responseformats",
|
|
1826
|
+
"ResponseStartedEvent": ".responsestartedevent",
|
|
1827
|
+
"ResponseStartedEventType": ".responsestartedevent",
|
|
1828
|
+
"ResponseStartedEventTypedDict": ".responsestartedevent",
|
|
1829
|
+
"RetrieveModelV1ModelsModelIDGetRequest": ".retrieve_model_v1_models_model_id_getop",
|
|
1830
|
+
"RetrieveModelV1ModelsModelIDGetRequestTypedDict": ".retrieve_model_v1_models_model_id_getop",
|
|
1831
|
+
"RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGet": ".retrieve_model_v1_models_model_id_getop",
|
|
1832
|
+
"RetrieveModelV1ModelsModelIDGetResponseRetrieveModelV1ModelsModelIDGetTypedDict": ".retrieve_model_v1_models_model_id_getop",
|
|
1833
|
+
"RetrieveFileOut": ".retrievefileout",
|
|
1834
|
+
"RetrieveFileOutTypedDict": ".retrievefileout",
|
|
1835
|
+
"SampleType": ".sampletype",
|
|
1836
|
+
"SDKError": ".sdkerror",
|
|
1837
|
+
"Security": ".security",
|
|
1838
|
+
"SecurityTypedDict": ".security",
|
|
1839
|
+
"Source": ".source",
|
|
1840
|
+
"SSETypes": ".ssetypes",
|
|
1841
|
+
"Role": ".systemmessage",
|
|
1842
|
+
"SystemMessage": ".systemmessage",
|
|
1843
|
+
"SystemMessageContent": ".systemmessage",
|
|
1844
|
+
"SystemMessageContentTypedDict": ".systemmessage",
|
|
1845
|
+
"SystemMessageTypedDict": ".systemmessage",
|
|
1846
|
+
"TextChunk": ".textchunk",
|
|
1847
|
+
"TextChunkType": ".textchunk",
|
|
1848
|
+
"TextChunkTypedDict": ".textchunk",
|
|
1849
|
+
"Tool": ".tool",
|
|
1850
|
+
"ToolTypedDict": ".tool",
|
|
1851
|
+
"ToolCall": ".toolcall",
|
|
1852
|
+
"ToolCallTypedDict": ".toolcall",
|
|
1853
|
+
"ToolChoice": ".toolchoice",
|
|
1854
|
+
"ToolChoiceTypedDict": ".toolchoice",
|
|
1855
|
+
"ToolChoiceEnum": ".toolchoiceenum",
|
|
1856
|
+
"ToolExecutionDoneEvent": ".toolexecutiondoneevent",
|
|
1857
|
+
"ToolExecutionDoneEventType": ".toolexecutiondoneevent",
|
|
1858
|
+
"ToolExecutionDoneEventTypedDict": ".toolexecutiondoneevent",
|
|
1859
|
+
"ToolExecutionEntry": ".toolexecutionentry",
|
|
1860
|
+
"ToolExecutionEntryObject": ".toolexecutionentry",
|
|
1861
|
+
"ToolExecutionEntryType": ".toolexecutionentry",
|
|
1862
|
+
"ToolExecutionEntryTypedDict": ".toolexecutionentry",
|
|
1863
|
+
"ToolExecutionStartedEvent": ".toolexecutionstartedevent",
|
|
1864
|
+
"ToolExecutionStartedEventType": ".toolexecutionstartedevent",
|
|
1865
|
+
"ToolExecutionStartedEventTypedDict": ".toolexecutionstartedevent",
|
|
1866
|
+
"ToolFileChunk": ".toolfilechunk",
|
|
1867
|
+
"ToolFileChunkType": ".toolfilechunk",
|
|
1868
|
+
"ToolFileChunkTypedDict": ".toolfilechunk",
|
|
1869
|
+
"ToolMessage": ".toolmessage",
|
|
1870
|
+
"ToolMessageContent": ".toolmessage",
|
|
1871
|
+
"ToolMessageContentTypedDict": ".toolmessage",
|
|
1872
|
+
"ToolMessageRole": ".toolmessage",
|
|
1873
|
+
"ToolMessageTypedDict": ".toolmessage",
|
|
1874
|
+
"ToolReferenceChunk": ".toolreferencechunk",
|
|
1875
|
+
"ToolReferenceChunkType": ".toolreferencechunk",
|
|
1876
|
+
"ToolReferenceChunkTypedDict": ".toolreferencechunk",
|
|
1877
|
+
"ToolTypes": ".tooltypes",
|
|
1878
|
+
"TrainingFile": ".trainingfile",
|
|
1879
|
+
"TrainingFileTypedDict": ".trainingfile",
|
|
1880
|
+
"UnarchiveFTModelOut": ".unarchiveftmodelout",
|
|
1881
|
+
"UnarchiveFTModelOutObject": ".unarchiveftmodelout",
|
|
1882
|
+
"UnarchiveFTModelOutTypedDict": ".unarchiveftmodelout",
|
|
1883
|
+
"UpdateFTModelIn": ".updateftmodelin",
|
|
1884
|
+
"UpdateFTModelInTypedDict": ".updateftmodelin",
|
|
1885
|
+
"UploadFileOut": ".uploadfileout",
|
|
1886
|
+
"UploadFileOutTypedDict": ".uploadfileout",
|
|
1887
|
+
"UsageInfo": ".usageinfo",
|
|
1888
|
+
"UsageInfoTypedDict": ".usageinfo",
|
|
1889
|
+
"UserMessage": ".usermessage",
|
|
1890
|
+
"UserMessageContent": ".usermessage",
|
|
1891
|
+
"UserMessageContentTypedDict": ".usermessage",
|
|
1892
|
+
"UserMessageRole": ".usermessage",
|
|
1893
|
+
"UserMessageTypedDict": ".usermessage",
|
|
1894
|
+
"Loc": ".validationerror",
|
|
1895
|
+
"LocTypedDict": ".validationerror",
|
|
1896
|
+
"ValidationError": ".validationerror",
|
|
1897
|
+
"ValidationErrorTypedDict": ".validationerror",
|
|
1898
|
+
"WandbIntegration": ".wandbintegration",
|
|
1899
|
+
"WandbIntegrationType": ".wandbintegration",
|
|
1900
|
+
"WandbIntegrationTypedDict": ".wandbintegration",
|
|
1901
|
+
"WandbIntegrationOut": ".wandbintegrationout",
|
|
1902
|
+
"WandbIntegrationOutType": ".wandbintegrationout",
|
|
1903
|
+
"WandbIntegrationOutTypedDict": ".wandbintegrationout",
|
|
1904
|
+
"WebSearchPremiumTool": ".websearchpremiumtool",
|
|
1905
|
+
"WebSearchPremiumToolType": ".websearchpremiumtool",
|
|
1906
|
+
"WebSearchPremiumToolTypedDict": ".websearchpremiumtool",
|
|
1907
|
+
"WebSearchTool": ".websearchtool",
|
|
1908
|
+
"WebSearchToolType": ".websearchtool",
|
|
1909
|
+
"WebSearchToolTypedDict": ".websearchtool",
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
|
|
1913
|
+
def __getattr__(attr_name: str) -> object:
|
|
1914
|
+
module_name = _dynamic_imports.get(attr_name)
|
|
1915
|
+
if module_name is None:
|
|
1916
|
+
raise AttributeError(
|
|
1917
|
+
f"No {attr_name} found in _dynamic_imports for module name -> {__name__} "
|
|
1918
|
+
)
|
|
1919
|
+
|
|
1920
|
+
try:
|
|
1921
|
+
module = import_module(module_name, __package__)
|
|
1922
|
+
result = getattr(module, attr_name)
|
|
1923
|
+
return result
|
|
1924
|
+
except ImportError as e:
|
|
1925
|
+
raise ImportError(
|
|
1926
|
+
f"Failed to import {attr_name} from {module_name}: {e}"
|
|
1927
|
+
) from e
|
|
1928
|
+
except AttributeError as e:
|
|
1929
|
+
raise AttributeError(
|
|
1930
|
+
f"Failed to get {attr_name} from {module_name}: {e}"
|
|
1931
|
+
) from e
|
|
1932
|
+
|
|
1933
|
+
|
|
1934
|
+
def __dir__():
|
|
1935
|
+
lazy_attrs = list(_dynamic_imports.keys())
|
|
1936
|
+
return sorted(lazy_attrs)
|