yaak 0.0.3

Translate natural language to bash commands using an OpenAI-compatible LLM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# yaak configuration
# Place this file at: ~/.config/yaak/config.toml

# OpenAI-compatible API base URL
# Examples:
#   OpenAI:      "https://api.openai.com/v1"
#   Ollama:      "http://localhost:11434/v1"
#   Together:    "https://api.together.xyz/v1"
#   OpenRouter:  "https://openrouter.ai/api/v1"
api_base = "https://api.openai.com/v1"

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

# Model to use
model = "gpt-4o-mini"