Skip to content
Open
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
4 changes: 3 additions & 1 deletion skills/openrouter-typescript-sdk/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ interface MultimodalMessage {
role: 'user';
content: Array<
| { type: 'input_text'; text: string }
| { type: 'input_image'; imageUrl: string; detail?: 'auto' | 'low' | 'high' }
| { type: 'input_image'; imageUrl: string; detail?: 'auto' | 'low' | 'high' | 'original' }
| {
type: 'image';
source: {
Expand All @@ -749,6 +749,8 @@ interface MultimodalMessage {
}
```

`detail` controls image resolution for vision models. `'original'` is an OpenRouter extension (not in the OpenAI spec) that requests true original-resolution media; it falls back to `'high'` for providers without an original-resolution tier.

### Tool Function Call Message

When the model requests a tool execution:
Expand Down