AI Models
Configure LLM and text-to-speech model settings
Endpoints
| Method | Path | Description |
|---|---|---|
| GET | /organizations/model-configurations/v2/defaults | Get platform default model settings |
| GET | /organizations/model-configurations/v2 | Get this organisation's model configuration |
| PUT | /organizations/model-configurations/v2 | Update the organisation's model configuration |
| GET | /organizations/model-configurations/v2/migration-preview | Preview what a migration would change |
| POST | /organizations/model-configurations/v2/migrate | Apply migration to latest config format |
Get Defaults
GET
/organizations/model-configurations/v2/defaultsReturns the platform defaults — useful as a starting point when building a custom configuration.
Get Organisation Configuration
GET
/organizations/model-configurations/v2Returns the complete model configuration for your organisation.
Update Configuration
PUT
/organizations/model-configurations/v2Request body — OrganizationAIModelConfigurationV2:
json
{
"llm": {
"provider": "openai",
"model": "gpt-4o-mini",
"temperature": 0.7
},
"tts": {
"provider": "elevenlabs",
"voice_id": "21m00Tcm4TlvDq8ikWAM",
"model": "eleven_turbo_v2"
},
"stt": {
"provider": "deepgram",
"model": "nova-2",
"language": "en-US"
}
}Supported LLM Providers
| Provider | Models |
|---|---|
| OpenAI | gpt-4o, gpt-4o-mini, gpt-4-turbo |
| Anthropic | claude-sonnet-4-6, claude-haiku-4-5 |
gemini-2.0-flash, gemini-1.5-pro | |
| Groq | llama-3.3-70b-versatile, mixtral-8x7b |
Supported TTS Providers
| Provider | Notes |
|---|---|
| ElevenLabs | Highest quality, widest voice selection |
| OpenAI TTS | Fast, low-latency |
| Google TTS | Broad language support |
| Deepgram Aura | Low-latency |
| Azure TTS | Enterprise compliance |
Supported STT Providers
| Provider | Notes |
|---|---|
| Deepgram | Best real-time accuracy |
| OpenAI Whisper | Best for non-English |
| Google STT | Enterprise |
| Azure STT | Enterprise |
Was this page helpful?
Open Dashboard →