|
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", |
|
194 | 196 | "ResponsesRequest", |
195 | 197 | "SetPricingRequest", |
196 | 198 | "Source", |
| 199 | + "Stop", |
197 | 200 | "System", |
198 | 201 | "System1", |
199 | 202 | "ToolCallsInner", |
200 | 203 | "ToolChoice", |
| 204 | + "ToolChoice1", |
201 | 205 | "UpdateBudgetRequest", |
202 | 206 | "UpdateKeyRequest", |
203 | 207 | "UpdateUserRequest", |
|
213 | 217 | from otari._client.api.budgets_api import BudgetsApi as BudgetsApi |
214 | 218 | from otari._client.api.chat_api import ChatApi as ChatApi |
215 | 219 | from otari._client.api.embeddings_api import EmbeddingsApi as EmbeddingsApi |
| 220 | +from otari._client.api.files_api import FilesApi as FilesApi |
216 | 221 | from otari._client.api.health_api import HealthApi as HealthApi |
217 | 222 | from otari._client.api.images_api import ImagesApi as ImagesApi |
218 | 223 | from otari._client.api.keys_api import KeysApi as KeysApi |
|
283 | 288 | from otari._client.models.content8 import Content8 as Content8 |
284 | 289 | from otari._client.models.content9_inner import Content9Inner as Content9Inner |
285 | 290 | from otari._client.models.content_any_of_inner import ContentAnyOfInner as ContentAnyOfInner |
| 291 | +from otari._client.models.conversation import Conversation as Conversation |
286 | 292 | from otari._client.models.count_tokens_request import CountTokensRequest as CountTokensRequest |
287 | 293 | from otari._client.models.count_tokens_response import CountTokensResponse as CountTokensResponse |
288 | 294 | from otari._client.models.create_batch_request import CreateBatchRequest as CreateBatchRequest |
|
388 | 394 | from otari._client.models.responses_request import ResponsesRequest as ResponsesRequest |
389 | 395 | from otari._client.models.set_pricing_request import SetPricingRequest as SetPricingRequest |
390 | 396 | from otari._client.models.source import Source as Source |
| 397 | +from otari._client.models.stop import Stop as Stop |
391 | 398 | from otari._client.models.system import System as System |
392 | 399 | from otari._client.models.system1 import System1 as System1 |
393 | 400 | from otari._client.models.tool_calls_inner import ToolCallsInner as ToolCallsInner |
394 | 401 | from otari._client.models.tool_choice import ToolChoice as ToolChoice |
| 402 | +from otari._client.models.tool_choice1 import ToolChoice1 as ToolChoice1 |
395 | 403 | from otari._client.models.update_budget_request import UpdateBudgetRequest as UpdateBudgetRequest |
396 | 404 | from otari._client.models.update_key_request import UpdateKeyRequest as UpdateKeyRequest |
397 | 405 | from otari._client.models.update_user_request import UpdateUserRequest as UpdateUserRequest |
|
0 commit comments