Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion backend/app/api/docs/credentials/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Persist new credentials for the current organization and project.
Credentials are encrypted and stored securely for provider integrations (OpenAI, Langfuse, etc.). Only one credential per provider is allowed per organization-project combination. You can send credentials for a single provider or multiple providers in one request. Refer to the examples below for the required input parameters for each provider.

### Supported Providers:
- **LLM:** openai, sarvamai, google(gemini)
- **LLM:** openai, anthropic, sarvamai, google(gemini)
- **Observability:** langfuse
- **Audio:** elevenlabs
- **Miscellaneous** webhook_secret
Expand All @@ -28,6 +28,9 @@ Credentials are encrypted and stored securely for provider integrations (OpenAI,
"openai": {
"api_key": "sk-proj-..."
},
"anthropic": {
"api_key": "sk-ant-..."
},
"google": {
"api_key": "AIzaSy..."
},
Expand Down
Loading