summaryrefslogtreecommitdiff
path: root/hexai/config.toml
blob: db868607e65ce095d63c9aa442f7bd66aeb465b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Hexai Configuration File

[mcp]
# Directory where MCP prompts are stored
prompts_dir = "~/.local/hexai/data/prompts"

# Enable automatic syncing of MCP prompts to slash command files
slashcommand_sync = true

# Directory where slash command files will be written
slashcommand_dir = "~/.cursor/commands"

# Default LLM provider for chat / CLI / code actions. The API key is read from
# the environment (HEXAI_OLLAMA_API_KEY, falling back to OLLAMA_API_KEY).
[provider]
name = "ollama"

[ollama]
model       = "minimax-m2.1:cloud"
base_url    = "https://ollama.com"
temperature = 0.2

# Use a low-latency model for in-editor completion.
[[models.completion]]
provider    = "ollama"
model       = "qwen3-coder:480b-cloud"
temperature = 0.0