Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: tool dataset #211

Merged
merged 1 commit into from
May 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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