model: "haiku" shorthand

This commit is contained in:
müde 2026-05-15 14:44:25 +02:00
parent ae4a3f1b77
commit 26298470a5
2 changed files with 9 additions and 1 deletions

View file

@ -0,0 +1,8 @@
{
"permissions": {
"allow": [
"Bash(git add *)",
"Bash(git commit *)"
]
}
}

View file

@ -181,7 +181,7 @@ async fn invoke_claude(prompt: &str, mcp_config: &Path) -> Result<String> {
let out = Command::new("claude") let out = Command::new("claude")
.arg("--print") .arg("--print")
.arg("--model") .arg("--model")
.arg("claude-haiku-4-5-20251001") .arg("haiku")
.arg("--mcp-config") .arg("--mcp-config")
.arg(mcp_config) .arg(mcp_config)
.arg("--tools") .arg("--tools")