This commit is contained in:
2026-04-02 11:12:09 +00:00
parent 8def00f368
commit 69697c822c

View File

@@ -25,8 +25,8 @@ in {
enable = true; enable = true;
package = inputs'.llm-agents.packages.opencode; package = inputs'.llm-agents.packages.opencode;
settings = { settings = {
model = "anthropic/claude-opus-4-6"; model = "openai/gpt-5.4";
small_model = "anthropic/claude-haiku-4-5"; small_model = "openai/gpt-5.1-mini";
theme = "rosepine"; theme = "rosepine";
plugin = [ plugin = [
"opencode-claude-auth" "opencode-claude-auth"
@@ -117,14 +117,17 @@ in {
websearch = "allow"; websearch = "allow";
codesearch = "allow"; codesearch = "allow";
}; };
agent = { agent = {
plan = { build = {
model = "anthropic/claude-opus-4-6"; disable = true;
};
explore = {
model = "anthropic/claude-haiku-4-5";
};
}; };
plan = {
disable = true;
};
explore = {
model = "openai/gpt-5.1-mini";
};
};
instructions = [ instructions = [
"CLAUDE.md" "CLAUDE.md"
"AGENT.md" "AGENT.md"