1
0

[loop-cycle-52] fix: remove all qwen3.5 references (#182) (#190)

This commit is contained in:
2026-03-15 12:34:21 -04:00
parent efef0cd7a2
commit 96c7e6deae
10 changed files with 27 additions and 42 deletions

View File

@@ -283,12 +283,12 @@ def create_aider_tool(base_path: Path):
def __init__(self, base_dir: Path):
self.base_dir = base_dir
def run_aider(self, prompt: str, model: str = "qwen3.5:latest") -> str:
def run_aider(self, prompt: str, model: str = "qwen3:30b") -> str:
"""Run Aider to generate code changes.
Args:
prompt: What you want Aider to do (e.g., "add a fibonacci function")
model: Ollama model to use (default: qwen3.5:latest)
model: Ollama model to use (default: qwen3:30b)
Returns:
Aider's response with the code changes made
@@ -788,7 +788,7 @@ def _ai_tool_catalog() -> dict:
},
"aider": {
"name": "Aider AI Assistant",
"description": "Local AI coding assistant using Ollama (qwen3.5:latest or deepseek-coder)",
"description": "Local AI coding assistant using Ollama (qwen3:30b or deepseek-coder)",
"available_in": ["forge", "orchestrator"],
},
}