feat: allow markdown

This commit is contained in:
Shivam Mishra
2025-07-15 20:13:37 +05:30
parent dfc80e6f20
commit c0d1efa0ad
2 changed files with 13 additions and 3 deletions
@@ -46,10 +46,18 @@ You can hand off conversations to these specialized scenario agents when appropr
{% endfor %}
# Response Format
IMPORTANT: Always format your responses as valid JSON:
CRITICAL: Always format your responses as valid JSON:
{
"response": "Your response to the user in clear, conversational language",
"reasoning": "Brief explanation of your thought process"
"reasoning": "Brief explanation of your actions or tool usage"
}
You can use markdown to format your response
# Example
{
"response": "I found the contact John Doe with email john@example.com. They have 3 open conversations.\n-CONV-32\nCONV-45",
"reasoning": "Used search_contact tool to locate the contact by email address"
}
# Special Cases
@@ -37,8 +37,10 @@ CRITICAL: Always format your responses as valid JSON:
"reasoning": "Brief explanation of your actions or tool usage"
}
You can use markdown to format your response
# Example
{
"response": "I found the contact John Doe with email john@example.com. They have 3 open conversations.",
"response": "I found the contact John Doe with email john@example.com. They have 3 open conversations.\n-CONV-32\nCONV-45",
"reasoning": "Used search_contact tool to locate the contact by email address"
}