docs(openai): document GPT-5.5 defaults

This commit is contained in:
Peter Steinberger
2026-04-23 20:01:02 +01:00
parent cd5bc2fc93
commit 89051c6bf6
33 changed files with 128 additions and 126 deletions

View File

@@ -81,7 +81,7 @@ Each `models[]` entry can be **provider** or **CLI**:
{
type: "provider", // default if omitted
provider: "openai",
model: "gpt-5.4-mini",
model: "gpt-5.5",
prompt: "Describe the image in <= 500 chars.",
maxChars: 500,
maxBytes: 10485760,
@@ -278,7 +278,7 @@ File-attachment extraction behavior:
tools: {
media: {
models: [
{ provider: "openai", model: "gpt-5.4-mini", capabilities: ["image"] },
{ provider: "openai", model: "gpt-5.5", capabilities: ["image"] },
{
provider: "google",
model: "gemini-3-flash-preview",
@@ -359,7 +359,7 @@ File-attachment extraction behavior:
maxBytes: 10485760,
maxChars: 500,
models: [
{ provider: "openai", model: "gpt-5.4-mini" },
{ provider: "openai", model: "gpt-5.5" },
{ provider: "anthropic", model: "claude-opus-4-6" },
{
type: "cli",
@@ -422,7 +422,7 @@ File-attachment extraction behavior:
When media understanding runs, `/status` includes a short summary line:
```
📎 Media: image ok (openai/gpt-5.4-mini) · audio skipped (maxBytes)
📎 Media: image ok (openai/gpt-5.5) · audio skipped (maxBytes)
```
This shows percapability outcomes and the chosen provider/model when applicable.