profundo.ai

SETUP GUIDE

Continue.dev

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

Status: Supported connection; tools unverified

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.

Model configuration
Provider: OpenAI
Base URL: https://api.profundoai.com/v1
API key: PROFUNDO_API_KEY
Model: glm-5.2 (or minimax-m3 / nemotron-ultra)
  1. Open Continue's model configuration.
  2. Choose the OpenAI provider and enter the custom base URL, key, and model.
  3. Select `glm-5.2`.

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

Optional alternatives

Advanced: config.yaml

Use Continue's supported secret mechanism for the API key rather than committing a key to `config.yaml`.

name: Profundo AI
version: 0.0.1
schema: v1
models:
  - name: glm-5.2
    provider: openai
    model: glm-5.2
    apiBase: https://api.profundoai.com/v1
    apiKey: <Continue-supported-secret>
    useResponsesApi: 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