|
3 | 3 | # flake8: noqa |
4 | 4 |
|
5 | 5 | """ |
6 | | - otari-gateway |
| 6 | + otari |
7 | 7 |
|
8 | | - A clean FastAPI gateway for otari with API key management |
| 8 | + Otari, an OpenAI-compatible LLM gateway with API key management |
9 | 9 |
|
10 | 10 | The version of the OpenAPI document: 0.0.0-dev |
11 | 11 | Generated by OpenAPI Generator (https://openapi-generator.tech) |
|
23 | 23 | "BudgetsApi", |
24 | 24 | "ChatApi", |
25 | 25 | "EmbeddingsApi", |
| 26 | + "FilesApi", |
26 | 27 | "HealthApi", |
27 | 28 | "ImagesApi", |
28 | 29 | "KeysApi", |
|
89 | 90 | "Content8", |
90 | 91 | "Content9Inner", |
91 | 92 | "ContentAnyOfInner", |
| 93 | + "Conversation", |
92 | 94 | "CountTokensRequest", |
93 | 95 | "CountTokensResponse", |
94 | 96 | "CreateBatchRequest", |
|
102 | 104 | "EmbeddingRequest", |
103 | 105 | "GuardrailConfig", |
104 | 106 | "HTTPValidationError", |
| 107 | + "IMGImage", |
| 108 | + "IMGUsage", |
| 109 | + "IMGUsageInputTokensDetails", |
| 110 | + "IMGUsageOutputTokensDetails", |
105 | 111 | "ImageGenerationRequest", |
| 112 | + "ImagesResponse", |
106 | 113 | "Input", |
107 | 114 | "Input1", |
108 | 115 | "KeyInfo", |
|
194 | 201 | "ResponsesRequest", |
195 | 202 | "SetPricingRequest", |
196 | 203 | "Source", |
| 204 | + "Stop", |
197 | 205 | "System", |
198 | | - "System1", |
199 | 206 | "ToolCallsInner", |
200 | 207 | "ToolChoice", |
| 208 | + "ToolChoice1", |
201 | 209 | "UpdateBudgetRequest", |
202 | 210 | "UpdateKeyRequest", |
203 | 211 | "UpdateUserRequest", |
|
213 | 221 | from otari._client.api.budgets_api import BudgetsApi as BudgetsApi |
214 | 222 | from otari._client.api.chat_api import ChatApi as ChatApi |
215 | 223 | from otari._client.api.embeddings_api import EmbeddingsApi as EmbeddingsApi |
| 224 | +from otari._client.api.files_api import FilesApi as FilesApi |
216 | 225 | from otari._client.api.health_api import HealthApi as HealthApi |
217 | 226 | from otari._client.api.images_api import ImagesApi as ImagesApi |
218 | 227 | from otari._client.api.keys_api import KeysApi as KeysApi |
|
283 | 292 | from otari._client.models.content8 import Content8 as Content8 |
284 | 293 | from otari._client.models.content9_inner import Content9Inner as Content9Inner |
285 | 294 | from otari._client.models.content_any_of_inner import ContentAnyOfInner as ContentAnyOfInner |
| 295 | +from otari._client.models.conversation import Conversation as Conversation |
286 | 296 | from otari._client.models.count_tokens_request import CountTokensRequest as CountTokensRequest |
287 | 297 | from otari._client.models.count_tokens_response import CountTokensResponse as CountTokensResponse |
288 | 298 | from otari._client.models.create_batch_request import CreateBatchRequest as CreateBatchRequest |
|
296 | 306 | from otari._client.models.embedding_request import EmbeddingRequest as EmbeddingRequest |
297 | 307 | from otari._client.models.guardrail_config import GuardrailConfig as GuardrailConfig |
298 | 308 | from otari._client.models.http_validation_error import HTTPValidationError as HTTPValidationError |
| 309 | +from otari._client.models.img_image import IMGImage as IMGImage |
| 310 | +from otari._client.models.img_usage import IMGUsage as IMGUsage |
| 311 | +from otari._client.models.img_usage_input_tokens_details import IMGUsageInputTokensDetails as IMGUsageInputTokensDetails |
| 312 | +from otari._client.models.img_usage_output_tokens_details import IMGUsageOutputTokensDetails as IMGUsageOutputTokensDetails |
299 | 313 | from otari._client.models.image_generation_request import ImageGenerationRequest as ImageGenerationRequest |
| 314 | +from otari._client.models.images_response import ImagesResponse as ImagesResponse |
300 | 315 | from otari._client.models.input import Input as Input |
301 | 316 | from otari._client.models.input1 import Input1 as Input1 |
302 | 317 | from otari._client.models.key_info import KeyInfo as KeyInfo |
|
388 | 403 | from otari._client.models.responses_request import ResponsesRequest as ResponsesRequest |
389 | 404 | from otari._client.models.set_pricing_request import SetPricingRequest as SetPricingRequest |
390 | 405 | from otari._client.models.source import Source as Source |
| 406 | +from otari._client.models.stop import Stop as Stop |
391 | 407 | from otari._client.models.system import System as System |
392 | | -from otari._client.models.system1 import System1 as System1 |
393 | 408 | from otari._client.models.tool_calls_inner import ToolCallsInner as ToolCallsInner |
394 | 409 | from otari._client.models.tool_choice import ToolChoice as ToolChoice |
| 410 | +from otari._client.models.tool_choice1 import ToolChoice1 as ToolChoice1 |
395 | 411 | from otari._client.models.update_budget_request import UpdateBudgetRequest as UpdateBudgetRequest |
396 | 412 | from otari._client.models.update_key_request import UpdateKeyRequest as UpdateKeyRequest |
397 | 413 | from otari._client.models.update_user_request import UpdateUserRequest as UpdateUserRequest |
|
0 commit comments