Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions sdk-endpoints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ POST /api/v1/auth/session # dashboard-only
# Deployment bootstrap: tells the dashboard shell which deployment served it, so
# it exists for a browser deciding what to render. An SDK already knows.
GET /api/v1/bootstrap # dashboard-only
GET /api/v1/overview # dashboard-only: one page's strips, not a resource
DELETE /api/v1/auth/session # dashboard-only
# Setting the dashboard sign-in password: the other half of the same browser
# flow. An SDK authenticates with the master key or an API key and never holds
Expand Down
12 changes: 11 additions & 1 deletion src/otari/_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down Expand Up @@ -47,6 +47,7 @@
"OrganizationUsageApi",
"OrganizationsApi",
"OtelApi",
"OverviewApi",
"PlaygroundApi",
"PricingApi",
"ProviderKeysApi",
Expand Down Expand Up @@ -103,6 +104,7 @@
"AgentTelemetryUsage",
"AliasRequest",
"AliasResponse",
"AllocationHealthResponse",
"Annotations",
"ApiKeyId",
"AppliedEditsInner",
Expand Down Expand Up @@ -248,6 +250,7 @@
"InvitationPreviewPublic",
"InviteOrganizationMemberRequest",
"InviteOrganizationMemberResultPublic",
"JudgeVerdictRequest",
"KeyInfo",
"KnownProviderSchema",
"KnownProviderSummarySchema",
Expand Down Expand Up @@ -446,6 +449,7 @@
"OrganizationScopedBudgetUpdate",
"OrganizationScopedBudgetsPublic",
"OutputShape",
"OverviewSummaryResponse",
"PasskeySessionResponse",
"PasswordResponse",
"PendingOrganizationInvitationPublic",
Expand Down Expand Up @@ -612,6 +616,7 @@
"WorkspaceWebSearchConfigPublic",
"WorkspaceWebSearchConfigUpdate",
"WorkspacesPublic",
"WorstAllocationResponse",
]

# import apis into sdk package
Expand Down Expand Up @@ -644,6 +649,7 @@
from otari._client.api.organization_usage_api import OrganizationUsageApi as OrganizationUsageApi
from otari._client.api.organizations_api import OrganizationsApi as OrganizationsApi
from otari._client.api.otel_api import OtelApi as OtelApi
from otari._client.api.overview_api import OverviewApi as OverviewApi
from otari._client.api.playground_api import PlaygroundApi as PlaygroundApi
from otari._client.api.pricing_api import PricingApi as PricingApi
from otari._client.api.provider_keys_api import ProviderKeysApi as ProviderKeysApi
Expand Down Expand Up @@ -704,6 +710,7 @@
from otari._client.models.agent_telemetry_usage import AgentTelemetryUsage as AgentTelemetryUsage
from otari._client.models.alias_request import AliasRequest as AliasRequest
from otari._client.models.alias_response import AliasResponse as AliasResponse
from otari._client.models.allocation_health_response import AllocationHealthResponse as AllocationHealthResponse
from otari._client.models.annotations import Annotations as Annotations
from otari._client.models.api_key_id import ApiKeyId as ApiKeyId
from otari._client.models.applied_edits_inner import AppliedEditsInner as AppliedEditsInner
Expand Down Expand Up @@ -849,6 +856,7 @@
from otari._client.models.invitation_preview_public import InvitationPreviewPublic as InvitationPreviewPublic
from otari._client.models.invite_organization_member_request import InviteOrganizationMemberRequest as InviteOrganizationMemberRequest
from otari._client.models.invite_organization_member_result_public import InviteOrganizationMemberResultPublic as InviteOrganizationMemberResultPublic
from otari._client.models.judge_verdict_request import JudgeVerdictRequest as JudgeVerdictRequest
from otari._client.models.key_info import KeyInfo as KeyInfo
from otari._client.models.known_provider_schema import KnownProviderSchema as KnownProviderSchema
from otari._client.models.known_provider_summary_schema import KnownProviderSummarySchema as KnownProviderSummarySchema
Expand Down Expand Up @@ -1047,6 +1055,7 @@
from otari._client.models.organization_scoped_budget_update import OrganizationScopedBudgetUpdate as OrganizationScopedBudgetUpdate
from otari._client.models.organization_scoped_budgets_public import OrganizationScopedBudgetsPublic as OrganizationScopedBudgetsPublic
from otari._client.models.output_shape import OutputShape as OutputShape
from otari._client.models.overview_summary_response import OverviewSummaryResponse as OverviewSummaryResponse
from otari._client.models.passkey_session_response import PasskeySessionResponse as PasskeySessionResponse
from otari._client.models.password_response import PasswordResponse as PasswordResponse
from otari._client.models.pending_organization_invitation_public import PendingOrganizationInvitationPublic as PendingOrganizationInvitationPublic
Expand Down Expand Up @@ -1213,4 +1222,5 @@
from otari._client.models.workspace_web_search_config_public import WorkspaceWebSearchConfigPublic as WorkspaceWebSearchConfigPublic
from otari._client.models.workspace_web_search_config_update import WorkspaceWebSearchConfigUpdate as WorkspaceWebSearchConfigUpdate
from otari._client.models.workspaces_public import WorkspacesPublic as WorkspacesPublic
from otari._client.models.worst_allocation_response import WorstAllocationResponse as WorstAllocationResponse

2 changes: 1 addition & 1 deletion src/otari/_client/_spec_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__spec_version__ = "0.0.0-dev"
__spec_version__ = "0.6.5"
1 change: 1 addition & 0 deletions src/otari/_client/api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
from otari._client.api.organization_usage_api import OrganizationUsageApi
from otari._client.api.organizations_api import OrganizationsApi
from otari._client.api.otel_api import OtelApi
from otari._client.api.overview_api import OverviewApi
from otari._client.api.playground_api import PlaygroundApi
from otari._client.api.pricing_api import PricingApi
from otari._client.api.provider_keys_api import ProviderKeysApi
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/admin_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/agent_telemetry_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/aliases_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/audio_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/auth_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/batches_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/bootstrap_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/budgets_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/catalog_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/chat_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/embeddings_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/files_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/health_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/hooks_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/images_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/invitations_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/keys_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/mcp_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/mcp_servers_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/messages_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/models_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/moderations_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/organization_budgets_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/organization_guardrails_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/organization_keys_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/organization_pricing_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/organization_usage_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/organizations_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
2 changes: 1 addition & 1 deletion src/otari/_client/api/otel_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Otari, an OpenAI-compatible LLM gateway with API key management

The version of the OpenAPI document: 0.0.0-dev
The version of the OpenAPI document: 0.6.5
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
Expand Down
Loading
Loading