openrouter 0.1.2__py3-none-any.whl → 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- openrouter/_version.py +2 -2
- openrouter/analytics.py +28 -2
- openrouter/api_keys.py +210 -14
- openrouter/chat.py +192 -200
- openrouter/components/__init__.py +229 -285
- openrouter/components/_schema10.py +39 -0
- openrouter/components/_schema14.py +11 -0
- openrouter/components/_schema17.py +154 -0
- openrouter/components/{_schema3.py → _schema19.py} +28 -22
- openrouter/components/{_schema0.py → _schema5.py} +7 -5
- openrouter/components/assistantmessage.py +32 -1
- openrouter/components/chatgenerationparams.py +57 -343
- openrouter/components/chatmessagecontentitemimage.py +4 -4
- openrouter/components/chatresponsechoice.py +1 -6
- openrouter/components/chatstreamingmessagechunk.py +3 -3
- openrouter/components/developermessage.py +41 -0
- openrouter/components/message.py +6 -39
- openrouter/components/model.py +7 -1
- openrouter/components/openresponsesrequest.py +31 -39
- openrouter/components/outputmodality.py +1 -0
- openrouter/components/providername.py +2 -0
- openrouter/components/providerpreferences.py +2 -10
- openrouter/components/publicendpoint.py +8 -24
- openrouter/components/publicpricing.py +3 -24
- openrouter/credits.py +86 -14
- openrouter/embeddings.py +92 -20
- openrouter/endpoints.py +62 -2
- openrouter/generations.py +26 -0
- openrouter/guardrails.py +3367 -0
- openrouter/models_.py +120 -12
- openrouter/oauth.py +90 -22
- openrouter/operations/__init__.py +601 -30
- openrouter/operations/bulkassignkeystoguardrail.py +116 -0
- openrouter/operations/bulkassignmemberstoguardrail.py +116 -0
- openrouter/operations/bulkunassignkeysfromguardrail.py +116 -0
- openrouter/operations/bulkunassignmembersfromguardrail.py +116 -0
- openrouter/operations/createauthkeyscode.py +81 -3
- openrouter/operations/createcoinbasecharge.py +82 -2
- openrouter/operations/createembeddings.py +82 -3
- openrouter/operations/createguardrail.py +325 -0
- openrouter/operations/createkeys.py +81 -3
- openrouter/operations/createresponses.py +84 -3
- openrouter/operations/deleteguardrail.py +104 -0
- openrouter/operations/deletekeys.py +69 -3
- openrouter/operations/exchangeauthcodeforapikey.py +81 -3
- openrouter/operations/getcredits.py +70 -1
- openrouter/operations/getcurrentkey.py +81 -3
- openrouter/operations/getgeneration.py +248 -3
- openrouter/operations/getguardrail.py +228 -0
- openrouter/operations/getkey.py +64 -1
- openrouter/operations/getmodels.py +95 -5
- openrouter/operations/getuseractivity.py +62 -1
- openrouter/operations/list.py +63 -1
- openrouter/operations/listembeddingsmodels.py +74 -0
- openrouter/operations/listendpoints.py +65 -2
- openrouter/operations/listendpointszdr.py +70 -2
- openrouter/operations/listguardrailkeyassignments.py +192 -0
- openrouter/operations/listguardrailmemberassignments.py +187 -0
- openrouter/operations/listguardrails.py +238 -0
- openrouter/operations/listkeyassignments.py +180 -0
- openrouter/operations/listmemberassignments.py +175 -0
- openrouter/operations/listmodelscount.py +74 -0
- openrouter/operations/listmodelsuser.py +70 -2
- openrouter/operations/listproviders.py +70 -2
- openrouter/operations/sendchatcompletionrequest.py +87 -3
- openrouter/operations/updateguardrail.py +334 -0
- openrouter/operations/updatekeys.py +63 -0
- openrouter/providers.py +36 -2
- openrouter/responses.py +178 -148
- openrouter/sdk.py +5 -8
- openrouter/types/models.py +378 -0
- {openrouter-0.1.2.dist-info → openrouter-0.6.0.dist-info}/METADATA +5 -1
- {openrouter-0.1.2.dist-info → openrouter-0.6.0.dist-info}/RECORD +76 -63
- {openrouter-0.1.2.dist-info → openrouter-0.6.0.dist-info}/WHEEL +1 -1
- openrouter/completions.py +0 -361
- openrouter/components/completionchoice.py +0 -82
- openrouter/components/completioncreateparams.py +0 -277
- openrouter/components/completionlogprobs.py +0 -54
- openrouter/components/completionresponse.py +0 -46
- openrouter/components/completionusage.py +0 -19
- openrouter/operations/getparameters.py +0 -123
- openrouter/parameters.py +0 -237
- {openrouter-0.1.2.dist-info → openrouter-0.6.0.dist-info}/licenses/LICENSE +0 -0
- {openrouter-0.1.2.dist-info → openrouter-0.6.0.dist-info}/top_level.txt +0 -0
|
@@ -6,11 +6,55 @@ import builtins
|
|
|
6
6
|
import sys
|
|
7
7
|
|
|
8
8
|
if TYPE_CHECKING:
|
|
9
|
+
from .bulkassignkeystoguardrail import (
|
|
10
|
+
BulkAssignKeysToGuardrailGlobals,
|
|
11
|
+
BulkAssignKeysToGuardrailGlobalsTypedDict,
|
|
12
|
+
BulkAssignKeysToGuardrailRequest,
|
|
13
|
+
BulkAssignKeysToGuardrailRequestBody,
|
|
14
|
+
BulkAssignKeysToGuardrailRequestBodyTypedDict,
|
|
15
|
+
BulkAssignKeysToGuardrailRequestTypedDict,
|
|
16
|
+
BulkAssignKeysToGuardrailResponse,
|
|
17
|
+
BulkAssignKeysToGuardrailResponseTypedDict,
|
|
18
|
+
)
|
|
19
|
+
from .bulkassignmemberstoguardrail import (
|
|
20
|
+
BulkAssignMembersToGuardrailGlobals,
|
|
21
|
+
BulkAssignMembersToGuardrailGlobalsTypedDict,
|
|
22
|
+
BulkAssignMembersToGuardrailRequest,
|
|
23
|
+
BulkAssignMembersToGuardrailRequestBody,
|
|
24
|
+
BulkAssignMembersToGuardrailRequestBodyTypedDict,
|
|
25
|
+
BulkAssignMembersToGuardrailRequestTypedDict,
|
|
26
|
+
BulkAssignMembersToGuardrailResponse,
|
|
27
|
+
BulkAssignMembersToGuardrailResponseTypedDict,
|
|
28
|
+
)
|
|
29
|
+
from .bulkunassignkeysfromguardrail import (
|
|
30
|
+
BulkUnassignKeysFromGuardrailGlobals,
|
|
31
|
+
BulkUnassignKeysFromGuardrailGlobalsTypedDict,
|
|
32
|
+
BulkUnassignKeysFromGuardrailRequest,
|
|
33
|
+
BulkUnassignKeysFromGuardrailRequestBody,
|
|
34
|
+
BulkUnassignKeysFromGuardrailRequestBodyTypedDict,
|
|
35
|
+
BulkUnassignKeysFromGuardrailRequestTypedDict,
|
|
36
|
+
BulkUnassignKeysFromGuardrailResponse,
|
|
37
|
+
BulkUnassignKeysFromGuardrailResponseTypedDict,
|
|
38
|
+
)
|
|
39
|
+
from .bulkunassignmembersfromguardrail import (
|
|
40
|
+
BulkUnassignMembersFromGuardrailGlobals,
|
|
41
|
+
BulkUnassignMembersFromGuardrailGlobalsTypedDict,
|
|
42
|
+
BulkUnassignMembersFromGuardrailRequest,
|
|
43
|
+
BulkUnassignMembersFromGuardrailRequestBody,
|
|
44
|
+
BulkUnassignMembersFromGuardrailRequestBodyTypedDict,
|
|
45
|
+
BulkUnassignMembersFromGuardrailRequestTypedDict,
|
|
46
|
+
BulkUnassignMembersFromGuardrailResponse,
|
|
47
|
+
BulkUnassignMembersFromGuardrailResponseTypedDict,
|
|
48
|
+
)
|
|
9
49
|
from .createauthkeyscode import (
|
|
10
50
|
CreateAuthKeysCodeCodeChallengeMethod,
|
|
11
51
|
CreateAuthKeysCodeData,
|
|
12
52
|
CreateAuthKeysCodeDataTypedDict,
|
|
53
|
+
CreateAuthKeysCodeGlobals,
|
|
54
|
+
CreateAuthKeysCodeGlobalsTypedDict,
|
|
13
55
|
CreateAuthKeysCodeRequest,
|
|
56
|
+
CreateAuthKeysCodeRequestBody,
|
|
57
|
+
CreateAuthKeysCodeRequestBodyTypedDict,
|
|
14
58
|
CreateAuthKeysCodeRequestTypedDict,
|
|
15
59
|
CreateAuthKeysCodeResponse,
|
|
16
60
|
CreateAuthKeysCodeResponseTypedDict,
|
|
@@ -20,6 +64,10 @@ if TYPE_CHECKING:
|
|
|
20
64
|
CallDataTypedDict,
|
|
21
65
|
CreateCoinbaseChargeData,
|
|
22
66
|
CreateCoinbaseChargeDataTypedDict,
|
|
67
|
+
CreateCoinbaseChargeGlobals,
|
|
68
|
+
CreateCoinbaseChargeGlobalsTypedDict,
|
|
69
|
+
CreateCoinbaseChargeRequest,
|
|
70
|
+
CreateCoinbaseChargeRequestTypedDict,
|
|
23
71
|
CreateCoinbaseChargeResponse,
|
|
24
72
|
CreateCoinbaseChargeResponseTypedDict,
|
|
25
73
|
CreateCoinbaseChargeSecurity,
|
|
@@ -40,7 +88,11 @@ if TYPE_CHECKING:
|
|
|
40
88
|
ContentTypedDict,
|
|
41
89
|
CreateEmbeddingsData,
|
|
42
90
|
CreateEmbeddingsDataTypedDict,
|
|
91
|
+
CreateEmbeddingsGlobals,
|
|
92
|
+
CreateEmbeddingsGlobalsTypedDict,
|
|
43
93
|
CreateEmbeddingsRequest,
|
|
94
|
+
CreateEmbeddingsRequestBody,
|
|
95
|
+
CreateEmbeddingsRequestBodyTypedDict,
|
|
44
96
|
CreateEmbeddingsRequestTypedDict,
|
|
45
97
|
CreateEmbeddingsResponse,
|
|
46
98
|
CreateEmbeddingsResponseBody,
|
|
@@ -62,22 +114,54 @@ if TYPE_CHECKING:
|
|
|
62
114
|
Usage,
|
|
63
115
|
UsageTypedDict,
|
|
64
116
|
)
|
|
117
|
+
from .createguardrail import (
|
|
118
|
+
CreateGuardrailData,
|
|
119
|
+
CreateGuardrailDataTypedDict,
|
|
120
|
+
CreateGuardrailGlobals,
|
|
121
|
+
CreateGuardrailGlobalsTypedDict,
|
|
122
|
+
CreateGuardrailRequest,
|
|
123
|
+
CreateGuardrailRequestBody,
|
|
124
|
+
CreateGuardrailRequestBodyTypedDict,
|
|
125
|
+
CreateGuardrailRequestTypedDict,
|
|
126
|
+
CreateGuardrailResetIntervalRequest,
|
|
127
|
+
CreateGuardrailResetIntervalResponse,
|
|
128
|
+
CreateGuardrailResponse,
|
|
129
|
+
CreateGuardrailResponseTypedDict,
|
|
130
|
+
)
|
|
65
131
|
from .createkeys import (
|
|
66
132
|
CreateKeysData,
|
|
67
133
|
CreateKeysDataTypedDict,
|
|
134
|
+
CreateKeysGlobals,
|
|
135
|
+
CreateKeysGlobalsTypedDict,
|
|
68
136
|
CreateKeysLimitReset,
|
|
69
137
|
CreateKeysRequest,
|
|
138
|
+
CreateKeysRequestBody,
|
|
139
|
+
CreateKeysRequestBodyTypedDict,
|
|
70
140
|
CreateKeysRequestTypedDict,
|
|
71
141
|
CreateKeysResponse,
|
|
72
142
|
CreateKeysResponseTypedDict,
|
|
73
143
|
)
|
|
74
144
|
from .createresponses import (
|
|
145
|
+
CreateResponsesGlobals,
|
|
146
|
+
CreateResponsesGlobalsTypedDict,
|
|
147
|
+
CreateResponsesRequest,
|
|
148
|
+
CreateResponsesRequestTypedDict,
|
|
75
149
|
CreateResponsesResponse,
|
|
76
150
|
CreateResponsesResponseBody,
|
|
77
151
|
CreateResponsesResponseBodyTypedDict,
|
|
78
152
|
CreateResponsesResponseTypedDict,
|
|
79
153
|
)
|
|
154
|
+
from .deleteguardrail import (
|
|
155
|
+
DeleteGuardrailGlobals,
|
|
156
|
+
DeleteGuardrailGlobalsTypedDict,
|
|
157
|
+
DeleteGuardrailRequest,
|
|
158
|
+
DeleteGuardrailRequestTypedDict,
|
|
159
|
+
DeleteGuardrailResponse,
|
|
160
|
+
DeleteGuardrailResponseTypedDict,
|
|
161
|
+
)
|
|
80
162
|
from .deletekeys import (
|
|
163
|
+
DeleteKeysGlobals,
|
|
164
|
+
DeleteKeysGlobalsTypedDict,
|
|
81
165
|
DeleteKeysRequest,
|
|
82
166
|
DeleteKeysRequestTypedDict,
|
|
83
167
|
DeleteKeysResponse,
|
|
@@ -85,7 +169,11 @@ if TYPE_CHECKING:
|
|
|
85
169
|
)
|
|
86
170
|
from .exchangeauthcodeforapikey import (
|
|
87
171
|
ExchangeAuthCodeForAPIKeyCodeChallengeMethod,
|
|
172
|
+
ExchangeAuthCodeForAPIKeyGlobals,
|
|
173
|
+
ExchangeAuthCodeForAPIKeyGlobalsTypedDict,
|
|
88
174
|
ExchangeAuthCodeForAPIKeyRequest,
|
|
175
|
+
ExchangeAuthCodeForAPIKeyRequestBody,
|
|
176
|
+
ExchangeAuthCodeForAPIKeyRequestBodyTypedDict,
|
|
89
177
|
ExchangeAuthCodeForAPIKeyRequestTypedDict,
|
|
90
178
|
ExchangeAuthCodeForAPIKeyResponse,
|
|
91
179
|
ExchangeAuthCodeForAPIKeyResponseTypedDict,
|
|
@@ -93,12 +181,20 @@ if TYPE_CHECKING:
|
|
|
93
181
|
from .getcredits import (
|
|
94
182
|
GetCreditsData,
|
|
95
183
|
GetCreditsDataTypedDict,
|
|
184
|
+
GetCreditsGlobals,
|
|
185
|
+
GetCreditsGlobalsTypedDict,
|
|
186
|
+
GetCreditsRequest,
|
|
187
|
+
GetCreditsRequestTypedDict,
|
|
96
188
|
GetCreditsResponse,
|
|
97
189
|
GetCreditsResponseTypedDict,
|
|
98
190
|
)
|
|
99
191
|
from .getcurrentkey import (
|
|
100
192
|
GetCurrentKeyData,
|
|
101
193
|
GetCurrentKeyDataTypedDict,
|
|
194
|
+
GetCurrentKeyGlobals,
|
|
195
|
+
GetCurrentKeyGlobalsTypedDict,
|
|
196
|
+
GetCurrentKeyRequest,
|
|
197
|
+
GetCurrentKeyRequestTypedDict,
|
|
102
198
|
GetCurrentKeyResponse,
|
|
103
199
|
GetCurrentKeyResponseTypedDict,
|
|
104
200
|
RateLimit,
|
|
@@ -108,32 +204,47 @@ if TYPE_CHECKING:
|
|
|
108
204
|
APIType,
|
|
109
205
|
GetGenerationData,
|
|
110
206
|
GetGenerationDataTypedDict,
|
|
207
|
+
GetGenerationGlobals,
|
|
208
|
+
GetGenerationGlobalsTypedDict,
|
|
111
209
|
GetGenerationRequest,
|
|
112
210
|
GetGenerationRequestTypedDict,
|
|
113
211
|
GetGenerationResponse,
|
|
114
212
|
GetGenerationResponseTypedDict,
|
|
213
|
+
ProviderName,
|
|
214
|
+
ProviderResponse,
|
|
215
|
+
ProviderResponseTypedDict,
|
|
216
|
+
)
|
|
217
|
+
from .getguardrail import (
|
|
218
|
+
GetGuardrailData,
|
|
219
|
+
GetGuardrailDataTypedDict,
|
|
220
|
+
GetGuardrailGlobals,
|
|
221
|
+
GetGuardrailGlobalsTypedDict,
|
|
222
|
+
GetGuardrailRequest,
|
|
223
|
+
GetGuardrailRequestTypedDict,
|
|
224
|
+
GetGuardrailResetInterval,
|
|
225
|
+
GetGuardrailResponse,
|
|
226
|
+
GetGuardrailResponseTypedDict,
|
|
115
227
|
)
|
|
116
228
|
from .getkey import (
|
|
117
229
|
GetKeyData,
|
|
118
230
|
GetKeyDataTypedDict,
|
|
231
|
+
GetKeyGlobals,
|
|
232
|
+
GetKeyGlobalsTypedDict,
|
|
119
233
|
GetKeyRequest,
|
|
120
234
|
GetKeyRequestTypedDict,
|
|
121
235
|
GetKeyResponse,
|
|
122
236
|
GetKeyResponseTypedDict,
|
|
123
237
|
)
|
|
124
|
-
from .getmodels import
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
GetParametersResponse,
|
|
131
|
-
GetParametersResponseTypedDict,
|
|
132
|
-
GetParametersSecurity,
|
|
133
|
-
GetParametersSecurityTypedDict,
|
|
134
|
-
SupportedParameter,
|
|
238
|
+
from .getmodels import (
|
|
239
|
+
Category,
|
|
240
|
+
GetModelsGlobals,
|
|
241
|
+
GetModelsGlobalsTypedDict,
|
|
242
|
+
GetModelsRequest,
|
|
243
|
+
GetModelsRequestTypedDict,
|
|
135
244
|
)
|
|
136
245
|
from .getuseractivity import (
|
|
246
|
+
GetUserActivityGlobals,
|
|
247
|
+
GetUserActivityGlobalsTypedDict,
|
|
137
248
|
GetUserActivityRequest,
|
|
138
249
|
GetUserActivityRequestTypedDict,
|
|
139
250
|
GetUserActivityResponse,
|
|
@@ -142,35 +253,137 @@ if TYPE_CHECKING:
|
|
|
142
253
|
from .list import (
|
|
143
254
|
ListData,
|
|
144
255
|
ListDataTypedDict,
|
|
256
|
+
ListGlobals,
|
|
257
|
+
ListGlobalsTypedDict,
|
|
145
258
|
ListRequest,
|
|
146
259
|
ListRequestTypedDict,
|
|
147
260
|
ListResponse,
|
|
148
261
|
ListResponseTypedDict,
|
|
149
262
|
)
|
|
263
|
+
from .listembeddingsmodels import (
|
|
264
|
+
ListEmbeddingsModelsGlobals,
|
|
265
|
+
ListEmbeddingsModelsGlobalsTypedDict,
|
|
266
|
+
ListEmbeddingsModelsRequest,
|
|
267
|
+
ListEmbeddingsModelsRequestTypedDict,
|
|
268
|
+
)
|
|
150
269
|
from .listendpoints import (
|
|
270
|
+
ListEndpointsGlobals,
|
|
271
|
+
ListEndpointsGlobalsTypedDict,
|
|
151
272
|
ListEndpointsRequest,
|
|
152
273
|
ListEndpointsRequestTypedDict,
|
|
153
274
|
ListEndpointsResponse,
|
|
154
275
|
ListEndpointsResponseTypedDict,
|
|
155
276
|
)
|
|
156
277
|
from .listendpointszdr import (
|
|
278
|
+
ListEndpointsZdrGlobals,
|
|
279
|
+
ListEndpointsZdrGlobalsTypedDict,
|
|
280
|
+
ListEndpointsZdrRequest,
|
|
281
|
+
ListEndpointsZdrRequestTypedDict,
|
|
157
282
|
ListEndpointsZdrResponse,
|
|
158
283
|
ListEndpointsZdrResponseTypedDict,
|
|
159
284
|
)
|
|
160
|
-
from .
|
|
285
|
+
from .listguardrailkeyassignments import (
|
|
286
|
+
ListGuardrailKeyAssignmentsData,
|
|
287
|
+
ListGuardrailKeyAssignmentsDataTypedDict,
|
|
288
|
+
ListGuardrailKeyAssignmentsGlobals,
|
|
289
|
+
ListGuardrailKeyAssignmentsGlobalsTypedDict,
|
|
290
|
+
ListGuardrailKeyAssignmentsRequest,
|
|
291
|
+
ListGuardrailKeyAssignmentsRequestTypedDict,
|
|
292
|
+
ListGuardrailKeyAssignmentsResponse,
|
|
293
|
+
ListGuardrailKeyAssignmentsResponseTypedDict,
|
|
294
|
+
)
|
|
295
|
+
from .listguardrailmemberassignments import (
|
|
296
|
+
ListGuardrailMemberAssignmentsData,
|
|
297
|
+
ListGuardrailMemberAssignmentsDataTypedDict,
|
|
298
|
+
ListGuardrailMemberAssignmentsGlobals,
|
|
299
|
+
ListGuardrailMemberAssignmentsGlobalsTypedDict,
|
|
300
|
+
ListGuardrailMemberAssignmentsRequest,
|
|
301
|
+
ListGuardrailMemberAssignmentsRequestTypedDict,
|
|
302
|
+
ListGuardrailMemberAssignmentsResponse,
|
|
303
|
+
ListGuardrailMemberAssignmentsResponseTypedDict,
|
|
304
|
+
)
|
|
305
|
+
from .listguardrails import (
|
|
306
|
+
ListGuardrailsData,
|
|
307
|
+
ListGuardrailsDataTypedDict,
|
|
308
|
+
ListGuardrailsGlobals,
|
|
309
|
+
ListGuardrailsGlobalsTypedDict,
|
|
310
|
+
ListGuardrailsRequest,
|
|
311
|
+
ListGuardrailsRequestTypedDict,
|
|
312
|
+
ListGuardrailsResetInterval,
|
|
313
|
+
ListGuardrailsResponse,
|
|
314
|
+
ListGuardrailsResponseTypedDict,
|
|
315
|
+
)
|
|
316
|
+
from .listkeyassignments import (
|
|
317
|
+
ListKeyAssignmentsData,
|
|
318
|
+
ListKeyAssignmentsDataTypedDict,
|
|
319
|
+
ListKeyAssignmentsGlobals,
|
|
320
|
+
ListKeyAssignmentsGlobalsTypedDict,
|
|
321
|
+
ListKeyAssignmentsRequest,
|
|
322
|
+
ListKeyAssignmentsRequestTypedDict,
|
|
323
|
+
ListKeyAssignmentsResponse,
|
|
324
|
+
ListKeyAssignmentsResponseTypedDict,
|
|
325
|
+
)
|
|
326
|
+
from .listmemberassignments import (
|
|
327
|
+
ListMemberAssignmentsData,
|
|
328
|
+
ListMemberAssignmentsDataTypedDict,
|
|
329
|
+
ListMemberAssignmentsGlobals,
|
|
330
|
+
ListMemberAssignmentsGlobalsTypedDict,
|
|
331
|
+
ListMemberAssignmentsRequest,
|
|
332
|
+
ListMemberAssignmentsRequestTypedDict,
|
|
333
|
+
ListMemberAssignmentsResponse,
|
|
334
|
+
ListMemberAssignmentsResponseTypedDict,
|
|
335
|
+
)
|
|
336
|
+
from .listmodelscount import (
|
|
337
|
+
ListModelsCountGlobals,
|
|
338
|
+
ListModelsCountGlobalsTypedDict,
|
|
339
|
+
ListModelsCountRequest,
|
|
340
|
+
ListModelsCountRequestTypedDict,
|
|
341
|
+
)
|
|
342
|
+
from .listmodelsuser import (
|
|
343
|
+
ListModelsUserGlobals,
|
|
344
|
+
ListModelsUserGlobalsTypedDict,
|
|
345
|
+
ListModelsUserRequest,
|
|
346
|
+
ListModelsUserRequestTypedDict,
|
|
347
|
+
ListModelsUserSecurity,
|
|
348
|
+
ListModelsUserSecurityTypedDict,
|
|
349
|
+
)
|
|
161
350
|
from .listproviders import (
|
|
162
351
|
ListProvidersData,
|
|
163
352
|
ListProvidersDataTypedDict,
|
|
353
|
+
ListProvidersGlobals,
|
|
354
|
+
ListProvidersGlobalsTypedDict,
|
|
355
|
+
ListProvidersRequest,
|
|
356
|
+
ListProvidersRequestTypedDict,
|
|
164
357
|
ListProvidersResponse,
|
|
165
358
|
ListProvidersResponseTypedDict,
|
|
166
359
|
)
|
|
167
360
|
from .sendchatcompletionrequest import (
|
|
361
|
+
SendChatCompletionRequestGlobals,
|
|
362
|
+
SendChatCompletionRequestGlobalsTypedDict,
|
|
363
|
+
SendChatCompletionRequestRequest,
|
|
364
|
+
SendChatCompletionRequestRequestTypedDict,
|
|
168
365
|
SendChatCompletionRequestResponse,
|
|
169
366
|
SendChatCompletionRequestResponseTypedDict,
|
|
170
367
|
)
|
|
368
|
+
from .updateguardrail import (
|
|
369
|
+
UpdateGuardrailData,
|
|
370
|
+
UpdateGuardrailDataTypedDict,
|
|
371
|
+
UpdateGuardrailGlobals,
|
|
372
|
+
UpdateGuardrailGlobalsTypedDict,
|
|
373
|
+
UpdateGuardrailRequest,
|
|
374
|
+
UpdateGuardrailRequestBody,
|
|
375
|
+
UpdateGuardrailRequestBodyTypedDict,
|
|
376
|
+
UpdateGuardrailRequestTypedDict,
|
|
377
|
+
UpdateGuardrailResetIntervalRequest,
|
|
378
|
+
UpdateGuardrailResetIntervalResponse,
|
|
379
|
+
UpdateGuardrailResponse,
|
|
380
|
+
UpdateGuardrailResponseTypedDict,
|
|
381
|
+
)
|
|
171
382
|
from .updatekeys import (
|
|
172
383
|
UpdateKeysData,
|
|
173
384
|
UpdateKeysDataTypedDict,
|
|
385
|
+
UpdateKeysGlobals,
|
|
386
|
+
UpdateKeysGlobalsTypedDict,
|
|
174
387
|
UpdateKeysLimitReset,
|
|
175
388
|
UpdateKeysRequest,
|
|
176
389
|
UpdateKeysRequestBody,
|
|
@@ -182,8 +395,41 @@ if TYPE_CHECKING:
|
|
|
182
395
|
|
|
183
396
|
__all__ = [
|
|
184
397
|
"APIType",
|
|
398
|
+
"BulkAssignKeysToGuardrailGlobals",
|
|
399
|
+
"BulkAssignKeysToGuardrailGlobalsTypedDict",
|
|
400
|
+
"BulkAssignKeysToGuardrailRequest",
|
|
401
|
+
"BulkAssignKeysToGuardrailRequestBody",
|
|
402
|
+
"BulkAssignKeysToGuardrailRequestBodyTypedDict",
|
|
403
|
+
"BulkAssignKeysToGuardrailRequestTypedDict",
|
|
404
|
+
"BulkAssignKeysToGuardrailResponse",
|
|
405
|
+
"BulkAssignKeysToGuardrailResponseTypedDict",
|
|
406
|
+
"BulkAssignMembersToGuardrailGlobals",
|
|
407
|
+
"BulkAssignMembersToGuardrailGlobalsTypedDict",
|
|
408
|
+
"BulkAssignMembersToGuardrailRequest",
|
|
409
|
+
"BulkAssignMembersToGuardrailRequestBody",
|
|
410
|
+
"BulkAssignMembersToGuardrailRequestBodyTypedDict",
|
|
411
|
+
"BulkAssignMembersToGuardrailRequestTypedDict",
|
|
412
|
+
"BulkAssignMembersToGuardrailResponse",
|
|
413
|
+
"BulkAssignMembersToGuardrailResponseTypedDict",
|
|
414
|
+
"BulkUnassignKeysFromGuardrailGlobals",
|
|
415
|
+
"BulkUnassignKeysFromGuardrailGlobalsTypedDict",
|
|
416
|
+
"BulkUnassignKeysFromGuardrailRequest",
|
|
417
|
+
"BulkUnassignKeysFromGuardrailRequestBody",
|
|
418
|
+
"BulkUnassignKeysFromGuardrailRequestBodyTypedDict",
|
|
419
|
+
"BulkUnassignKeysFromGuardrailRequestTypedDict",
|
|
420
|
+
"BulkUnassignKeysFromGuardrailResponse",
|
|
421
|
+
"BulkUnassignKeysFromGuardrailResponseTypedDict",
|
|
422
|
+
"BulkUnassignMembersFromGuardrailGlobals",
|
|
423
|
+
"BulkUnassignMembersFromGuardrailGlobalsTypedDict",
|
|
424
|
+
"BulkUnassignMembersFromGuardrailRequest",
|
|
425
|
+
"BulkUnassignMembersFromGuardrailRequestBody",
|
|
426
|
+
"BulkUnassignMembersFromGuardrailRequestBodyTypedDict",
|
|
427
|
+
"BulkUnassignMembersFromGuardrailRequestTypedDict",
|
|
428
|
+
"BulkUnassignMembersFromGuardrailResponse",
|
|
429
|
+
"BulkUnassignMembersFromGuardrailResponseTypedDict",
|
|
185
430
|
"CallData",
|
|
186
431
|
"CallDataTypedDict",
|
|
432
|
+
"Category",
|
|
187
433
|
"Content",
|
|
188
434
|
"ContentImageURL",
|
|
189
435
|
"ContentImageURLTypedDict",
|
|
@@ -193,35 +439,75 @@ __all__ = [
|
|
|
193
439
|
"CreateAuthKeysCodeCodeChallengeMethod",
|
|
194
440
|
"CreateAuthKeysCodeData",
|
|
195
441
|
"CreateAuthKeysCodeDataTypedDict",
|
|
442
|
+
"CreateAuthKeysCodeGlobals",
|
|
443
|
+
"CreateAuthKeysCodeGlobalsTypedDict",
|
|
196
444
|
"CreateAuthKeysCodeRequest",
|
|
445
|
+
"CreateAuthKeysCodeRequestBody",
|
|
446
|
+
"CreateAuthKeysCodeRequestBodyTypedDict",
|
|
197
447
|
"CreateAuthKeysCodeRequestTypedDict",
|
|
198
448
|
"CreateAuthKeysCodeResponse",
|
|
199
449
|
"CreateAuthKeysCodeResponseTypedDict",
|
|
200
450
|
"CreateCoinbaseChargeData",
|
|
201
451
|
"CreateCoinbaseChargeDataTypedDict",
|
|
452
|
+
"CreateCoinbaseChargeGlobals",
|
|
453
|
+
"CreateCoinbaseChargeGlobalsTypedDict",
|
|
454
|
+
"CreateCoinbaseChargeRequest",
|
|
455
|
+
"CreateCoinbaseChargeRequestTypedDict",
|
|
202
456
|
"CreateCoinbaseChargeResponse",
|
|
203
457
|
"CreateCoinbaseChargeResponseTypedDict",
|
|
204
458
|
"CreateCoinbaseChargeSecurity",
|
|
205
459
|
"CreateCoinbaseChargeSecurityTypedDict",
|
|
206
460
|
"CreateEmbeddingsData",
|
|
207
461
|
"CreateEmbeddingsDataTypedDict",
|
|
462
|
+
"CreateEmbeddingsGlobals",
|
|
463
|
+
"CreateEmbeddingsGlobalsTypedDict",
|
|
208
464
|
"CreateEmbeddingsRequest",
|
|
465
|
+
"CreateEmbeddingsRequestBody",
|
|
466
|
+
"CreateEmbeddingsRequestBodyTypedDict",
|
|
209
467
|
"CreateEmbeddingsRequestTypedDict",
|
|
210
468
|
"CreateEmbeddingsResponse",
|
|
211
469
|
"CreateEmbeddingsResponseBody",
|
|
212
470
|
"CreateEmbeddingsResponseBodyTypedDict",
|
|
213
471
|
"CreateEmbeddingsResponseTypedDict",
|
|
472
|
+
"CreateGuardrailData",
|
|
473
|
+
"CreateGuardrailDataTypedDict",
|
|
474
|
+
"CreateGuardrailGlobals",
|
|
475
|
+
"CreateGuardrailGlobalsTypedDict",
|
|
476
|
+
"CreateGuardrailRequest",
|
|
477
|
+
"CreateGuardrailRequestBody",
|
|
478
|
+
"CreateGuardrailRequestBodyTypedDict",
|
|
479
|
+
"CreateGuardrailRequestTypedDict",
|
|
480
|
+
"CreateGuardrailResetIntervalRequest",
|
|
481
|
+
"CreateGuardrailResetIntervalResponse",
|
|
482
|
+
"CreateGuardrailResponse",
|
|
483
|
+
"CreateGuardrailResponseTypedDict",
|
|
214
484
|
"CreateKeysData",
|
|
215
485
|
"CreateKeysDataTypedDict",
|
|
486
|
+
"CreateKeysGlobals",
|
|
487
|
+
"CreateKeysGlobalsTypedDict",
|
|
216
488
|
"CreateKeysLimitReset",
|
|
217
489
|
"CreateKeysRequest",
|
|
490
|
+
"CreateKeysRequestBody",
|
|
491
|
+
"CreateKeysRequestBodyTypedDict",
|
|
218
492
|
"CreateKeysRequestTypedDict",
|
|
219
493
|
"CreateKeysResponse",
|
|
220
494
|
"CreateKeysResponseTypedDict",
|
|
495
|
+
"CreateResponsesGlobals",
|
|
496
|
+
"CreateResponsesGlobalsTypedDict",
|
|
497
|
+
"CreateResponsesRequest",
|
|
498
|
+
"CreateResponsesRequestTypedDict",
|
|
221
499
|
"CreateResponsesResponse",
|
|
222
500
|
"CreateResponsesResponseBody",
|
|
223
501
|
"CreateResponsesResponseBodyTypedDict",
|
|
224
502
|
"CreateResponsesResponseTypedDict",
|
|
503
|
+
"DeleteGuardrailGlobals",
|
|
504
|
+
"DeleteGuardrailGlobalsTypedDict",
|
|
505
|
+
"DeleteGuardrailRequest",
|
|
506
|
+
"DeleteGuardrailRequestTypedDict",
|
|
507
|
+
"DeleteGuardrailResponse",
|
|
508
|
+
"DeleteGuardrailResponseTypedDict",
|
|
509
|
+
"DeleteKeysGlobals",
|
|
510
|
+
"DeleteKeysGlobalsTypedDict",
|
|
225
511
|
"DeleteKeysRequest",
|
|
226
512
|
"DeleteKeysRequestTypedDict",
|
|
227
513
|
"DeleteKeysResponse",
|
|
@@ -230,40 +516,61 @@ __all__ = [
|
|
|
230
516
|
"EmbeddingTypedDict",
|
|
231
517
|
"EncodingFormat",
|
|
232
518
|
"ExchangeAuthCodeForAPIKeyCodeChallengeMethod",
|
|
519
|
+
"ExchangeAuthCodeForAPIKeyGlobals",
|
|
520
|
+
"ExchangeAuthCodeForAPIKeyGlobalsTypedDict",
|
|
233
521
|
"ExchangeAuthCodeForAPIKeyRequest",
|
|
522
|
+
"ExchangeAuthCodeForAPIKeyRequestBody",
|
|
523
|
+
"ExchangeAuthCodeForAPIKeyRequestBodyTypedDict",
|
|
234
524
|
"ExchangeAuthCodeForAPIKeyRequestTypedDict",
|
|
235
525
|
"ExchangeAuthCodeForAPIKeyResponse",
|
|
236
526
|
"ExchangeAuthCodeForAPIKeyResponseTypedDict",
|
|
237
527
|
"GetCreditsData",
|
|
238
528
|
"GetCreditsDataTypedDict",
|
|
529
|
+
"GetCreditsGlobals",
|
|
530
|
+
"GetCreditsGlobalsTypedDict",
|
|
531
|
+
"GetCreditsRequest",
|
|
532
|
+
"GetCreditsRequestTypedDict",
|
|
239
533
|
"GetCreditsResponse",
|
|
240
534
|
"GetCreditsResponseTypedDict",
|
|
241
535
|
"GetCurrentKeyData",
|
|
242
536
|
"GetCurrentKeyDataTypedDict",
|
|
537
|
+
"GetCurrentKeyGlobals",
|
|
538
|
+
"GetCurrentKeyGlobalsTypedDict",
|
|
539
|
+
"GetCurrentKeyRequest",
|
|
540
|
+
"GetCurrentKeyRequestTypedDict",
|
|
243
541
|
"GetCurrentKeyResponse",
|
|
244
542
|
"GetCurrentKeyResponseTypedDict",
|
|
245
543
|
"GetGenerationData",
|
|
246
544
|
"GetGenerationDataTypedDict",
|
|
545
|
+
"GetGenerationGlobals",
|
|
546
|
+
"GetGenerationGlobalsTypedDict",
|
|
247
547
|
"GetGenerationRequest",
|
|
248
548
|
"GetGenerationRequestTypedDict",
|
|
249
549
|
"GetGenerationResponse",
|
|
250
550
|
"GetGenerationResponseTypedDict",
|
|
551
|
+
"GetGuardrailData",
|
|
552
|
+
"GetGuardrailDataTypedDict",
|
|
553
|
+
"GetGuardrailGlobals",
|
|
554
|
+
"GetGuardrailGlobalsTypedDict",
|
|
555
|
+
"GetGuardrailRequest",
|
|
556
|
+
"GetGuardrailRequestTypedDict",
|
|
557
|
+
"GetGuardrailResetInterval",
|
|
558
|
+
"GetGuardrailResponse",
|
|
559
|
+
"GetGuardrailResponseTypedDict",
|
|
251
560
|
"GetKeyData",
|
|
252
561
|
"GetKeyDataTypedDict",
|
|
562
|
+
"GetKeyGlobals",
|
|
563
|
+
"GetKeyGlobalsTypedDict",
|
|
253
564
|
"GetKeyRequest",
|
|
254
565
|
"GetKeyRequestTypedDict",
|
|
255
566
|
"GetKeyResponse",
|
|
256
567
|
"GetKeyResponseTypedDict",
|
|
568
|
+
"GetModelsGlobals",
|
|
569
|
+
"GetModelsGlobalsTypedDict",
|
|
257
570
|
"GetModelsRequest",
|
|
258
571
|
"GetModelsRequestTypedDict",
|
|
259
|
-
"
|
|
260
|
-
"
|
|
261
|
-
"GetParametersRequest",
|
|
262
|
-
"GetParametersRequestTypedDict",
|
|
263
|
-
"GetParametersResponse",
|
|
264
|
-
"GetParametersResponseTypedDict",
|
|
265
|
-
"GetParametersSecurity",
|
|
266
|
-
"GetParametersSecurityTypedDict",
|
|
572
|
+
"GetUserActivityGlobals",
|
|
573
|
+
"GetUserActivityGlobalsTypedDict",
|
|
267
574
|
"GetUserActivityRequest",
|
|
268
575
|
"GetUserActivityRequestTypedDict",
|
|
269
576
|
"GetUserActivityResponse",
|
|
@@ -276,16 +583,81 @@ __all__ = [
|
|
|
276
583
|
"InputUnionTypedDict",
|
|
277
584
|
"ListData",
|
|
278
585
|
"ListDataTypedDict",
|
|
586
|
+
"ListEmbeddingsModelsGlobals",
|
|
587
|
+
"ListEmbeddingsModelsGlobalsTypedDict",
|
|
588
|
+
"ListEmbeddingsModelsRequest",
|
|
589
|
+
"ListEmbeddingsModelsRequestTypedDict",
|
|
590
|
+
"ListEndpointsGlobals",
|
|
591
|
+
"ListEndpointsGlobalsTypedDict",
|
|
279
592
|
"ListEndpointsRequest",
|
|
280
593
|
"ListEndpointsRequestTypedDict",
|
|
281
594
|
"ListEndpointsResponse",
|
|
282
595
|
"ListEndpointsResponseTypedDict",
|
|
596
|
+
"ListEndpointsZdrGlobals",
|
|
597
|
+
"ListEndpointsZdrGlobalsTypedDict",
|
|
598
|
+
"ListEndpointsZdrRequest",
|
|
599
|
+
"ListEndpointsZdrRequestTypedDict",
|
|
283
600
|
"ListEndpointsZdrResponse",
|
|
284
601
|
"ListEndpointsZdrResponseTypedDict",
|
|
602
|
+
"ListGlobals",
|
|
603
|
+
"ListGlobalsTypedDict",
|
|
604
|
+
"ListGuardrailKeyAssignmentsData",
|
|
605
|
+
"ListGuardrailKeyAssignmentsDataTypedDict",
|
|
606
|
+
"ListGuardrailKeyAssignmentsGlobals",
|
|
607
|
+
"ListGuardrailKeyAssignmentsGlobalsTypedDict",
|
|
608
|
+
"ListGuardrailKeyAssignmentsRequest",
|
|
609
|
+
"ListGuardrailKeyAssignmentsRequestTypedDict",
|
|
610
|
+
"ListGuardrailKeyAssignmentsResponse",
|
|
611
|
+
"ListGuardrailKeyAssignmentsResponseTypedDict",
|
|
612
|
+
"ListGuardrailMemberAssignmentsData",
|
|
613
|
+
"ListGuardrailMemberAssignmentsDataTypedDict",
|
|
614
|
+
"ListGuardrailMemberAssignmentsGlobals",
|
|
615
|
+
"ListGuardrailMemberAssignmentsGlobalsTypedDict",
|
|
616
|
+
"ListGuardrailMemberAssignmentsRequest",
|
|
617
|
+
"ListGuardrailMemberAssignmentsRequestTypedDict",
|
|
618
|
+
"ListGuardrailMemberAssignmentsResponse",
|
|
619
|
+
"ListGuardrailMemberAssignmentsResponseTypedDict",
|
|
620
|
+
"ListGuardrailsData",
|
|
621
|
+
"ListGuardrailsDataTypedDict",
|
|
622
|
+
"ListGuardrailsGlobals",
|
|
623
|
+
"ListGuardrailsGlobalsTypedDict",
|
|
624
|
+
"ListGuardrailsRequest",
|
|
625
|
+
"ListGuardrailsRequestTypedDict",
|
|
626
|
+
"ListGuardrailsResetInterval",
|
|
627
|
+
"ListGuardrailsResponse",
|
|
628
|
+
"ListGuardrailsResponseTypedDict",
|
|
629
|
+
"ListKeyAssignmentsData",
|
|
630
|
+
"ListKeyAssignmentsDataTypedDict",
|
|
631
|
+
"ListKeyAssignmentsGlobals",
|
|
632
|
+
"ListKeyAssignmentsGlobalsTypedDict",
|
|
633
|
+
"ListKeyAssignmentsRequest",
|
|
634
|
+
"ListKeyAssignmentsRequestTypedDict",
|
|
635
|
+
"ListKeyAssignmentsResponse",
|
|
636
|
+
"ListKeyAssignmentsResponseTypedDict",
|
|
637
|
+
"ListMemberAssignmentsData",
|
|
638
|
+
"ListMemberAssignmentsDataTypedDict",
|
|
639
|
+
"ListMemberAssignmentsGlobals",
|
|
640
|
+
"ListMemberAssignmentsGlobalsTypedDict",
|
|
641
|
+
"ListMemberAssignmentsRequest",
|
|
642
|
+
"ListMemberAssignmentsRequestTypedDict",
|
|
643
|
+
"ListMemberAssignmentsResponse",
|
|
644
|
+
"ListMemberAssignmentsResponseTypedDict",
|
|
645
|
+
"ListModelsCountGlobals",
|
|
646
|
+
"ListModelsCountGlobalsTypedDict",
|
|
647
|
+
"ListModelsCountRequest",
|
|
648
|
+
"ListModelsCountRequestTypedDict",
|
|
649
|
+
"ListModelsUserGlobals",
|
|
650
|
+
"ListModelsUserGlobalsTypedDict",
|
|
651
|
+
"ListModelsUserRequest",
|
|
652
|
+
"ListModelsUserRequestTypedDict",
|
|
285
653
|
"ListModelsUserSecurity",
|
|
286
654
|
"ListModelsUserSecurityTypedDict",
|
|
287
655
|
"ListProvidersData",
|
|
288
656
|
"ListProvidersDataTypedDict",
|
|
657
|
+
"ListProvidersGlobals",
|
|
658
|
+
"ListProvidersGlobalsTypedDict",
|
|
659
|
+
"ListProvidersRequest",
|
|
660
|
+
"ListProvidersRequestTypedDict",
|
|
289
661
|
"ListProvidersResponse",
|
|
290
662
|
"ListProvidersResponseTypedDict",
|
|
291
663
|
"ListRequest",
|
|
@@ -296,17 +668,37 @@ __all__ = [
|
|
|
296
668
|
"MetadataTypedDict",
|
|
297
669
|
"Object",
|
|
298
670
|
"ObjectEmbedding",
|
|
671
|
+
"ProviderName",
|
|
672
|
+
"ProviderResponse",
|
|
673
|
+
"ProviderResponseTypedDict",
|
|
299
674
|
"RateLimit",
|
|
300
675
|
"RateLimitTypedDict",
|
|
676
|
+
"SendChatCompletionRequestGlobals",
|
|
677
|
+
"SendChatCompletionRequestGlobalsTypedDict",
|
|
678
|
+
"SendChatCompletionRequestRequest",
|
|
679
|
+
"SendChatCompletionRequestRequestTypedDict",
|
|
301
680
|
"SendChatCompletionRequestResponse",
|
|
302
681
|
"SendChatCompletionRequestResponseTypedDict",
|
|
303
|
-
"SupportedParameter",
|
|
304
682
|
"TransferIntent",
|
|
305
683
|
"TransferIntentTypedDict",
|
|
306
684
|
"TypeImageURL",
|
|
307
685
|
"TypeText",
|
|
686
|
+
"UpdateGuardrailData",
|
|
687
|
+
"UpdateGuardrailDataTypedDict",
|
|
688
|
+
"UpdateGuardrailGlobals",
|
|
689
|
+
"UpdateGuardrailGlobalsTypedDict",
|
|
690
|
+
"UpdateGuardrailRequest",
|
|
691
|
+
"UpdateGuardrailRequestBody",
|
|
692
|
+
"UpdateGuardrailRequestBodyTypedDict",
|
|
693
|
+
"UpdateGuardrailRequestTypedDict",
|
|
694
|
+
"UpdateGuardrailResetIntervalRequest",
|
|
695
|
+
"UpdateGuardrailResetIntervalResponse",
|
|
696
|
+
"UpdateGuardrailResponse",
|
|
697
|
+
"UpdateGuardrailResponseTypedDict",
|
|
308
698
|
"UpdateKeysData",
|
|
309
699
|
"UpdateKeysDataTypedDict",
|
|
700
|
+
"UpdateKeysGlobals",
|
|
701
|
+
"UpdateKeysGlobalsTypedDict",
|
|
310
702
|
"UpdateKeysLimitReset",
|
|
311
703
|
"UpdateKeysRequest",
|
|
312
704
|
"UpdateKeysRequestBody",
|
|
@@ -321,10 +713,46 @@ __all__ = [
|
|
|
321
713
|
]
|
|
322
714
|
|
|
323
715
|
_dynamic_imports: dict[str, str] = {
|
|
716
|
+
"BulkAssignKeysToGuardrailGlobals": ".bulkassignkeystoguardrail",
|
|
717
|
+
"BulkAssignKeysToGuardrailGlobalsTypedDict": ".bulkassignkeystoguardrail",
|
|
718
|
+
"BulkAssignKeysToGuardrailRequest": ".bulkassignkeystoguardrail",
|
|
719
|
+
"BulkAssignKeysToGuardrailRequestBody": ".bulkassignkeystoguardrail",
|
|
720
|
+
"BulkAssignKeysToGuardrailRequestBodyTypedDict": ".bulkassignkeystoguardrail",
|
|
721
|
+
"BulkAssignKeysToGuardrailRequestTypedDict": ".bulkassignkeystoguardrail",
|
|
722
|
+
"BulkAssignKeysToGuardrailResponse": ".bulkassignkeystoguardrail",
|
|
723
|
+
"BulkAssignKeysToGuardrailResponseTypedDict": ".bulkassignkeystoguardrail",
|
|
724
|
+
"BulkAssignMembersToGuardrailGlobals": ".bulkassignmemberstoguardrail",
|
|
725
|
+
"BulkAssignMembersToGuardrailGlobalsTypedDict": ".bulkassignmemberstoguardrail",
|
|
726
|
+
"BulkAssignMembersToGuardrailRequest": ".bulkassignmemberstoguardrail",
|
|
727
|
+
"BulkAssignMembersToGuardrailRequestBody": ".bulkassignmemberstoguardrail",
|
|
728
|
+
"BulkAssignMembersToGuardrailRequestBodyTypedDict": ".bulkassignmemberstoguardrail",
|
|
729
|
+
"BulkAssignMembersToGuardrailRequestTypedDict": ".bulkassignmemberstoguardrail",
|
|
730
|
+
"BulkAssignMembersToGuardrailResponse": ".bulkassignmemberstoguardrail",
|
|
731
|
+
"BulkAssignMembersToGuardrailResponseTypedDict": ".bulkassignmemberstoguardrail",
|
|
732
|
+
"BulkUnassignKeysFromGuardrailGlobals": ".bulkunassignkeysfromguardrail",
|
|
733
|
+
"BulkUnassignKeysFromGuardrailGlobalsTypedDict": ".bulkunassignkeysfromguardrail",
|
|
734
|
+
"BulkUnassignKeysFromGuardrailRequest": ".bulkunassignkeysfromguardrail",
|
|
735
|
+
"BulkUnassignKeysFromGuardrailRequestBody": ".bulkunassignkeysfromguardrail",
|
|
736
|
+
"BulkUnassignKeysFromGuardrailRequestBodyTypedDict": ".bulkunassignkeysfromguardrail",
|
|
737
|
+
"BulkUnassignKeysFromGuardrailRequestTypedDict": ".bulkunassignkeysfromguardrail",
|
|
738
|
+
"BulkUnassignKeysFromGuardrailResponse": ".bulkunassignkeysfromguardrail",
|
|
739
|
+
"BulkUnassignKeysFromGuardrailResponseTypedDict": ".bulkunassignkeysfromguardrail",
|
|
740
|
+
"BulkUnassignMembersFromGuardrailGlobals": ".bulkunassignmembersfromguardrail",
|
|
741
|
+
"BulkUnassignMembersFromGuardrailGlobalsTypedDict": ".bulkunassignmembersfromguardrail",
|
|
742
|
+
"BulkUnassignMembersFromGuardrailRequest": ".bulkunassignmembersfromguardrail",
|
|
743
|
+
"BulkUnassignMembersFromGuardrailRequestBody": ".bulkunassignmembersfromguardrail",
|
|
744
|
+
"BulkUnassignMembersFromGuardrailRequestBodyTypedDict": ".bulkunassignmembersfromguardrail",
|
|
745
|
+
"BulkUnassignMembersFromGuardrailRequestTypedDict": ".bulkunassignmembersfromguardrail",
|
|
746
|
+
"BulkUnassignMembersFromGuardrailResponse": ".bulkunassignmembersfromguardrail",
|
|
747
|
+
"BulkUnassignMembersFromGuardrailResponseTypedDict": ".bulkunassignmembersfromguardrail",
|
|
324
748
|
"CreateAuthKeysCodeCodeChallengeMethod": ".createauthkeyscode",
|
|
325
749
|
"CreateAuthKeysCodeData": ".createauthkeyscode",
|
|
326
750
|
"CreateAuthKeysCodeDataTypedDict": ".createauthkeyscode",
|
|
751
|
+
"CreateAuthKeysCodeGlobals": ".createauthkeyscode",
|
|
752
|
+
"CreateAuthKeysCodeGlobalsTypedDict": ".createauthkeyscode",
|
|
327
753
|
"CreateAuthKeysCodeRequest": ".createauthkeyscode",
|
|
754
|
+
"CreateAuthKeysCodeRequestBody": ".createauthkeyscode",
|
|
755
|
+
"CreateAuthKeysCodeRequestBodyTypedDict": ".createauthkeyscode",
|
|
328
756
|
"CreateAuthKeysCodeRequestTypedDict": ".createauthkeyscode",
|
|
329
757
|
"CreateAuthKeysCodeResponse": ".createauthkeyscode",
|
|
330
758
|
"CreateAuthKeysCodeResponseTypedDict": ".createauthkeyscode",
|
|
@@ -332,6 +760,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
332
760
|
"CallDataTypedDict": ".createcoinbasecharge",
|
|
333
761
|
"CreateCoinbaseChargeData": ".createcoinbasecharge",
|
|
334
762
|
"CreateCoinbaseChargeDataTypedDict": ".createcoinbasecharge",
|
|
763
|
+
"CreateCoinbaseChargeGlobals": ".createcoinbasecharge",
|
|
764
|
+
"CreateCoinbaseChargeGlobalsTypedDict": ".createcoinbasecharge",
|
|
765
|
+
"CreateCoinbaseChargeRequest": ".createcoinbasecharge",
|
|
766
|
+
"CreateCoinbaseChargeRequestTypedDict": ".createcoinbasecharge",
|
|
335
767
|
"CreateCoinbaseChargeResponse": ".createcoinbasecharge",
|
|
336
768
|
"CreateCoinbaseChargeResponseTypedDict": ".createcoinbasecharge",
|
|
337
769
|
"CreateCoinbaseChargeSecurity": ".createcoinbasecharge",
|
|
@@ -350,7 +782,11 @@ _dynamic_imports: dict[str, str] = {
|
|
|
350
782
|
"ContentTypedDict": ".createembeddings",
|
|
351
783
|
"CreateEmbeddingsData": ".createembeddings",
|
|
352
784
|
"CreateEmbeddingsDataTypedDict": ".createembeddings",
|
|
785
|
+
"CreateEmbeddingsGlobals": ".createembeddings",
|
|
786
|
+
"CreateEmbeddingsGlobalsTypedDict": ".createembeddings",
|
|
353
787
|
"CreateEmbeddingsRequest": ".createembeddings",
|
|
788
|
+
"CreateEmbeddingsRequestBody": ".createembeddings",
|
|
789
|
+
"CreateEmbeddingsRequestBodyTypedDict": ".createembeddings",
|
|
354
790
|
"CreateEmbeddingsRequestTypedDict": ".createembeddings",
|
|
355
791
|
"CreateEmbeddingsResponse": ".createembeddings",
|
|
356
792
|
"CreateEmbeddingsResponseBody": ".createembeddings",
|
|
@@ -371,32 +807,72 @@ _dynamic_imports: dict[str, str] = {
|
|
|
371
807
|
"TypeText": ".createembeddings",
|
|
372
808
|
"Usage": ".createembeddings",
|
|
373
809
|
"UsageTypedDict": ".createembeddings",
|
|
810
|
+
"CreateGuardrailData": ".createguardrail",
|
|
811
|
+
"CreateGuardrailDataTypedDict": ".createguardrail",
|
|
812
|
+
"CreateGuardrailGlobals": ".createguardrail",
|
|
813
|
+
"CreateGuardrailGlobalsTypedDict": ".createguardrail",
|
|
814
|
+
"CreateGuardrailRequest": ".createguardrail",
|
|
815
|
+
"CreateGuardrailRequestBody": ".createguardrail",
|
|
816
|
+
"CreateGuardrailRequestBodyTypedDict": ".createguardrail",
|
|
817
|
+
"CreateGuardrailRequestTypedDict": ".createguardrail",
|
|
818
|
+
"CreateGuardrailResetIntervalRequest": ".createguardrail",
|
|
819
|
+
"CreateGuardrailResetIntervalResponse": ".createguardrail",
|
|
820
|
+
"CreateGuardrailResponse": ".createguardrail",
|
|
821
|
+
"CreateGuardrailResponseTypedDict": ".createguardrail",
|
|
374
822
|
"CreateKeysData": ".createkeys",
|
|
375
823
|
"CreateKeysDataTypedDict": ".createkeys",
|
|
824
|
+
"CreateKeysGlobals": ".createkeys",
|
|
825
|
+
"CreateKeysGlobalsTypedDict": ".createkeys",
|
|
376
826
|
"CreateKeysLimitReset": ".createkeys",
|
|
377
827
|
"CreateKeysRequest": ".createkeys",
|
|
828
|
+
"CreateKeysRequestBody": ".createkeys",
|
|
829
|
+
"CreateKeysRequestBodyTypedDict": ".createkeys",
|
|
378
830
|
"CreateKeysRequestTypedDict": ".createkeys",
|
|
379
831
|
"CreateKeysResponse": ".createkeys",
|
|
380
832
|
"CreateKeysResponseTypedDict": ".createkeys",
|
|
833
|
+
"CreateResponsesGlobals": ".createresponses",
|
|
834
|
+
"CreateResponsesGlobalsTypedDict": ".createresponses",
|
|
835
|
+
"CreateResponsesRequest": ".createresponses",
|
|
836
|
+
"CreateResponsesRequestTypedDict": ".createresponses",
|
|
381
837
|
"CreateResponsesResponse": ".createresponses",
|
|
382
838
|
"CreateResponsesResponseBody": ".createresponses",
|
|
383
839
|
"CreateResponsesResponseBodyTypedDict": ".createresponses",
|
|
384
840
|
"CreateResponsesResponseTypedDict": ".createresponses",
|
|
841
|
+
"DeleteGuardrailGlobals": ".deleteguardrail",
|
|
842
|
+
"DeleteGuardrailGlobalsTypedDict": ".deleteguardrail",
|
|
843
|
+
"DeleteGuardrailRequest": ".deleteguardrail",
|
|
844
|
+
"DeleteGuardrailRequestTypedDict": ".deleteguardrail",
|
|
845
|
+
"DeleteGuardrailResponse": ".deleteguardrail",
|
|
846
|
+
"DeleteGuardrailResponseTypedDict": ".deleteguardrail",
|
|
847
|
+
"DeleteKeysGlobals": ".deletekeys",
|
|
848
|
+
"DeleteKeysGlobalsTypedDict": ".deletekeys",
|
|
385
849
|
"DeleteKeysRequest": ".deletekeys",
|
|
386
850
|
"DeleteKeysRequestTypedDict": ".deletekeys",
|
|
387
851
|
"DeleteKeysResponse": ".deletekeys",
|
|
388
852
|
"DeleteKeysResponseTypedDict": ".deletekeys",
|
|
389
853
|
"ExchangeAuthCodeForAPIKeyCodeChallengeMethod": ".exchangeauthcodeforapikey",
|
|
854
|
+
"ExchangeAuthCodeForAPIKeyGlobals": ".exchangeauthcodeforapikey",
|
|
855
|
+
"ExchangeAuthCodeForAPIKeyGlobalsTypedDict": ".exchangeauthcodeforapikey",
|
|
390
856
|
"ExchangeAuthCodeForAPIKeyRequest": ".exchangeauthcodeforapikey",
|
|
857
|
+
"ExchangeAuthCodeForAPIKeyRequestBody": ".exchangeauthcodeforapikey",
|
|
858
|
+
"ExchangeAuthCodeForAPIKeyRequestBodyTypedDict": ".exchangeauthcodeforapikey",
|
|
391
859
|
"ExchangeAuthCodeForAPIKeyRequestTypedDict": ".exchangeauthcodeforapikey",
|
|
392
860
|
"ExchangeAuthCodeForAPIKeyResponse": ".exchangeauthcodeforapikey",
|
|
393
861
|
"ExchangeAuthCodeForAPIKeyResponseTypedDict": ".exchangeauthcodeforapikey",
|
|
394
862
|
"GetCreditsData": ".getcredits",
|
|
395
863
|
"GetCreditsDataTypedDict": ".getcredits",
|
|
864
|
+
"GetCreditsGlobals": ".getcredits",
|
|
865
|
+
"GetCreditsGlobalsTypedDict": ".getcredits",
|
|
866
|
+
"GetCreditsRequest": ".getcredits",
|
|
867
|
+
"GetCreditsRequestTypedDict": ".getcredits",
|
|
396
868
|
"GetCreditsResponse": ".getcredits",
|
|
397
869
|
"GetCreditsResponseTypedDict": ".getcredits",
|
|
398
870
|
"GetCurrentKeyData": ".getcurrentkey",
|
|
399
871
|
"GetCurrentKeyDataTypedDict": ".getcurrentkey",
|
|
872
|
+
"GetCurrentKeyGlobals": ".getcurrentkey",
|
|
873
|
+
"GetCurrentKeyGlobalsTypedDict": ".getcurrentkey",
|
|
874
|
+
"GetCurrentKeyRequest": ".getcurrentkey",
|
|
875
|
+
"GetCurrentKeyRequestTypedDict": ".getcurrentkey",
|
|
400
876
|
"GetCurrentKeyResponse": ".getcurrentkey",
|
|
401
877
|
"GetCurrentKeyResponseTypedDict": ".getcurrentkey",
|
|
402
878
|
"RateLimit": ".getcurrentkey",
|
|
@@ -404,53 +880,148 @@ _dynamic_imports: dict[str, str] = {
|
|
|
404
880
|
"APIType": ".getgeneration",
|
|
405
881
|
"GetGenerationData": ".getgeneration",
|
|
406
882
|
"GetGenerationDataTypedDict": ".getgeneration",
|
|
883
|
+
"GetGenerationGlobals": ".getgeneration",
|
|
884
|
+
"GetGenerationGlobalsTypedDict": ".getgeneration",
|
|
407
885
|
"GetGenerationRequest": ".getgeneration",
|
|
408
886
|
"GetGenerationRequestTypedDict": ".getgeneration",
|
|
409
887
|
"GetGenerationResponse": ".getgeneration",
|
|
410
888
|
"GetGenerationResponseTypedDict": ".getgeneration",
|
|
889
|
+
"ProviderName": ".getgeneration",
|
|
890
|
+
"ProviderResponse": ".getgeneration",
|
|
891
|
+
"ProviderResponseTypedDict": ".getgeneration",
|
|
892
|
+
"GetGuardrailData": ".getguardrail",
|
|
893
|
+
"GetGuardrailDataTypedDict": ".getguardrail",
|
|
894
|
+
"GetGuardrailGlobals": ".getguardrail",
|
|
895
|
+
"GetGuardrailGlobalsTypedDict": ".getguardrail",
|
|
896
|
+
"GetGuardrailRequest": ".getguardrail",
|
|
897
|
+
"GetGuardrailRequestTypedDict": ".getguardrail",
|
|
898
|
+
"GetGuardrailResetInterval": ".getguardrail",
|
|
899
|
+
"GetGuardrailResponse": ".getguardrail",
|
|
900
|
+
"GetGuardrailResponseTypedDict": ".getguardrail",
|
|
411
901
|
"GetKeyData": ".getkey",
|
|
412
902
|
"GetKeyDataTypedDict": ".getkey",
|
|
903
|
+
"GetKeyGlobals": ".getkey",
|
|
904
|
+
"GetKeyGlobalsTypedDict": ".getkey",
|
|
413
905
|
"GetKeyRequest": ".getkey",
|
|
414
906
|
"GetKeyRequestTypedDict": ".getkey",
|
|
415
907
|
"GetKeyResponse": ".getkey",
|
|
416
908
|
"GetKeyResponseTypedDict": ".getkey",
|
|
909
|
+
"Category": ".getmodels",
|
|
910
|
+
"GetModelsGlobals": ".getmodels",
|
|
911
|
+
"GetModelsGlobalsTypedDict": ".getmodels",
|
|
417
912
|
"GetModelsRequest": ".getmodels",
|
|
418
913
|
"GetModelsRequestTypedDict": ".getmodels",
|
|
419
|
-
"
|
|
420
|
-
"
|
|
421
|
-
"GetParametersRequest": ".getparameters",
|
|
422
|
-
"GetParametersRequestTypedDict": ".getparameters",
|
|
423
|
-
"GetParametersResponse": ".getparameters",
|
|
424
|
-
"GetParametersResponseTypedDict": ".getparameters",
|
|
425
|
-
"GetParametersSecurity": ".getparameters",
|
|
426
|
-
"GetParametersSecurityTypedDict": ".getparameters",
|
|
427
|
-
"SupportedParameter": ".getparameters",
|
|
914
|
+
"GetUserActivityGlobals": ".getuseractivity",
|
|
915
|
+
"GetUserActivityGlobalsTypedDict": ".getuseractivity",
|
|
428
916
|
"GetUserActivityRequest": ".getuseractivity",
|
|
429
917
|
"GetUserActivityRequestTypedDict": ".getuseractivity",
|
|
430
918
|
"GetUserActivityResponse": ".getuseractivity",
|
|
431
919
|
"GetUserActivityResponseTypedDict": ".getuseractivity",
|
|
432
920
|
"ListData": ".list",
|
|
433
921
|
"ListDataTypedDict": ".list",
|
|
922
|
+
"ListGlobals": ".list",
|
|
923
|
+
"ListGlobalsTypedDict": ".list",
|
|
434
924
|
"ListRequest": ".list",
|
|
435
925
|
"ListRequestTypedDict": ".list",
|
|
436
926
|
"ListResponse": ".list",
|
|
437
927
|
"ListResponseTypedDict": ".list",
|
|
928
|
+
"ListEmbeddingsModelsGlobals": ".listembeddingsmodels",
|
|
929
|
+
"ListEmbeddingsModelsGlobalsTypedDict": ".listembeddingsmodels",
|
|
930
|
+
"ListEmbeddingsModelsRequest": ".listembeddingsmodels",
|
|
931
|
+
"ListEmbeddingsModelsRequestTypedDict": ".listembeddingsmodels",
|
|
932
|
+
"ListEndpointsGlobals": ".listendpoints",
|
|
933
|
+
"ListEndpointsGlobalsTypedDict": ".listendpoints",
|
|
438
934
|
"ListEndpointsRequest": ".listendpoints",
|
|
439
935
|
"ListEndpointsRequestTypedDict": ".listendpoints",
|
|
440
936
|
"ListEndpointsResponse": ".listendpoints",
|
|
441
937
|
"ListEndpointsResponseTypedDict": ".listendpoints",
|
|
938
|
+
"ListEndpointsZdrGlobals": ".listendpointszdr",
|
|
939
|
+
"ListEndpointsZdrGlobalsTypedDict": ".listendpointszdr",
|
|
940
|
+
"ListEndpointsZdrRequest": ".listendpointszdr",
|
|
941
|
+
"ListEndpointsZdrRequestTypedDict": ".listendpointszdr",
|
|
442
942
|
"ListEndpointsZdrResponse": ".listendpointszdr",
|
|
443
943
|
"ListEndpointsZdrResponseTypedDict": ".listendpointszdr",
|
|
944
|
+
"ListGuardrailKeyAssignmentsData": ".listguardrailkeyassignments",
|
|
945
|
+
"ListGuardrailKeyAssignmentsDataTypedDict": ".listguardrailkeyassignments",
|
|
946
|
+
"ListGuardrailKeyAssignmentsGlobals": ".listguardrailkeyassignments",
|
|
947
|
+
"ListGuardrailKeyAssignmentsGlobalsTypedDict": ".listguardrailkeyassignments",
|
|
948
|
+
"ListGuardrailKeyAssignmentsRequest": ".listguardrailkeyassignments",
|
|
949
|
+
"ListGuardrailKeyAssignmentsRequestTypedDict": ".listguardrailkeyassignments",
|
|
950
|
+
"ListGuardrailKeyAssignmentsResponse": ".listguardrailkeyassignments",
|
|
951
|
+
"ListGuardrailKeyAssignmentsResponseTypedDict": ".listguardrailkeyassignments",
|
|
952
|
+
"ListGuardrailMemberAssignmentsData": ".listguardrailmemberassignments",
|
|
953
|
+
"ListGuardrailMemberAssignmentsDataTypedDict": ".listguardrailmemberassignments",
|
|
954
|
+
"ListGuardrailMemberAssignmentsGlobals": ".listguardrailmemberassignments",
|
|
955
|
+
"ListGuardrailMemberAssignmentsGlobalsTypedDict": ".listguardrailmemberassignments",
|
|
956
|
+
"ListGuardrailMemberAssignmentsRequest": ".listguardrailmemberassignments",
|
|
957
|
+
"ListGuardrailMemberAssignmentsRequestTypedDict": ".listguardrailmemberassignments",
|
|
958
|
+
"ListGuardrailMemberAssignmentsResponse": ".listguardrailmemberassignments",
|
|
959
|
+
"ListGuardrailMemberAssignmentsResponseTypedDict": ".listguardrailmemberassignments",
|
|
960
|
+
"ListGuardrailsData": ".listguardrails",
|
|
961
|
+
"ListGuardrailsDataTypedDict": ".listguardrails",
|
|
962
|
+
"ListGuardrailsGlobals": ".listguardrails",
|
|
963
|
+
"ListGuardrailsGlobalsTypedDict": ".listguardrails",
|
|
964
|
+
"ListGuardrailsRequest": ".listguardrails",
|
|
965
|
+
"ListGuardrailsRequestTypedDict": ".listguardrails",
|
|
966
|
+
"ListGuardrailsResetInterval": ".listguardrails",
|
|
967
|
+
"ListGuardrailsResponse": ".listguardrails",
|
|
968
|
+
"ListGuardrailsResponseTypedDict": ".listguardrails",
|
|
969
|
+
"ListKeyAssignmentsData": ".listkeyassignments",
|
|
970
|
+
"ListKeyAssignmentsDataTypedDict": ".listkeyassignments",
|
|
971
|
+
"ListKeyAssignmentsGlobals": ".listkeyassignments",
|
|
972
|
+
"ListKeyAssignmentsGlobalsTypedDict": ".listkeyassignments",
|
|
973
|
+
"ListKeyAssignmentsRequest": ".listkeyassignments",
|
|
974
|
+
"ListKeyAssignmentsRequestTypedDict": ".listkeyassignments",
|
|
975
|
+
"ListKeyAssignmentsResponse": ".listkeyassignments",
|
|
976
|
+
"ListKeyAssignmentsResponseTypedDict": ".listkeyassignments",
|
|
977
|
+
"ListMemberAssignmentsData": ".listmemberassignments",
|
|
978
|
+
"ListMemberAssignmentsDataTypedDict": ".listmemberassignments",
|
|
979
|
+
"ListMemberAssignmentsGlobals": ".listmemberassignments",
|
|
980
|
+
"ListMemberAssignmentsGlobalsTypedDict": ".listmemberassignments",
|
|
981
|
+
"ListMemberAssignmentsRequest": ".listmemberassignments",
|
|
982
|
+
"ListMemberAssignmentsRequestTypedDict": ".listmemberassignments",
|
|
983
|
+
"ListMemberAssignmentsResponse": ".listmemberassignments",
|
|
984
|
+
"ListMemberAssignmentsResponseTypedDict": ".listmemberassignments",
|
|
985
|
+
"ListModelsCountGlobals": ".listmodelscount",
|
|
986
|
+
"ListModelsCountGlobalsTypedDict": ".listmodelscount",
|
|
987
|
+
"ListModelsCountRequest": ".listmodelscount",
|
|
988
|
+
"ListModelsCountRequestTypedDict": ".listmodelscount",
|
|
989
|
+
"ListModelsUserGlobals": ".listmodelsuser",
|
|
990
|
+
"ListModelsUserGlobalsTypedDict": ".listmodelsuser",
|
|
991
|
+
"ListModelsUserRequest": ".listmodelsuser",
|
|
992
|
+
"ListModelsUserRequestTypedDict": ".listmodelsuser",
|
|
444
993
|
"ListModelsUserSecurity": ".listmodelsuser",
|
|
445
994
|
"ListModelsUserSecurityTypedDict": ".listmodelsuser",
|
|
446
995
|
"ListProvidersData": ".listproviders",
|
|
447
996
|
"ListProvidersDataTypedDict": ".listproviders",
|
|
997
|
+
"ListProvidersGlobals": ".listproviders",
|
|
998
|
+
"ListProvidersGlobalsTypedDict": ".listproviders",
|
|
999
|
+
"ListProvidersRequest": ".listproviders",
|
|
1000
|
+
"ListProvidersRequestTypedDict": ".listproviders",
|
|
448
1001
|
"ListProvidersResponse": ".listproviders",
|
|
449
1002
|
"ListProvidersResponseTypedDict": ".listproviders",
|
|
1003
|
+
"SendChatCompletionRequestGlobals": ".sendchatcompletionrequest",
|
|
1004
|
+
"SendChatCompletionRequestGlobalsTypedDict": ".sendchatcompletionrequest",
|
|
1005
|
+
"SendChatCompletionRequestRequest": ".sendchatcompletionrequest",
|
|
1006
|
+
"SendChatCompletionRequestRequestTypedDict": ".sendchatcompletionrequest",
|
|
450
1007
|
"SendChatCompletionRequestResponse": ".sendchatcompletionrequest",
|
|
451
1008
|
"SendChatCompletionRequestResponseTypedDict": ".sendchatcompletionrequest",
|
|
1009
|
+
"UpdateGuardrailData": ".updateguardrail",
|
|
1010
|
+
"UpdateGuardrailDataTypedDict": ".updateguardrail",
|
|
1011
|
+
"UpdateGuardrailGlobals": ".updateguardrail",
|
|
1012
|
+
"UpdateGuardrailGlobalsTypedDict": ".updateguardrail",
|
|
1013
|
+
"UpdateGuardrailRequest": ".updateguardrail",
|
|
1014
|
+
"UpdateGuardrailRequestBody": ".updateguardrail",
|
|
1015
|
+
"UpdateGuardrailRequestBodyTypedDict": ".updateguardrail",
|
|
1016
|
+
"UpdateGuardrailRequestTypedDict": ".updateguardrail",
|
|
1017
|
+
"UpdateGuardrailResetIntervalRequest": ".updateguardrail",
|
|
1018
|
+
"UpdateGuardrailResetIntervalResponse": ".updateguardrail",
|
|
1019
|
+
"UpdateGuardrailResponse": ".updateguardrail",
|
|
1020
|
+
"UpdateGuardrailResponseTypedDict": ".updateguardrail",
|
|
452
1021
|
"UpdateKeysData": ".updatekeys",
|
|
453
1022
|
"UpdateKeysDataTypedDict": ".updatekeys",
|
|
1023
|
+
"UpdateKeysGlobals": ".updatekeys",
|
|
1024
|
+
"UpdateKeysGlobalsTypedDict": ".updatekeys",
|
|
454
1025
|
"UpdateKeysLimitReset": ".updatekeys",
|
|
455
1026
|
"UpdateKeysRequest": ".updatekeys",
|
|
456
1027
|
"UpdateKeysRequestBody": ".updatekeys",
|