Sweet! CLI

Troubleshooting Sweet! CLI

Solutions to common issues, diagnostic commands, and debugging techniques for Sweet! CLI.

Quick Start

From the repo root:

./sweet --help
./sweet login
./sweet

Install from source

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
chmod +x sweet

Authentication

  • Billing (recommended): ./sweet login (token stored in ~/.sweet/config.json)
  • Direct mode: ./sweet --no-billing --provider deepseek "your task" with DEEPSEEK_API_KEY set

Performance

  • Try a smaller/faster model: ./sweet --model deepseek-chat "your task"
  • Break large tasks into smaller steps

Debugging

Enable JSONL logs for debugging:

./sweet --log --log-file conversation_logs.jsonl "your task"

Still Stuck?