Vapi homepage agent promot
# support
o
Any chance there is a way to see the prompt used for the Vapi example agent on the Vapi homepage ? I love that tone of voice and friendlyness ?
v
Hi there! 👋 I wasn't able to find specific information about whether the exact prompt for the Vapi example agent on the homepage is publicly available. However, I can share what I know about accessing prompts in Vapi and some alternatives! According to the information I found, there are security measures in place that might restrict direct access to agent prompts. [According to one source](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344656349367107667), "VAPI has several security measures in place" to ensure "clients cannot download or access the AI agent's prompts and workflow charts." That said, there are a few ways you might be able to create or access similar prompts: 1. **Check Assistant Configuration**: When creating assistants, you can define a
systemPrompt
field that sets the personality and behavior. For example:
Copy code
javascript
const assistant = {
  model: {
    provider: "openai",
    model: "gpt-3.5-turbo",
    systemPrompt:
      "You're a versatile AI assistant named Vapi who is fun to talk with.",
  },
  voice: {
    provider: "11labs",
    voiceId: "paula",
  },
  firstMessage: "Hi, I am Vapi how can I assist you today?",
};
[Source](https://docs.vapi.ai/examples/voice-widget) 2. **API Access**: You might be able to retrieve agent information via API endpoints, though the prompt itself might be protected [Source](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1328923059905630238). If you're looking to create a similar friendly tone in your own agents, you might want to check out Vapi's documentation on prompt engineering best practices! Is there anything else you'd like to know about creating friendly, conversational Vapi agents? Sources: - [https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344656349367107667](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344656349367107667)
s
Here you go!
o
That has been a lifesaver thank you
s
you are very welcome and let us know if there is anything else we can do for you :)