Commit 4c3e991
Changed files (1)
cmd
del
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"