Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .speakeasy/in.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2860,6 +2860,7 @@ components:
cost_quality_tradeoff: 7
enabled: true
id: 'auto-router'
pin_model: false
properties:
allowed_models:
description: 'List of model patterns to filter which models the auto-router can route between. Supports wildcards (e.g., "anthropic/*" matches all Anthropic models). When not specified, uses the default supported models list.'
Expand All @@ -2883,6 +2884,10 @@ components:
enum:
- 'auto-router'
type: 'string'
pin_model:
description: 'When true, reuses the model from the most recent assistant message''s `model` attribute for subsequent turns. Defaults to false.'
example: false
type: 'boolean'
required:
- 'id'
type: 'object'
Expand Down Expand Up @@ -4421,6 +4426,7 @@ components:
description: 'Assistant message for requests and responses'
example:
content: 'The capital of France is Paris.'
model: 'openai/gpt-4o'
role: 'assistant'
properties:
audio:
Expand All @@ -4435,6 +4441,10 @@ components:
description: 'Assistant message content'
images:
$ref: '#/components/schemas/ChatAssistantImages'
model:
description: 'Model that generated this assistant message'
example: 'openai/gpt-4o'
type: 'string'
name:
description: 'Optional name for the assistant'
type: 'string'
Expand Down
Loading