fix: crush providers configuration (#30)

This commit is contained in:
2025-08-07 11:04:51 -06:00
committed by GitHub
parent bae951cf7c
commit a709071d10
3 changed files with 62 additions and 346 deletions

View File

@@ -5,7 +5,7 @@ import pytest
from typing import Dict
IMAGES = ["goose", "aider", "opencode"] # fixme: crush
IMAGES = ["goose", "aider", "opencode", "crush"]
MODELS = [
"anthropic/claude-sonnet-4-20250514",
@@ -19,7 +19,7 @@ COMMANDS: Dict[str, str] = {
"goose": "goose run -t '{prompt}' --no-session --quiet",
"aider": "aider --message '{prompt}' --yes-always --no-fancy-input --no-check-update --no-auto-commits",
"opencode": "opencode run '{prompt}'",
"crush": "crush run '{prompt}'",
"crush": "crush run -q '{prompt}'",
}