|
18 | 18 |
|
19 | 19 | # Define package exports |
20 | 20 | __all__ = [ |
| 21 | + "AliasesApi", |
21 | 22 | "AudioApi", |
22 | 23 | "BatchesApi", |
23 | 24 | "BudgetsApi", |
|
31 | 32 | "ModelsApi", |
32 | 33 | "ModerationsApi", |
33 | 34 | "PricingApi", |
| 35 | + "ProvidersApi", |
34 | 36 | "RerankApi", |
35 | 37 | "ResponsesApi", |
| 38 | + "SettingsApi", |
36 | 39 | "UsageApi", |
37 | 40 | "UsersApi", |
38 | 41 | "ApiResponse", |
|
44 | 47 | "ApiKeyError", |
45 | 48 | "ApiAttributeError", |
46 | 49 | "ApiException", |
| 50 | + "AliasRequest", |
| 51 | + "AliasResponse", |
47 | 52 | "AudioSpeechRequest", |
48 | 53 | "BatchRequestItem", |
49 | 54 | "BudgetResponse", |
|
100 | 105 | "CreateKeyRequest", |
101 | 106 | "CreateKeyResponse", |
102 | 107 | "CreateUserRequest", |
| 108 | + "DiscoverableModel", |
| 109 | + "DiscoverableModelsResponse", |
| 110 | + "DiscoverableProvider", |
103 | 111 | "EMBEmbedding", |
104 | 112 | "EMBUsage", |
105 | 113 | "EmbeddingRequest", |
| 114 | + "GatewaySettings", |
106 | 115 | "GuardrailConfig", |
107 | 116 | "HTTPValidationError", |
108 | 117 | "IMGImage", |
|
188 | 197 | "MessagesRequest", |
189 | 198 | "Model", |
190 | 199 | "ModelListResponse", |
| 200 | + "ModelMetadata", |
| 201 | + "ModelMetadataResponse", |
191 | 202 | "ModelObject", |
192 | 203 | "ModelPricingInfo", |
193 | 204 | "ModerationRequest", |
194 | 205 | "ModerationResponse", |
195 | 206 | "ModerationResult", |
196 | 207 | "PricingResponse", |
| 208 | + "ProviderCapabilitiesSchema", |
| 209 | + "ProviderInfoSchema", |
| 210 | + "ProvidersResponse", |
197 | 211 | "RRRerankMeta", |
198 | 212 | "RRRerankResult", |
199 | 213 | "RRRerankUsage", |
|
209 | 223 | "ToolChoice1", |
210 | 224 | "UpdateBudgetRequest", |
211 | 225 | "UpdateKeyRequest", |
| 226 | + "UpdateSettingsRequest", |
212 | 227 | "UpdateUserRequest", |
213 | 228 | "UsageEntry", |
214 | 229 | "UsageLogResponse", |
|
217 | 232 | ] |
218 | 233 |
|
219 | 234 | # import apis into sdk package |
| 235 | +from otari._client.api.aliases_api import AliasesApi as AliasesApi |
220 | 236 | from otari._client.api.audio_api import AudioApi as AudioApi |
221 | 237 | from otari._client.api.batches_api import BatchesApi as BatchesApi |
222 | 238 | from otari._client.api.budgets_api import BudgetsApi as BudgetsApi |
|
230 | 246 | from otari._client.api.models_api import ModelsApi as ModelsApi |
231 | 247 | from otari._client.api.moderations_api import ModerationsApi as ModerationsApi |
232 | 248 | from otari._client.api.pricing_api import PricingApi as PricingApi |
| 249 | +from otari._client.api.providers_api import ProvidersApi as ProvidersApi |
233 | 250 | from otari._client.api.rerank_api import RerankApi as RerankApi |
234 | 251 | from otari._client.api.responses_api import ResponsesApi as ResponsesApi |
| 252 | +from otari._client.api.settings_api import SettingsApi as SettingsApi |
235 | 253 | from otari._client.api.usage_api import UsageApi as UsageApi |
236 | 254 | from otari._client.api.users_api import UsersApi as UsersApi |
237 | 255 |
|
|
247 | 265 | from otari._client.exceptions import ApiException as ApiException |
248 | 266 |
|
249 | 267 | # import models into sdk package |
| 268 | +from otari._client.models.alias_request import AliasRequest as AliasRequest |
| 269 | +from otari._client.models.alias_response import AliasResponse as AliasResponse |
250 | 270 | from otari._client.models.audio_speech_request import AudioSpeechRequest as AudioSpeechRequest |
251 | 271 | from otari._client.models.batch_request_item import BatchRequestItem as BatchRequestItem |
252 | 272 | from otari._client.models.budget_response import BudgetResponse as BudgetResponse |
|
303 | 323 | from otari._client.models.create_key_request import CreateKeyRequest as CreateKeyRequest |
304 | 324 | from otari._client.models.create_key_response import CreateKeyResponse as CreateKeyResponse |
305 | 325 | from otari._client.models.create_user_request import CreateUserRequest as CreateUserRequest |
| 326 | +from otari._client.models.discoverable_model import DiscoverableModel as DiscoverableModel |
| 327 | +from otari._client.models.discoverable_models_response import DiscoverableModelsResponse as DiscoverableModelsResponse |
| 328 | +from otari._client.models.discoverable_provider import DiscoverableProvider as DiscoverableProvider |
306 | 329 | from otari._client.models.emb_embedding import EMBEmbedding as EMBEmbedding |
307 | 330 | from otari._client.models.emb_usage import EMBUsage as EMBUsage |
308 | 331 | from otari._client.models.embedding_request import EmbeddingRequest as EmbeddingRequest |
| 332 | +from otari._client.models.gateway_settings import GatewaySettings as GatewaySettings |
309 | 333 | from otari._client.models.guardrail_config import GuardrailConfig as GuardrailConfig |
310 | 334 | from otari._client.models.http_validation_error import HTTPValidationError as HTTPValidationError |
311 | 335 | from otari._client.models.img_image import IMGImage as IMGImage |
|
391 | 415 | from otari._client.models.messages_request import MessagesRequest as MessagesRequest |
392 | 416 | from otari._client.models.model import Model as Model |
393 | 417 | from otari._client.models.model_list_response import ModelListResponse as ModelListResponse |
| 418 | +from otari._client.models.model_metadata import ModelMetadata as ModelMetadata |
| 419 | +from otari._client.models.model_metadata_response import ModelMetadataResponse as ModelMetadataResponse |
394 | 420 | from otari._client.models.model_object import ModelObject as ModelObject |
395 | 421 | from otari._client.models.model_pricing_info import ModelPricingInfo as ModelPricingInfo |
396 | 422 | from otari._client.models.moderation_request import ModerationRequest as ModerationRequest |
397 | 423 | from otari._client.models.moderation_response import ModerationResponse as ModerationResponse |
398 | 424 | from otari._client.models.moderation_result import ModerationResult as ModerationResult |
399 | 425 | from otari._client.models.pricing_response import PricingResponse as PricingResponse |
| 426 | +from otari._client.models.provider_capabilities_schema import ProviderCapabilitiesSchema as ProviderCapabilitiesSchema |
| 427 | +from otari._client.models.provider_info_schema import ProviderInfoSchema as ProviderInfoSchema |
| 428 | +from otari._client.models.providers_response import ProvidersResponse as ProvidersResponse |
400 | 429 | from otari._client.models.rr_rerank_meta import RRRerankMeta as RRRerankMeta |
401 | 430 | from otari._client.models.rr_rerank_result import RRRerankResult as RRRerankResult |
402 | 431 | from otari._client.models.rr_rerank_usage import RRRerankUsage as RRRerankUsage |
|
412 | 441 | from otari._client.models.tool_choice1 import ToolChoice1 as ToolChoice1 |
413 | 442 | from otari._client.models.update_budget_request import UpdateBudgetRequest as UpdateBudgetRequest |
414 | 443 | from otari._client.models.update_key_request import UpdateKeyRequest as UpdateKeyRequest |
| 444 | +from otari._client.models.update_settings_request import UpdateSettingsRequest as UpdateSettingsRequest |
415 | 445 | from otari._client.models.update_user_request import UpdateUserRequest as UpdateUserRequest |
416 | 446 | from otari._client.models.usage_entry import UsageEntry as UsageEntry |
417 | 447 | from otari._client.models.usage_log_response import UsageLogResponse as UsageLogResponse |
|
0 commit comments