Refactor model identifiers in coder and reviewer droids; add settings.json for configuration management
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
name: coder
|
name: coder
|
||||||
description: Specialized for large code generation using GPT 5.3 Codex. Generates production-ready code based on detailed specifications.
|
description: Specialized for large code generation using GPT 5.3 Codex. Generates production-ready code based on detailed specifications.
|
||||||
model: custom:Gpt-5.3-Codex-(BYOK)-3
|
model: custom:Gpt-5.3-Codex
|
||||||
tools: ["Read", "Edit", "Create", "ApplyPatch", "LS", "Grep", "Execute"]
|
tools: ["Read", "Edit", "Create", "ApplyPatch", "LS", "Grep", "Execute"]
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
name: reviewer
|
name: reviewer
|
||||||
description: Critical code reviewer using Opus 4.6. Finds bugs, security issues, and logic errors. Never generates code - only critiques.
|
description: Critical code reviewer using Opus 4.6. Finds bugs, security issues, and logic errors. Never generates code - only critiques.
|
||||||
model: custom:Opus-4.6-(BYOK)-2
|
model: custom:Opus-4.6
|
||||||
reasoningEffort: high
|
reasoningEffort: high
|
||||||
tools: ["Read", "Execute"]
|
tools: ["Read", "Execute"]
|
||||||
---
|
---
|
||||||
|
|||||||
@@ -33,9 +33,25 @@
|
|||||||
"maxOutputTokens": 128000,
|
"maxOutputTokens": 128000,
|
||||||
"extraArgs": {
|
"extraArgs": {
|
||||||
"parallel_tool_calls": true,
|
"parallel_tool_calls": true,
|
||||||
"thinking": {
|
"output_config": {
|
||||||
"type": "enabled",
|
"effort": "max"
|
||||||
"budget_tokens": 120000
|
}
|
||||||
|
},
|
||||||
|
"noImageSupport": true,
|
||||||
|
"provider": "anthropic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"model": "Sonnet-4.6",
|
||||||
|
"id": "custom:Sonnet-4.6-(BYOK)-2",
|
||||||
|
"index": 2,
|
||||||
|
"baseUrl": "http://localhost:8383",
|
||||||
|
"apiKey": "sk-abcd",
|
||||||
|
"displayName": "Sonnet 4.6 (BYOK)",
|
||||||
|
"maxOutputTokens": 64000,
|
||||||
|
"extraArgs": {
|
||||||
|
"parallel_tool_calls": true,
|
||||||
|
"output_config": {
|
||||||
|
"effort": "max"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noImageSupport": true,
|
"noImageSupport": true,
|
||||||
Reference in New Issue
Block a user