profundo.ai

SETUP GUIDE

Continue.dev

Configure an OpenAI model with Profundo's custom base URL.

Status: Supported connection; tools unverified

1. Desktop GUI setup

Open Continue's local model configuration from the VS Code extension.

Continue sidebar -> Agent/config selector
Local Config -> Settings gear
Configuration: config.yaml
  1. Open the Continue sidebar and open the Agent/config selector above the chat input.
  2. Open the settings for Local Config to edit `config.yaml`.
  3. Add the Profundo model configuration from the CLI / TUI section and select `gpt-6-astra`.

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.

name: Profundo AI
version: 0.0.1
schema: v1
models:
  - name: gpt-6-astra
    provider: openai
    model: gpt-6-astra
    apiBase: https://api.profundoai.com/v1
    apiKey: <Continue-supported-secret>
    useResponsesApi: false
  1. Open `~/.continue/config.yaml` (or `%USERPROFILE%\.continue\config.yaml` on Windows).
  2. Add the model configuration above using Continue's supported secret mechanism for the API key.
  3. Run Continue CLI with `cn`, or use `cn --config <path>` for another configuration file.

Compatibility note: Direct Chat Completions tool/function-call compatibility is unverified.

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