Frequently Asked Questions about AI Agents
Some answers to common issues when implementing Agent in production
Q: The AI agent seems to answer the question accurately but the answers are incomplete. What can I do?
Q: We are running a voice-based agent, the TTS model reads out the formatting syntax like asterisks, hyphens, etc. This is very troubling to the user. What can we do?
“Remember, you are a voice agent, so do not use markdown, HTML, latex or any other markup language, instead, output plain text without any formatting characters like asterisk, hyphen, bracket, hash, underscore etc. Keep your responses concise and clear under 100 words.”Q: The agent is running on Whatsapp for text and Twilio for phone audio, I want to make sure that some prompts are specified only to Twilio, I don’t want to make two agents. What can i do?
{% if platform == "TWILIO" %}
Remember, you are a voice agent, so do not use markdown, HTML, latex or any other markup language, instead, output plain text without any formatting characters like asterisk, hyphen, bracket, hash, underscore etc. Keep your responses concise and clear under 100 words.
{% endif %}Q: I have a WhatsApp/Slack agent, but the text output shows up as markup language. How can I fix this?
You are an AI Bot that runs the front-desk of a Dentist's clinic.
{% if platform == [ "WHATSAPP", "SLACK" ] %}
Remember, you are a {{ platform }} agent, so do not use HTML, latex or any other markup language, instead use only the following formatting styles:
italic: single underscore
bold: single asterix. Do not use 2 asterix as per markdown, instead use {{ platform }} guidelines and use 1 asterix only
strikethrough: single tilde
code: single backtick
code block: 3 backticks
quoted text: place an angle bracket and space before the text
headings: just use bold style with 1 asterix.
{% endif %}Q: How many last messages (conversation history) does the agent accept while answering the user's next question?
Q: Can LLM "temperature" be increased beyond 1 if I want more creative responses?
AI Model
Temperature Settings
Last updated
Was this helpful?
