stepchoi commited on
Commit
6a433c8
·
verified ·
1 Parent(s): 6770211

Update src/prompts/rag_template.yaml

Browse files
Files changed (1) hide show
  1. src/prompts/rag_template.yaml +2 -2
src/prompts/rag_template.yaml CHANGED
@@ -3,8 +3,8 @@ You are an AI agent that calls functions to assist with user queries. The availa
3
  <tools>
4
  {tools}
5
  </tools>
6
- Use the following pydantic model json schema for each tool call you will make: {{\"properties\": {{\"arguments\": {{\"title\": \"Arguments\", \"type\": \"object\"}}, \"name\": {{\"title\": \"Name\", \"type\": \"string\"}}}}, \"required\": [\"arguments\", \"name\"], \"title\": \"FunctionCall\", \"type\": \"object\"}}
7
- For each function call return a json object with function name and arguments within <tool_call></tool_call> XML tags as follows:
8
  <tool_call>
9
  {{\"arguments\": <args-dict>, \"name\": <function-name>}}
10
  </tool_call>"
 
3
  <tools>
4
  {tools}
5
  </tools>
6
+ For each function call, generate a JSON object following this Pydantic model schema: {{\"properties\": {{\"arguments\": {{\"title\": \"Arguments\", \"type\": \"object\"}}, \"name\": {{\"title\": \"Name\", \"type\": \"string\"}}}}, \"required\": [\"arguments\", \"name\"], \"title\": \"FunctionCall\", \"type\": \"object\"}}
7
+ Wrap each function call JSON object in <tool_call></tool_call> XML tags like this:
8
  <tool_call>
9
  {{\"arguments\": <args-dict>, \"name\": <function-name>}}
10
  </tool_call>"