Adding Grok and Gemini Models
# support
k
For models like 1. https://x.ai/news/grok-stt-and-tts-apis 2. https://blog.google/innovation-and-ai/models-and-research/gemini-models/gemini-3-1-flash-live/ Do we have to add this models through custom LLM path or we can expect support for them in few weeks? Does vapi share dashboard on what models will be added in future ?
v
You can add Gemini models natively in Vapi without using the custom LLM path. Just set your provider to
'google'
and specify the Gemini model you want, for example:
Copy code
json
{
  "provider": "google",
  "model": "gemini-1.5-pro",
  "apiKey": "YOUR_GOOGLE_API_KEY"
}
No information is available about Grok support or a public dashboard for future model additions. For more details, see the [Vapi changelog](https://docs.vapi.ai/changelog/2024/10/29). Source: - [Vapi Changelog October 29, 2024](https://docs.vapi.ai/changelog/2024/10/29)
s
Hi, We don't have a timeline for native support of those models yet, and we don't currently publish a public roadmap for upcoming integrations.
If you need to use them today, you can connect them via the custom model paths: LLM → Custom LLM (OpenAI-compatible endpoint) STT → Custom Transcriber (WebSocket) TTS → Custom Voice (audio streaming)
We'll announce new native integrations as they become available.
2 Views