SETUP GUIDE
SillyTavern
Connect SillyTavern's Chat Completion custom OpenAI-compatible profile.
Status: Supported for Chat Completions
1. Desktop GUI setup
Configure Profundo from SillyTavern's API Connections screen.
API Connections -> Chat Completion -> Custom (OpenAI-compatible)
URL: https://api.profundoai.com/v1
API key: PROFUNDO_API_KEY
Model: gpt-6-astra (or claude-fable-5-1 / gpt-5.6-luna)- Open API Connections and select Chat Completion.
- Choose Custom (OpenAI-compatible) and enter the URL, key, and model.
- Use Test Message to confirm the connection.
2. CLI / TUI setup
This tool does not provide a separate documented CLI / TUI setup. Use the GUI setup above.
Optional alternatives
Manual model ID or profile
If the model list does not populate, enter `gpt-6-astra` (or `claude-fable-5-1` / `gpt-5.6-luna`) manually or save the working connection as a profile.
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.