# 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 = "gemma4:31b-cloud" # Smaller Gemma variants on Ollama Cloud — uncomment one if gemma4:31b-cloud # becomes too slow: # model = "gemma3:27b" # model = "gemma3:12b" # model = "gemma3:4b" base_url = "https://ollama.com" temperature = 0.2 # In-code auto-completion uses qwen3-coder-next on Ollama Cloud — a # coding-specialized model offering a good balance of speed and quality. [[models.completion]] provider = "ollama" model = "qwen3-coder-next:cloud" # Other cloud variants — uncomment one if qwen3-coder-next:cloud is not # the right fit: # model = "ministral-3:14b-cloud" # model = "devstral-small-2:24b-cloud" # model = "gemma4:31b-cloud" # model = "gemma3:12b" temperature = 0.2