Skip to content

Providers

WakaWiki supports multiple LLM providers. Choose one during wakawiki --init.

Supported Providers

ProviderAPI Key RequiredNotes
OpenAIYesGPT-4, GPT-4o, o-series models
AnthropicYesClaude Sonnet, Claude Opus
DeepSeekYesOpenAI-compatible API
OpenRouterYesUnified API gateway for many models
opencodeNoUses your local opencode CLI
CustomYesAny OpenAI-compatible endpoint

opencode Provider

If you already use opencode, you can run WakaWiki with zero API keys. WakaWiki shells out to your local opencode CLI and uses whatever configuration you already have set up there.

bash
wakawiki --init    # select "opencode"
wakawiki           # uses your existing opencode setup

Custom Provider

For any OpenAI-compatible API (Ollama, vLLM, LM Studio, etc.), select "custom" during wakawiki --init and provide your base URL.

bash
# Example: using a local Ollama instance
WAKAWIKI_PROVIDER=custom
WAKAWIKI_API_KEY=ollama
WAKAWIKI_BASE_URL=http://localhost:11434/v1
WAKAWIKI_MODEL=llama3

Released under the MIT License.