data_source stringclasses 1
value | question stringlengths 32 448 | ability stringclasses 1
value | reward_model dict | extra_info dict | prompt listlengths 1 1 | tools listlengths 1 1 | available_tools listlengths 1 1 | penalties dict | env stringlengths 527 4.46k | schema stringlengths 979 8.19k |
|---|---|---|---|---|---|---|---|---|---|---|
synthtool | Plan a 3-night trip to Paris departing on 2023-10-15. Find the cheapest flight and a hotel under $150 per night within 2km of Eiffel Tower. What is the total cost? | fact-reasoning | {
"ground_truth": [
"$720"
],
"style": "rule"
} | {
"index": 0,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | # Mocked Environment for Travel Planning
from typing import List, Dict
# Mocked Data
flights = [
{"flight_id": 101, "destination": "Paris", "date": "2023-10-15", "price": 300},
{"flight_id": 102, "destination": "Paris", "date": "2023-10-15", "price": 280},
{"flight_id": 103, "destination": "Paris", "date":... | [
{
"type": "function",
"function": {
"name": "get_available_flights",
"description": "Return flights matching destination and date.",
"parameters": {
"type": "object",
"properties": {
"destination": {
... |
synthtool | I need to return 'The Great Gatsby' and '1984' which are 5 days overdue. Also, I want to place a hold on 'Brave New World'. What is my total late fee and when does the hold expire? | fact-reasoning | {
"ground_truth": [
"Total late fee: $20, Hold expires on 2023-10-10"
],
"style": "rule"
} | {
"index": 1,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | books = [
{"title": "The Great Gatsby", "author": "F. Scott Fitzgerald", "isbn": "9780743273565", "copies_available": 3, "holds": []},
{"title": "1984", "author": "George Orwell", "isbn": "9780451524935", "copies_available": 0, "holds": []},
{"title": "Brave New World", "author": "Aldous Huxley", "isbn": "9... | [
{
"type": "function",
"function": {
"name": "search_books",
"description": "Searches books by matching the search term in title or author.",
"parameters": {
"type": "object",
"properties": {
"search_term": {
... |
synthtool | What is the average score of Alice's completed courses that are prerequisites for Advanced Machine Learning? | fact-reasoning | {
"ground_truth": [
"87.5"
],
"style": "rule"
} | {
"index": 2,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | students = [
{"student_id": 1, "name": "Alice"},
{"student_id": 2, "name": "Bob"}
]
courses = [
{"course_id": 101, "name": "Introduction to Machine Learning", "prerequisites": []},
{"course_id": 102, "name": "Statistics", "prerequisites": []},
{"course_id": 103, "name": "Advanced Machine Learning",... | [
{
"type": "function",
"function": {
"name": "get_student_id",
"description": "Retrieves the student ID associated with the given student name.",
"parameters": {
"type": "object",
"properties": {
"student_name":... |
synthtool | Customer 2 wants to reserve one deluxe room and two standard rooms for a single night. What is the total cost and which rooms are reserved? | fact-reasoning | {
"ground_truth": [
"Total cost: $560. Reserved rooms: 102, 103, 201."
],
"style": "rule"
} | {
"index": 3,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | rooms = [
{"number": 101, "type": "standard", "available": False, "price": 150.0},
{"number": 102, "type": "standard", "available": True, "price": 160.0},
{"number": 103, "type": "standard", "available": True, "price": 150.0},
{"number": 201, "type": "deluxe", "available": True, "price": 250.0},
{"n... | [
{
"type": "function",
"function": {
"name": "get_available_rooms",
"description": "Retrieves a list of available room numbers of the specified type.",
"parameters": {
"type": "object",
"properties": {
"room_typ... |
synthtool | I need to plan a 3-day trip from New York to Paris departing on 2023-12-15. Find the cheapest available option that includes:
1. Flight arriving before noon local time
2. Hotel under $200/night with availability
3. At least 3 attractions under $30 each
What's the total cost including all bookings? | fact-reasoning | {
"ground_truth": [
"$810.0"
],
"style": "rule"
} | {
"index": 4,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | # Mocked travel planning environment
from typing import List, Dict, Optional
# Mocked Data
flights = [
{"id": "FL123", "airline": "SkyAir", "departure_city": "New York", "arrival_city": "Paris",
"departure_time": "2023-12-15 08:00", "price": 300},
{"id": "FL456", "airline": "GlobalWings", "departure_city... | [
{
"type": "function",
"function": {
"name": "search_flights",
"description": "Search flights between cities on specific date",
"parameters": {
"type": "object",
"properties": {
"departure_city": {
... |
synthtool | A library user with ID 123 wants to renew all possible borrowed books today (2023-10-25). Which books can they successfully renew considering reservations and due dates? | fact-reasoning | {
"ground_truth": [
"[\"The Great Gatsby\"]"
],
"style": "rule"
} | {
"index": 5,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | # Mocked library environment with book management functions
from datetime import datetime
from typing import Dict, List, Union
# Mocked data
books = [
{"id": 1, "title": "1984", "author": "George Orwell", "available": False},
{"id": 2, "title": "The Great Gatsby", "author": "F. Scott Fitzgerald", "available": ... | [
{
"type": "function",
"function": {
"name": "get_borrowed_books",
"description": "Return list of book IDs borrowed by user",
"parameters": {
"type": "object",
"properties": {
"user_id": {
... |
synthtool | What is the total budget allocated to active projects managed by team leads from the Engineering department with an above-average salary? | fact-reasoning | {
"ground_truth": [
"125000"
],
"style": "rule"
} | {
"index": 6,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | employees = [
{"id": 1, "name": "Alice Chen", "role": "Team Lead", "department": "Engineering", "salary": 120000},
{"id": 2, "name": "Bob Wang", "role": "Team Lead", "department": "Engineering", "salary": 90000},
{"id": 3, "name": "Carol Zhang", "role": "Developer", "department": "Engineering", "salary": 80... | [
{
"type": "function",
"function": {
"name": "get_employees_by_role",
"description": "Retrieves employees matching the specified role.",
"parameters": {
"type": "object",
"properties": {
"role": {
... |
synthtool | What is the total sales amount for electronics products sold by the top-performing employee in the sales department during Q1 2024? | fact-reasoning | {
"ground_truth": [
"1699.98"
],
"style": "rule"
} | {
"index": 7,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | products = [
{"id": 1, "name": "Laptop", "category": "electronics", "price": 999.99},
{"id": 2, "name": "Smartphone", "category": "electronics", "price": 699.99},
{"id": 3, "name": "T-Shirt", "category": "clothing", "price": 19.99}
]
sales = [
{"date": "2024-01-15", "product_id": 1, "amount": 999.99, "... | [
{
"type": "function",
"function": {
"name": "get_products_by_category",
"description": "Retrieves products filtered by their category.",
"parameters": {
"type": "object",
"properties": {
"category": {
... |
synthtool | What is the earliest available mystery book published after 2010 by an author born before 1970, and can I check it out? | fact-reasoning | {
"ground_truth": [
"The Silent Echo"
],
"style": "rule"
} | {
"index": 8,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | books = [
{"title": "The Silent Echo", "author": "Clara Smith", "year": 2012, "genre": "mystery", "available": True},
{"title": "Shadows in the Fog", "author": "John Doe", "year": 2015, "genre": "mystery", "available": True},
{"title": "Lost Time", "author": "Alice Brown", "year": 2011, "genre": "mystery", ... | [
{
"type": "function",
"function": {
"name": "search_books_by_title",
"description": "Searches for books by title containing the given substring.",
"parameters": {
"type": "object",
"properties": {
"title": {
... |
synthtool | What is the total salary budget for the Engineering department's ongoing projects after moving all planning projects to ongoing status? | fact-reasoning | {
"ground_truth": [
"300000"
],
"style": "rule"
} | {
"index": 9,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | employees = [
{"id": 1, "name": "Alice", "department": "Engineering", "salary": 100000},
{"id": 2, "name": "Bob", "department": "Engineering", "salary": 100000},
{"id": 3, "name": "Charlie", "department": "Engineering", "salary": 100000},
{"id": 4, "name": "Diana", "department": "Sales", "salary": 80000... | [
{
"type": "function",
"function": {
"name": "get_employees_by_dept",
"description": "Retrieves employees by their department.",
"parameters": {
"type": "object",
"properties": {
"department": {
... |
synthtool | What's the total cost for a premium member in California to purchase all available electronics products in stock, including tax and shipping? | fact-reasoning | {
"ground_truth": [
"$925.49"
],
"style": "rule"
} | {
"index": 10,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | products = [
{"id": 1, "name": "Laptop", "category": "electronics", "price": 999.99, "weight": 5.0},
{"id": 2, "name": "T-shirt", "category": "clothing", "price": 19.99, "weight": 0.3},
{"id": 3, "name": "Blender", "category": "appliances", "price": 49.99, "weight": 3.0}
]
product_stock = {
1: 10,
... | [
{
"type": "function",
"function": {
"name": "get_products_by_category",
"description": "Retrieves products filtered by their category.",
"parameters": {
"type": "object",
"properties": {
"category": {
... |
synthtool | User U001 wants to buy 3 units of product P001. What is the total cost including shipping and any applicable discounts? | fact-reasoning | {
"ground_truth": [
"307.5"
],
"style": "rule"
} | {
"index": 11,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | products = {
"P001": {"stock": 5, "price": 100.0, "weight": 2.5},
"P002": {"stock": 0, "price": 200.0, "weight": 5.0},
}
users = {
"U001": {"purchase_history": ["P001", "P003"], "location": "US"},
"U002": {"purchase_history": [], "location": "EU"},
}
discount_rules = {
"US": {"min_purchases": 2, "... | [
{
"type": "function",
"function": {
"name": "get_product_stock",
"description": "Retrieves the stock quantity of a product based on its ID.",
"parameters": {
"type": "object",
"properties": {
"product_id": {
... |
synthtool | Find the name of the non-managerial Engineering department employee with the highest current workload of active projects.? | fact-reasoning | {
"ground_truth": [
"Alice"
],
"style": "rule"
} | {
"index": 12,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | # Mocked environment for employee and project management system
employees = [
{'id': 101, 'name': 'Alice', 'department': 'Engineering', 'role': 'Developer'},
{'id': 102, 'name': 'Bob', 'department': 'Engineering', 'role': 'Manager'},
{'id': 103, 'name': 'Charlie', 'department': 'Engineering', 'role': 'Deve... | [
{
"type": "function",
"function": {
"name": "get_employee_by_id",
"description": "Retrieve employee details by ID",
"parameters": {
"type": "object",
"properties": {
"employee_id": {
"ty... |
synthtool | Find the names of all employees in the Engineering department who have all the required skills for at least one project with a team size between 2 and 3 inclusive. Sort the names alphabetically.? | fact-reasoning | {
"ground_truth": [
"[\"Alice\", \"Charlie\"]"
],
"style": "rule"
} | {
"index": 13,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | employees = [
{"id": 1, "name": "Alice", "department_id": 101, "skills": ["Python", "SQL"]},
{"id": 2, "name": "Bob", "department_id": 102, "skills": ["Java", "C++"]},
{"id": 3, "name": "Charlie", "department_id": 101, "skills": ["Python", "JavaScript"]},
{"id": 4, "name": "Diana", "department_id": 103,... | [
{
"type": "function",
"function": {
"name": "get_employee_by_id",
"description": "Retrieves an employee by their ID.",
"parameters": {
"type": "object",
"properties": {
"employee_id": {
... |
synthtool | User ID 456 wants to book the cheapest available room for December 1st to December 2nd. What's their final booking confirmation code? | fact-reasoning | {
"ground_truth": [
"BOOKED-456-2"
],
"style": "rule"
} | {
"index": 14,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | hotels = [
{
"id": 1,
"name": "Grand Plaza",
"rooms": [
{"id": 1, "type": "standard", "price": 200, "available_dates": ["2023-12-01", "2023-12-02", "2023-12-03"]},
{"id": 2, "type": "deluxe", "price": 180, "available_dates": ["2023-12-01", "2023-12-02"]}
]
... | [
{
"type": "function",
"function": {
"name": "get_available_rooms",
"description": "Retrieves available rooms based on check-in and check-out dates.",
"parameters": {
"type": "object",
"properties": {
"checkin_d... |
synthtool | User Emily Wilson wants to renew all her currently checked-out books. However, she can only renew books that are not overdue and if her account has no outstanding fines. How many books were successfully renewed? | fact-reasoning | {
"ground_truth": [
"1"
],
"style": "rule"
} | {
"index": 15,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | # Mock library management environment
from datetime import date, timedelta
users = [
{
"user_id": "U123",
"name": "Emily Wilson",
"checked_out": ["9783161484100", "9780451524935"],
"fines": 0.0
},
{
"user_id": "U456",
"name": "John Smith",
"checked_ou... | [
{
"type": "function",
"function": {
"name": "get_user_by_name",
"description": "Search user by name, returns user dict or None",
"parameters": {
"type": "object",
"properties": {
"name": {
... |
synthtool | What is the remaining budget for the Marketing department after subtracting all projects led by its employees? | fact-reasoning | {
"ground_truth": [
"275000"
],
"style": "rule"
} | {
"index": 16,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | employees = [
{"id": "E1001", "name": "Alice Smith", "department_id": "D001", "role": "Developer"},
{"id": "E1002", "name": "Bob Johnson", "department_id": "D003", "role": "Manager"},
{"id": "E1003", "name": "Charlie Lee", "department_id": "D002", "role": "Designer"}
]
departments = [
{"id": "D001", "n... | [
{
"type": "function",
"function": {
"name": "get_employee_by_id",
"description": "Retrieves an employee by their ID.",
"parameters": {
"type": "object",
"properties": {
"employee_id": {
... |
synthtool | Our Engineering department needs to maximize Python expertise utilization. Assign all qualified engineers to Python-related projects within their own department, and tell me which employee-project assignments were successfully made.? | fact-reasoning | {
"ground_truth": [
"[(1, 101), (3, 101)]"
],
"style": "rule"
} | {
"index": 17,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | # Mocked environment for company resource management
employees = [
{"id": 1, "name": "Alice", "department": "Engineering", "skills": ["Python", "Java"]},
{"id": 2, "name": "Bob", "department": "Marketing", "skills": ["SEO", "Analytics"]},
{"id": 3, "name": "Charlie", "department": "Engineering", "skills": [... | [
{
"type": "function",
"function": {
"name": "get_employees_by_department",
"description": "Get employees filtered by department",
"parameters": {
"type": "object",
"properties": {
"department": {
... |
synthtool | Can member 456 renew their loan for "The Great Adventure"? | fact-reasoning | {
"ground_truth": [
"Loan renewed successfully for member 456 and book 1234567890."
],
"style": "rule"
} | {
"index": 18,
"split": "train"
} | [
{
"content": "Answer the given question. You must conduct reasoning inside <think> and </think> first every time you get new information. You will be given a list of tools you can use. You should reason about the tools you can use and then plan which tool to use. You can use the tools by calling them with the a... | [
"tool_call"
] | [
"tool_call"
] | {
"tool_call": 0
} | books = [
{"isbn": "1234567890", "title": "The Great Adventure", "author": "Alice Smith", "available_copies": 3},
{"isbn": "0987654321", "title": "Mystery of the Ages", "author": "Bob Johnson", "available_copies": 1}
]
members = [
{"member_id": "123", "name": "John Doe", "active": False, "reserved_books": ... | [
{
"type": "function",
"function": {
"name": "get_book_availability",
"description": "Returns the available copies of a book by ISBN.",
"parameters": {
"type": "object",
"properties": {
"isbn": {
... |
End of preview. Expand in Data Studio
README.md exists but content is empty.
- Downloads last month
- 44