-
Notifications
You must be signed in to change notification settings - Fork 957
Expand file tree
/
Copy pathquery_fewshots.json
More file actions
36 lines (36 loc) · 942 Bytes
/
query_fewshots.json
File metadata and controls
36 lines (36 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[
{
"role": "user",
"content": "good options for climbing gear that can be used outside?"
},
{
"id": "madeup",
"call_id": "call_abc123",
"name": "search_database",
"arguments": "{\"search_query\":\"climbing gear outside\"}",
"type": "function_call"
},
{
"id": "madeupoutput",
"call_id": "call_abc123",
"output": "Search results for climbing gear that can be used outside: ...",
"type": "function_call_output"
},
{
"role": "user",
"content": "are there any shoes less than $50?"
},
{
"id": "madeup",
"call_id": "call_abc456",
"name": "search_database",
"arguments": "{\"search_query\":\"shoes\",\"price_filter\":{\"comparison_operator\":\"<\",\"value\":50}}",
"type": "function_call"
},
{
"id": "madeupoutput",
"call_id": "call_abc456",
"output": "Search results for shoes cheaper than 50: ...",
"type": "function_call_output"
}
]