AI Tool Setup
Other AI Tools
Connect any client that supports OpenAI-compatible or Anthropic-compatible endpoints.
Use this guide when your tool is not listed, but it lets you enter an API key, base URL, and model name.
Before You Start
You need one Felo API Platform key. The same key works across model protocols, agent clients, Search, Web Fetch, PPT, Mindmap, LiveDocs, X Search, YouTube Subtitling, Landing Page, and SuperAgent APIs.
export FELO_API_KEY="YOUR_API_KEY"Recommended Setup
| Item | Value |
|---|---|
| Best for | custom clients, API testing tools, internal agents, and low-code automation |
| Protocol | OpenAI-compatible or Anthropic-compatible endpoint |
| Base URL | https://openapi.felo.ai/api/v1 |
| Model example | claude-sonnet-4-6 |
| API key | Your FELO_API_KEY |
Configure Other AI Tools
Set the environment variables first:
export FELO_API_KEY="YOUR_API_KEY"
export OPENAI_API_KEY="$FELO_API_KEY"
export OPENAI_BASE_URL="https://openapi.felo.ai/api/v1"
export ANTHROPIC_API_KEY="$FELO_API_KEY"
export ANTHROPIC_BASE_URL="https://openapi.felo.ai/api"Which base URL should I choose?
| Tool asks for | Use this base URL |
|---|---|
| OpenAI-compatible endpoint | https://openapi.felo.ai/api/v1 |
| Anthropic-compatible endpoint | https://openapi.felo.ai/api |
| Chat Completions URL | https://openapi.felo.ai/api/v1 |
| Messages API host | https://openapi.felo.ai/api |
Start with claude-sonnet-4-6 unless your workflow requires another published model.
Verify the Setup
Run a small task after saving the configuration:
Save the provider settings in your tool and send a short test message.If the tool starts and answers with the selected model, the provider setup is ready.
Troubleshooting
| Issue | What to check |
|---|---|
| Authentication fails | Confirm the key is copied correctly and exported as FELO_API_KEY |
| Tool calls the wrong provider | Check that the Felo provider is selected for the current workspace or session |
| Base URL error | Use https://openapi.felo.ai/api/v1 for OpenAI-compatible clients and https://openapi.felo.ai/api for Anthropic-compatible clients |
| Model not found | Choose a model that appears in your Felo model list |
| The tool ignores local config | Move provider settings to the user-level config if the client requires it |