profundo.ai

SETUP GUIDE

Zed

Add Profundo through Zed's OpenAI-compatible LLM provider settings.

Status: Supported for chat; tools disabled

1. Recommended setup

After signup, verification, and membership activation, issue a key in the dashboard. It is displayed once; keep it in a local secret store.

Agent Settings -> LLM Providers -> Add Provider
Provider: profundo
Base URL: https://api.profundoai.com/v1
Model: glm-5.2 (or minimax-m3 / nemotron-ultra)
Model context limit: use the documented or known model context configuration
  1. Open Agent Settings, then LLM Providers, and choose Add Provider.
  2. Enter provider `profundo`, the base URL, `glm-5.2` (or another available model), and a documented or known context limit.
  3. Set the key through the UI/keychain or `PROFUNDO_API_KEY`, never `settings.json`.

Compatibility note: Do not invent a context window value. Tool use is disabled for this provider configuration.

Optional alternatives

Advanced: settings.json

Keep the API key outside `settings.json`; use Zed's UI/keychain or `PROFUNDO_API_KEY`.

{
  "language_models": {
    "openai_compatible": {
      "profundo": {
        "base_url": "https://api.profundoai.com/v1",
        "model": "glm-5.2",
        "capabilities": { "chat_completions": true, "tools": false }
      }
    }
  }
}

2. Verify your key

Set PROFUNDO_API_KEY in your shell, then run:

curl https://api.profundoai.com/v1/chat/completions \
  -H "Authorization: Bearer $PROFUNDO_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"minimax-m3","messages":[{"role":"user","content":"Say hello"}]}'

Use glm-5.2, minimax-m3, or nemotron-ultra with https://api.profundoai.com/v1.

Official documentation