Commit 4c3e991

mo khan <mo@mokhan.ca>
2025-06-23 20:38:42
fix: change default model to qwen2.5:latest for tool calling support
- Update default model from deepseek-coder-v2:16b to qwen2.5:latest - deepseek-coder-v2:16b does not support Ollama tool calling - qwen2.5:latest confirmed working with tool calling API - Update help text and popular models list accordingly - Del now works out of the box with tool calling enabled 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent e2c6b1b
Changed files (1)
cmd
cmd/del/main.go
@@ -2391,7 +2391,7 @@ func (d *Del) Start(ctx context.Context) {
 }
 
 func main() {
-	var model = flag.String("model", "deepseek-coder-v2:16b", "Ollama model to use")
+	var model = flag.String("model", "qwen2.5:latest", "Ollama model to use")
 	var help = flag.Bool("help", false, "Show help message")
 	
 	flag.Parse()
@@ -2403,17 +2403,17 @@ Usage:
   del [flags]
 
 Flags:
-  --model string     Ollama model to use (default: deepseek-coder-v2:16b)
+  --model string     Ollama model to use (default: qwen2.5:latest)
   --help            Show this help message
 
 Popular Models:
-  deepseek-coder-v2:16b    # Best for coding (default)
-  codellama:34b           # Meta's coding model  
-  qwen2.5-coder:32b       # Alibaba's coding model
+  qwen2.5:latest          # Best for coding with tools (default)
+  mistral:latest          # General purpose model
+  codellama:7b            # Meta's coding model (local)
 
 Examples:
-  del                              # Use default model
-  del --model codellama:34b        # Use CodeLlama
+  del                              # Use default model (qwen2.5)
+  del --model mistral:latest       # Use Mistral
 
 Del now features Claude Code style real-time progress and streaming:
   "list files", "read main.go", "check git status", "run ls -la", "analyze the code"