profundo.ai

SETUP GUIDE

Zed

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

Status: Supported for chat; tools disabled

1. Desktop GUI setup

Add Profundo from Zed's AI provider settings.

Agent Settings -> LLM Providers -> Add Provider
Provider: profundo
Base URL: https://api.profundoai.com/v1
Model: gpt-6-astra (or claude-fable-5-1 / gpt-5.6-luna)
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, `gpt-6-astra` (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`.

2. CLI / TUI setup

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

{
  "language_models": {
    "openai_compatible": {
      "profundo": {
        "api_url": "https://api.profundoai.com/v1",
        "available_models": [{
          "name": "gpt-6-astra",
          "max_tokens": <verified-context-limit>,
          "capabilities": { "chat_completions": true, "tools": false }
        }]
      }
    }
  }
}
  1. Open Zed's `settings.json` and add the non-secret provider metadata above.
  2. Set the API key through Zed's UI/keychain or `PROFUNDO_API_KEY`, never in `settings.json`.
  3. Restart or reload Zed and select the configured model.

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

3. 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":"gpt-6-astra","messages":[{"role":"user","content":"Say hello"}]}'

Use any model returned by GET /v1/models with https://api.profundoai.com/v1.

Official documentation