yaak 0.1.4

Translate natural language to bash commands using an OpenAI-compatible LLM
# yaak configuration
# Place this file at: ~/.config/yaak/config.toml

# API base URL
# The provider is auto-detected from the URL.
# Examples:
#   OpenAI:      "https://api.openai.com/v1"
#   Anthropic:   "https://api.anthropic.com/v1"
#   Gemini:      "https://generativelanguage.googleapis.com/v1beta"
#   Ollama:      "http://localhost:11434/v1"
#   Together:    "https://api.together.xyz/v1"
#   OpenRouter:  "https://openrouter.ai/api/v1"
#   LM Studio:   "http://localhost:1234/v1"
api_base = "https://api.anthropic.com/v1"

# Your API key
api_key = "sk-ant-..."

# Model to use (defaults: gpt-4o-mini for OpenAI, claude-sonnet-4-6 for Anthropic, gemini-2.5-flash for Gemini)
model = "claude-sonnet-4-6"

# UI language (en, de, es, fr, pt, zh, ja, ko)
# Falls back to system locale if not set.
# language = "en"

# Allow destructive commands without confirmation (default: false)
# When true, destructive commands (rm, dd, mkfs, etc.) show a warning
# but skip the confirmation prompt. Same as passing --force.
# allow_destructive = false