remove output format

This commit is contained in:
Haiping Chen 2025-04-27 16:25:46 -05:00
parent 6fa6aa180d
commit 4298e466db

View file

@ -5,11 +5,7 @@ Follow these steps to handle user request:
2. Determine which agent is suitable to handle this conversation. Try to minimize the routing of human service.
3. Extract and populate agent required arguments, think carefully, leave it as blank object if user didn't provide the specific arguments.
4. You must include all required args for the selected agent, but you must not make up any parameters when there is no exact value provided, those parameters must set value as null if not declared.
{% if routing_mode != 'lazy' %}
5. Response must be in JSON format.
{% else %}
5. If user is greeting, you can call function response_to_user with a greeting message.
{% endif %}
{% if routing_requirements and routing_requirements != empty %}
[REQUIREMENTS]