| title | Dashboard |
|---|---|
| subtitle | Learn to build a voice agent in under 5 minutes. |
| slug | quickstart/dashboard |
Vapi makes it easy to build end-to-end voice agents, which we call assistants. Assistants support live, two-way conversations. You can call an assistant or have it call you.
Each assistant has three components: Speech-to-text (STT), Language model (LLM) and Text-to-speech (TTS). Vapi gives you full control over each, with dozens of providers and models to choose from.
In this quickstart, you'll learn to:
- Create an assistant in the Vapi dashboard
- Pick your STT, LLM, and TTS providers
- Attach a phone number
- Make your first call over the web or by phone
<Frame caption="Creating a new assistant">
<img src="../static/gifs/create-assistant.gif" />
</Frame>
```plaintext First message
Hi there, this is Alex from TechSolutions customer support. How can I help you today?
```
</Step>
<Step title="System prompt">
Set the system prompt, which sets the context, role, personality and instructions that will guide your assistant.
```plaintext System Prompt
You are Alex, a customer service voice assistant for TechSolutions. Your primary purpose is to help customers resolve issues with their products, answer questions about services, and ensure a satisfying support experience.
- Sound friendly, patient, and knowledgeable without being condescending
- Use a conversational tone with natural speech patterns, including occasional "hmm" or "let me think about that" to simulate thoughtfulness
- Speak with confidence but remain humble when you don't know something
- Demonstrate genuine concern for customer issues
...
```
</Step>
</Steps>
<Frame>
<img src="../static/images/quickstart/dashboard/set-llm.png" />
</Frame>
</Step>
<Step title="Set the transcriber (speech-to-text) model">
In the transcriber tab, choose the transcriber (speech-to-text, STT) model that will convert your callers' speech into text for your assistant to process.
<Frame>
<img src="../static/images/quickstart/dashboard/set-transcriber.png" />
</Frame>
<Tip>
Vapi was made for model selection to be configurable - try playing around with different models!
</Tip>
</Step>
<Step title="Choose the voice (text-to-speech) model">
In the voice tab, select the voice (TTS) model that will determine how your assistant sounds to callers.
<Frame>
<img src="../static/images/quickstart/dashboard/set-voice.png" />
</Frame>
Just like with the transcriber, you can plug in any provider!
</Step>
</Steps>
<Frame caption="Attach a phone number to your assistant">
<img src="../static/gifs/outbound-call.gif" />
</Frame>


