1
0
forked from agents/opencode

Compare commits

...

5 Commits

3 changed files with 17 additions and 1 deletions

5
AGENTS.md Normal file
View File

@@ -0,0 +1,5 @@
# AGENTS.md
- Always reply in Simplified Chinese by default.
- Use English only if the user explicitly asks for it.
- Keep code, commands, file paths, logs, and identifiers unchanged.

View File

@@ -18,11 +18,16 @@
"ultrabrain": { "model": "openai/gpt-5.4", "variant": "xhigh" }, "ultrabrain": { "model": "openai/gpt-5.4", "variant": "xhigh" },
"deep": { "model": "openai/gpt-5.3-codex", "variant": "medium" }, "deep": { "model": "openai/gpt-5.3-codex", "variant": "medium" },
"artistry": { "model": "google/gemini-3.1-pro-preview", "variant": "high" }, "artistry": { "model": "google/gemini-3.1-pro-preview", "variant": "high" },
"quick": { "model": "anthropic/claude-haiku-4-5" }, "quick": { "model": "openai/gpt-5.4-mini" },
"unspecified-low": { "model": "anthropic/claude-sonnet-4-6" }, "unspecified-low": { "model": "anthropic/claude-sonnet-4-6" },
"unspecified-high": { "model": "anthropic/claude-opus-4-6", "variant": "high" }, "unspecified-high": { "model": "anthropic/claude-opus-4-6", "variant": "high" },
"writing": { "model": "google/gemini-3-flash-preview" } "writing": { "model": "google/gemini-3-flash-preview" }
}, },
"experimental": {
"dynamic_context_pruning": {
"enabled": true
}
},
"git_master": { "git_master": {
"commit_footer": false, "commit_footer": false,
"include_co_authored_by": false "include_co_authored_by": false

View File

@@ -50,6 +50,12 @@
"reasoning": true, "reasoning": true,
"modalities": { "input": ["text", "image", "pdf"], "output": ["text"] }, "modalities": { "input": ["text", "image", "pdf"], "output": ["text"] },
"limit": { "context": 400000, "input": 272000, "output": 128000 } "limit": { "context": 400000, "input": 272000, "output": 128000 }
},
"gpt-5.4-mini": {
"name": "GPT-5.4 mini",
"reasoning": true,
"modalities": { "input": ["text", "image"], "output": ["text"] },
"limit": { "context": 400000, "input": 272000, "output": 128000 }
} }
} }
}, },