Create a voice agent with a simple prompt, attach a phone number, and make your first call. You’ll also learn how to embed the widget on your website.In this quickstart, you’ll:
Create an agent
Make a test call
Embed the widget on your site
Prerequisites — You need an Orova account and an API key.
In the Orova dashboard, navigate to Agents in the sidebar.
2
Create a new agent
Click Create Agent and give it a name.
3
Add a system prompt
You are a friendly phone support assistant for Acme Corp.Greet the caller and offer help. Keep responses under 30 words.If a transfer is requested, confirm the reason first.
4
Configure providers
Choose your LLM, TTS, and STT providers. Defaults work great to start:
LLM: OpenAI GPT-4o-mini
TTS: ElevenLabs
STT: Deepgram
5
Set a first message
Add a greeting like: “Hi there! Thanks for calling Acme Corp. How can I help you today?“
curl -X POST https://app.orova.ai/api/agents \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Support Agent", "llm_provider": "openai", "llm_model": "gpt-4o-mini", "tts_provider": "elevenlabs", "stt_provider": "deepgram", "system_prompt": "You are a friendly phone support assistant.", "first_message": "Hi there! How can I help you today?" }'