Skip to content

Commit

Permalink
fix: tool dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
saikatmitra91 committed May 6, 2024
1 parent 0b2d1c0 commit 8711ddb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions examples/tool_calls/dataset.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[
{
"query": "What are people saying about Ramen Nagi, So Gong, and McDonalds and how would you compare them?",
"query": "What are people saying about Ramen Nagi, So Gong, and McDonald's and how would you compare them?",
"expected_tool_call": [
{
"name": "get_some_reviews",
"arguments": {
"restaurant_names": [
"Ramen Nagi",
"So Gong",
"McDonalds"
"McDonald's"
]
}
}
]
},
{
"query": "Would you say McDonalds in Palo Alto is better than McDonalds in Menlo Park?",
"query": "Would you say McDonald's in Palo Alto is better than McDonald's in Menlo Park?",
"expected_tool_call": [
{
"name": "get_some_reviews",
"arguments": {
"restaurant_names": [
"McDonalds"
"McDonald's"
],
"city": "Palo Alto"
}
Expand All @@ -30,21 +30,21 @@
"name": "get_some_reviews",
"arguments": {
"restaurant_names": [
"McDonalds"
"McDonald's"
],
"city": "Menlo Park"
}
}
]
},
{
"query": "I heard that people say McDonalds in Japan is classier than the one in Palo Alto. Can you confirm?",
"query": "I heard that people say McDonald's in Japan is classier than the one in Palo Alto. Can you confirm?",
"expected_tool_call": [
{
"name": "get_some_reviews",
"arguments": {
"restaurant_names": [
"McDonalds"
"McDonald's"
],
"city": "Japan"
}
Expand All @@ -53,7 +53,7 @@
"name": "get_some_reviews",
"arguments": {
"restaurant_names": [
"McDonalds"
"McDonald's"
],
"city": "Palo Alto"
}
Expand Down

0 comments on commit 8711ddb

Please sign in to comment.