Configuration
Runtime configuration is stored locally. For bundled apps, the default path is:
text
~/Library/Application Support/WarpLocal/config.yamlFor normal use, open WarpLocal.app and choose Local Adapter Settings... from the app menu. The local web endpoint exists behind that menu, but users usually do not need to visit it directly.
Example
yaml
provider: openai-compatible
base_url: https://api.openai.com/v1
api_key: YOUR_API_KEY
model: gpt-4.1-mini
server:
host: 127.0.0.1
port: 18888Provider examples
OpenAI
yaml
base_url: https://api.openai.com/v1
model: gpt-4.1-miniDeepSeek
yaml
base_url: https://api.deepseek.com
model: deepseek-chatOllama
yaml
base_url: http://127.0.0.1:11434/v1
model: qwen2.5-coderLM Studio
yaml
base_url: http://127.0.0.1:1234/v1
model: local-modelHealth checks
The adapter exposes simple local endpoints:
text
GET /health
GET /settings/status
POST /settings/reloadThese endpoints are useful for smoke tests and packaging checks.