id stringlengths 10 30 | official_category stringclasses 4
values | task_type stringclasses 8
values | user_prompt stringlengths 29 1.21k | function listlengths 1 8 | ground_truth listlengths 2 8 |
|---|---|---|---|---|---|
parallel_multiple_123 | parallel_multiple | media/content | "Can you tell me how many active players were engaged with the video game 'Call of Duty: Modern Warfare' in the year 2019 on the 'Playstation' platform, and then compare that with the number of active players for the same game in the year 2020 on the 'PC' platform? Also, could you provide the sales figures for 'Call of... | [
{
"name": "video_games.get_player_count",
"description": "Retrieves the number of active players for a specified video game and year.",
"parameters": {
"type": "dict",
"properties": {
"game_title": {
"type": "string",
"description": "The title of the video game."
... | [
{
"video_games.get_player_count": {
"game_title": [
"Call of Duty: Modern Warfare"
],
"year": [
2019
],
"platform": [
"Playstation",
"PS"
]
}
},
{
"video_games.get_player_count": {
"game_title": [
"Call of Duty: Modern... |
parallel_multiple_95 | parallel_multiple | math/data_processing | "Could you help me with some calculations? First, I have two vectors, [1, 2, 3] and [4, 5, 6], and I need to calculate the cosine similarity between them. I want the result to be rounded off to 2 decimal places. Then, I have two arrays of numbers, [7, 8, 9] and [10, 11, 12], and I need to calculate the Pearson correlat... | [
{
"name": "cosine_similarity.calculate",
"description": "Calculate the cosine similarity between two vectors.",
"parameters": {
"type": "dict",
"properties": {
"vector1": {
"type": "array",
"items": {
"type": "integer"
},
"descripti... | [
{
"cosine_similarity.calculate": {
"vector1": [
[
1,
2,
3
]
],
"vector2": [
[
4,
5,
6
]
],
"rounding": [
2
]
}
},
{
"correlation.calculate": {
"array1": [
... |
parallel_multiple_120 | parallel_multiple | parallel_tool_use/general | "Can you tell me the scores for the Manchester United soccer team in the English Premier League for the last 5 rounds and also the scores for the Los Angeles Lakers basketball team in the NBA for the last 7 rounds?" | [
{
"name": "basketball_scores.get_scores",
"description": "Retrieve basketball scores for a specific team and league within a certain range of rounds.",
"parameters": {
"type": "dict",
"properties": {
"team": {
"type": "string",
"description": "The basketball team ... | [
{
"soccer_scores.get_scores": {
"team": [
"Manchester United"
],
"league": [
"English Premier League",
"EPL"
],
"rounds": [
5
]
}
},
{
"basketball_scores.get_scores": {
"team": [
"Los Angeles Lakers",
"Lakers"
... |
parallel_multiple_181 | parallel_multiple | media/content | "Could you help me with a few tasks? First, I need to find the greatest common divisor of two numbers, let's say 48 and 36. Second, I'm curious about a historical event. I want to know about the contribution made by Albert Einstein on the date of 1905-05-14 in the field of Physics. Lastly, I'm working on a music projec... | [
{
"name": "historical_contrib.get_contrib",
"description": "Retrieve historical contribution made by a scientist on a specific date.",
"parameters": {
"type": "dict",
"properties": {
"scientist": {
"type": "string",
"description": "The scientist whose contribution... | [
{
"math.gcd": {
"num1": [
48
],
"num2": [
36
]
}
},
{
"historical_contrib.get_contrib": {
"scientist": [
"Albert Einstein"
],
"date": [
"1905-05-14",
"05/14/1905",
"May 14, 1905"
],
"category": [
... |
parallel_multiple_117 | parallel_multiple | support/ticketing | "Can you help me book a ticket for a concert of Taylor Swift in New York with a VIP Seating add-on, then book another ticket for a concert of Ed Sheeran in Los Angeles with a Backstage Pass and Parking Pass add-ons, and finally book a ticket for the Coachella festival in Indio with a Camping Pass and Parking Pass add-o... | [
{
"name": "concert.book_ticket",
"description": "Book a ticket for a concert at a specific location with various add-ons like backstage pass.",
"parameters": {
"type": "dict",
"properties": {
"artist": {
"type": "string",
"description": "Name of the artist for the... | [
{
"concert.book_ticket": {
"artist": [
"Taylor Swift"
],
"location": [
"New York",
"NY"
],
"add_ons": [
[
"VIP Seating"
],
""
]
}
},
{
"concert.book_ticket": {
"artist": [
"Ed Sheeran"
]... |
parallel_multiple_88 | parallel_multiple | search/research | "Could you help me find a book in the library? I am looking for a book named 'To Kill a Mockingbird' in the city of New York. I would like to know if it's available. Also, I am interested in the genre of 'Fiction'. Once you find it, can you reserve it for me? The book id is '123ABC' and the branch id is 'XYZ789'. I pla... | [
{
"name": "library.search_book",
"description": "Searches for a book in the library within the specified city.",
"parameters": {
"type": "dict",
"properties": {
"book_name": {
"type": "string",
"description": "The name of the book to search for."
},
... | [
{
"library.search_book": {
"book_name": [
"To Kill a Mockingbird"
],
"city": [
"New York",
"NY"
],
"availability": [
true
],
"genre": [
"Fiction",
""
]
}
},
{
"library.reserve_book": {
"book_id": [
... |
parallel_multiple_187 | parallel_multiple | math/data_processing | "Could you please help me with the following tasks? First, I would like to know the top 5 defence ranking NBA teams from the 2018 season. Second, I have a list of numbers [23, 45, 12, 89, 34, 67, 29] that I need to be sorted in descending order. Lastly, I am curious about the Compound Annual Growth Rate (CAGR) of an in... | [
{
"name": "calculate_cagr",
"description": "Calculate the Compound Annual Growth Rate (CAGR) given an initial investment value, a final investment value, and the number of years.",
"parameters": {
"type": "dict",
"properties": {
"initial_value": {
"type": "integer",
... | [
{
"get_defense_ranking": {
"season": [
2018
],
"top": [
5
]
}
},
{
"array_sort": {
"list": [
[
23,
45,
12,
89,
34,
67,
29
]
],
"order": [
"descendin... |
live_parallel_multiple_12-10-1 | live_parallel_multiple | travel/local_services/logistics | To address the compilation failure due to 'No suitable method found for get_weather(String)', could you identify the available methods or properties for the 'Weather' class? Also, provide the signature for the 'get_weather' method within the same class if it exists. | [
{
"name": "get_class_info",
"description": "Retrieves information about the methods, properties, and constructor of a specified class if it exists within the module.",
"parameters": {
"type": "dict",
"required": [
"class_name"
],
"properties": {
"class_name": {
... | [
{
"get_class_info": {
"class_name": [
"Weather"
],
"include_private": [
"",
false
],
"module_name": [
"",
null
]
}
},
{
"get_signature": {
"class_name": [
"Weather"
],
"method_name": [
"get_... |
parallel_multiple_31 | parallel_multiple | search/research | Find how many cases and the judge handling a specific lawsuit for Pacific Gas and Electric and Tesla Inc. | [
{
"name": "lawsuit.fetch_details",
"description": "Fetch the details of a lawsuit for a specific company.",
"parameters": {
"type": "dict",
"properties": {
"company_name": {
"type": "string",
"description": "The company involved in the lawsuit."
}
},... | [
{
"lawsuit.fetch_details": {
"company_name": [
"Pacific Gas and Electric",
"PG&E"
]
}
},
{
"lawsuit.judge": {
"company_name": [
"Pacific Gas and Electric",
"PG&E"
],
"lawsuit_id": [
123,
""
]
}
},
{
"laws... |
parallel_194 | parallel | media/content | Can you find me upcoming jazz events in Los Angeles, CA for the next 14 days and then find the same for rock events in Chicago, IL for the next 10 days and finally find upcoming classical music events in Boston, MA for the next 7 days? | [
{
"name": "event_finder.find_upcoming",
"description": "Find upcoming events of a specific genre in a given location.",
"parameters": {
"type": "dict",
"properties": {
"location": {
"type": "string",
"description": "The city and state where the search will take pl... | [
{
"event_finder.find_upcoming": {
"location": [
"Los Angeles, CA",
"LA"
],
"genre": [
"jazz"
],
"days_ahead": [
14
]
}
},
{
"event_finder.find_upcoming": {
"location": [
"Chicago, IL"
],
"genre": [
... |
parallel_multiple_122 | parallel_multiple | finance/trading | "Could you please find the latest updates for the game 'Call of Duty' on the 'Playstation' platform for the 'European' region, then find the current price for the same game on the 'Xbox' platform, and finally find reviews for the game 'FIFA 21' from the 'American' region?" | [
{
"name": "games.update.find",
"description": "Find the latest updates or patches for a specific game on a specified gaming platform.",
"parameters": {
"type": "dict",
"properties": {
"game": {
"type": "string",
"description": "The name of the game."
},
... | [
{
"games.update.find": {
"game": [
"Call of Duty"
],
"platform": [
"Playstation",
"PS"
],
"region": [
"European",
"EU"
]
}
},
{
"games.price.find": {
"game": [
"Call of Duty"
],
"platform": [
... |
live_parallel_multiple_23-20-0 | live_parallel_multiple | parallel_tool_use/general | I need all pending and active mandates of users parath and bhanu | [
{
"name": "user.mandates",
"description": "Fetches the mandates associated with a user based on the provided user name and the status of the mandates. This API is intended for use by partners to retrieve information about their clients' mandates.",
"parameters": {
"type": "dict",
"required":... | [
{
"user.mandates": {
"name": [
"parath"
],
"status": [
"",
"active"
]
}
},
{
"user.mandates": {
"name": [
"parath"
],
"status": [
"pending"
]
}
},
{
"user.mandates": {
"name": [
"bhanu"
... |
live_parallel_multiple_1-1-0 | live_parallel_multiple | parallel_tool_use/general | 能帮我查一下中国广州市和北京市现在的天气状况吗?请使用公制单位。 | [
{
"name": "get_current_weather",
"description": "Retrieves the current weather conditions for a specified location, such as 'City, State' or 'City, Country'.",
"parameters": {
"type": "dict",
"required": [
"location"
],
"properties": {
"location": {
"typ... | [
{
"get_current_weather": {
"location": [
"Guangzhou, China"
],
"unit": [
"metric"
]
}
},
{
"get_current_weather": {
"location": [
"Beijing, China"
],
"unit": [
"metric"
]
}
}
] |
parallel_7 | parallel | search/research | Find the factorial of 5,10 and 15. | [
{
"name": "math.factorial",
"description": "Calculate the factorial of a given positive integer.",
"parameters": {
"type": "dict",
"properties": {
"number": {
"type": "integer",
"description": "The number for which factorial needs to be calculated."
}
... | [
{
"math.factorial": {
"number": [
5
]
}
},
{
"math.factorial": {
"number": [
10
]
}
},
{
"math.factorial": {
"number": [
15
]
}
}
] |
parallel_76 | parallel | parallel_tool_use/general | What is the greatest common divisor (GCD) of the two pairs of numbers (45, 60) and (81, 27)? | [
{
"name": "math.gcd",
"description": "Compute the greatest common divisor of two numbers",
"parameters": {
"type": "dict",
"properties": {
"num1": {
"type": "integer",
"description": "The first number."
},
"num2": {
"type": "integer",
... | [
{
"math.gcd": {
"num1": [
45
],
"num2": [
60
]
}
},
{
"math.gcd": {
"num1": [
81
],
"num2": [
27
]
}
}
] |
parallel_multiple_12 | parallel_multiple | math/data_processing | Calculate the magnetic field produced by a wire carrying a current of 4 amps with a distance of 2 m from the wire. And find the voltage difference of a region in the direction of the electric field that is 3 m apart, assuming the electric field is 5 N/C. | [
{
"name": "calculate_voltage_difference",
"description": "Calculate the voltage difference between two points in an electric field.",
"parameters": {
"type": "dict",
"properties": {
"electric_field": {
"type": "float",
"description": "The electric field in newtons... | [
{
"calculate_magnetic_field": {
"current": [
4
],
"distance": [
2
]
}
},
{
"calculate_voltage_difference": {
"electric_field": [
5
],
"distance": [
3
],
"charge": [
0,
""
],
"permeabilit... |
parallel_multiple_56 | parallel_multiple | math/data_processing | What is the current time in Beijing and Tokyo and what's the time difference between two cities? | [
{
"name": "time_zones.get_current_time",
"description": "Retrieve current time for the specified location",
"parameters": {
"type": "dict",
"properties": {
"location": {
"type": "string",
"description": "The city that you want to get the current time for."
... | [
{
"time_zones.get_current_time": {
"location": [
"Beijing",
"BJ"
]
}
},
{
"time_zones.get_current_time": {
"location": [
"Tokyo",
"TYO"
]
}
},
{
"time_zones.get_time_difference": {
"city_1": [
"Beijing",
"BJ"
... |
parallel_105 | parallel | math/data_processing | "Can you calculate the heat capacity at constant pressure of air for a science experiment I am conducting? I have a container with a volume of 2.5 m^3 and I am able to maintain the temperature at 300 Kelvin. I will be repeating the experiment at a higher temperature of 350 Kelvin and then at a lower volume of 1.5 m^3. ... | [
{
"name": "calc_heat_capacity",
"description": "Calculate the heat capacity at constant pressure of air using its temperature and volume.",
"parameters": {
"type": "dict",
"properties": {
"temp": {
"type": "integer",
"description": "The temperature of the gas in K... | [
{
"calc_heat_capacity": {
"temp": [
300
],
"volume": [
2.5
],
"gas": [
"air",
""
]
}
},
{
"calc_heat_capacity": {
"temp": [
350
],
"volume": [
2.5
],
"gas": [
"air",
""
... |
parallel_127 | parallel | travel/local_services/logistics | Can you help me find restaurants in New York, NY that cater to my dietary preferences which include Vegan, Gluten-free and Dairy-free options, and then do the same for Los Angeles, CA and Chicago, IL? | [
{
"name": "restaurant.find_nearby",
"description": "Locate nearby restaurants based on specific dietary preferences.",
"parameters": {
"type": "dict",
"properties": {
"location": {
"type": "string",
"description": "The city and state, e.g. Los Angeles, CA"
... | [
{
"restaurant.find_nearby": {
"location": [
"New York, NY",
"New York City",
"NYC",
"NY"
],
"dietary_preference": [
[
"Vegan",
"Gluten-free",
"Dairy-free"
]
]
}
},
{
"restaurant.find_nearby": {
... |
parallel_multiple_179 | parallel_multiple | media/content | "Can you help me with a few things? First, I need to update my user information in the CustomerInfo database. My user ID is 12345, and I want to change my name to John Doe and my email to johndoe@example.com. Second, I'm curious about the last match played by the soccer club Manchester United, and I'd like to know the ... | [
{
"name": "find_card_in_deck",
"description": "Locate a particular card in a deck based on rank and suit.",
"parameters": {
"type": "dict",
"properties": {
"rank": {
"type": "string",
"description": "Rank of the card (e.g. Ace, Two, King)."
},
"sui... | [
{
"update_user_info": {
"user_id": [
12345
],
"update_info": [
{
"name": [
"John Doe"
],
"email": [
"johndoe@example.com"
]
}
],
"database": [
"CustomerInfo",
""
]
}
... |
parallel_multiple_135 | parallel_multiple | media/content | "Imagine you're a musician who also loves to play poker with friends. One day, you decided to host a poker game at your house. You invited three friends named John, Sarah, and Mike. In the game of Texas Holdem, John had the cards 2 of hearts, 3 of diamonds, 4 of spades, 5 of clubs, and 6 of diamonds. Sarah had the card... | [
{
"name": "poker_game_winner",
"description": "Identify the winner in a poker game based on the cards.",
"parameters": {
"type": "dict",
"properties": {
"players": {
"type": "array",
"items": {
"type": "string"
},
"description": "Na... | [
{
"musical_scale": {
"key": [
"C"
],
"scale_type": [
"major",
""
]
}
},
{
"poker_game_winner": {
"players": [
[
"John",
"Sarah",
"Mike"
]
],
"cards": [
{
"John": [
... |
parallel_190 | parallel | travel/local_services/logistics | What is the shortest driving distance from New York City to Los Angeles, and then from Los Angeles to Miami, considering both the shortest and scenic route preferences? | [
{
"name": "calculate_shortest_distance",
"description": "Calculate the shortest driving distance between two locations.",
"parameters": {
"type": "dict",
"properties": {
"start_location": {
"type": "string",
"description": "The starting location for the drive."
... | [
{
"calculate_shortest_distance": {
"start_location": [
"New York City",
"NYC"
],
"end_location": [
"Los Angeles",
"Los Angeles, CA",
"LA"
],
"route_preference": [
"Shortest"
]
}
},
{
"calculate_shortest_distance": {
... |
parallel_multiple_18 | parallel_multiple | math/data_processing | I need to convert 10 dollars to Euros and make a 10 dollar deposit in my local bank account with account number - 987654. | [
{
"name": "banking_service",
"description": "Make a deposit to a given bank account",
"parameters": {
"type": "dict",
"properties": {
"account_id": {
"type": "string",
"description": "Target account to make deposit to."
},
"amount": {
"ty... | [
{
"currency_conversion": {
"amount": [
10
],
"from_currency": [
"USD",
"United States Dollar"
],
"to_currency": [
"EUR",
"Euro"
]
}
},
{
"banking_service": {
"account_id": [
"987654"
],
"amount": [
... |
parallel_multiple_1 | parallel_multiple | math/data_processing | Find the area of a rectangle with length 7 and breadth 3. Also, calculate the area of a circle with radius 5. | [
{
"name": "volume_cylinder.calculate",
"description": "Calculate the volume of a cylinder given the radius and the height.",
"parameters": {
"type": "dict",
"properties": {
"radius": {
"type": "float",
"description": "The radius of the cylinder."
},
... | [
{
"area_rectangle.calculate": {
"length": [
7
],
"breadth": [
3
]
}
},
{
"area_circle.calculate": {
"radius": [
5
]
}
}
] |
parallel_110 | parallel | parallel_tool_use/general | "What is the function of the molecule ATP in the mitochondria and does it have a specific function within this organelle? Also, can you tell me the function of the molecule DNA in the nucleus and whether it has a specific function within the nucleus?" | [
{
"name": "cell_biology.function_lookup",
"description": "Look up the function of a given molecule in a specified organelle.",
"parameters": {
"type": "dict",
"properties": {
"molecule": {
"type": "string",
"description": "The molecule of interest."
},
... | [
{
"cell_biology.function_lookup": {
"molecule": [
"ATP"
],
"organelle": [
"mitochondria"
],
"specific_function": [
true
]
}
},
{
"cell_biology.function_lookup": {
"molecule": [
"DNA"
],
"organelle": [
"nucl... |
parallel_multiple_107 | parallel_multiple | search/research | "Can you help me find a book? I'm not sure of the title, but I know it's a mystery novel. I'd like to search in the library in New York City first, then I'd like to check Google Books and Open Library. Can you assist with these searches?" | [
{
"name": "google.books_search",
"description": "Search for a book in the Google Books library with optional parameters",
"parameters": {
"type": "dict",
"properties": {
"genre": {
"type": "string",
"description": "Genre of the book"
},
"title": {
... | [
{
"library.search_books": {
"location": [
"New York City",
"NYC"
],
"genre": [
"mystery"
],
"title": [
""
]
}
},
{
"google.books_search": {
"genre": [
"mystery"
],
"title": [
""
]
}
},
... |
parallel_153 | parallel | math/data_processing | You are given a task to train a Random Forest classifier on two different datasets, 'dataset1' and 'dataset2'. For the first run, you are asked to set the maximum depth of the trees in the forest to 10 and the number of trees in the forest to 100. For the second run, you are asked to set the maximum depth of the trees ... | [
{
"name": "train_random_forest_classifier",
"description": "Train a Random Forest classifier with the specified parameters.",
"parameters": {
"type": "dict",
"properties": {
"dataset": {
"type": "string",
"description": "The dataset to train the classifier on."
... | [
{
"train_random_forest_classifier": {
"dataset": [
"dataset1"
],
"max_depth": [
10
],
"n_estimators": [
100
]
}
},
{
"train_random_forest_classifier": {
"dataset": [
"dataset2"
],
"max_depth": [
20
],... |
parallel_multiple_65 | parallel_multiple | search/research | "Can you help me find a property in San Francisco, CA that is a condo with 2 bedrooms and fits within my budget range of $500,000 to $800,000? After that, could you also provide an estimated value for a villa in Los Angeles, CA with 3 bedrooms that is 5 years old? Lastly, I would also like to know the estimated value o... | [
{
"name": "property_valuation.get",
"description": "Get estimated value of a property based on location, specifications and age",
"parameters": {
"type": "dict",
"properties": {
"location": {
"type": "string",
"description": "City and state where the property is l... | [
{
"realestate.find_properties": {
"location": [
"San Francisco, CA",
"SF, CA"
],
"propertyType": [
"condo"
],
"bedrooms": [
2
],
"budget": [
{
"min": [
500000
],
"max": [
80000... |
parallel_multiple_39 | parallel_multiple | parallel_tool_use/general | What is the exact birthdate of Nikola Tesla and what his most famous discovery was? | [
{
"name": "scientist_info.get_birthdate",
"description": "Retrieve the birthdate of a specific scientist.",
"parameters": {
"type": "dict",
"properties": {
"name": {
"type": "string",
"description": "The name of the scientist."
}
},
"required":... | [
{
"scientist_info.get_birthdate": {
"name": [
"Nikola Tesla"
]
}
},
{
"scientist_info.get_famous_discovery": {
"name": [
"Nikola Tesla"
],
"discovery_order": [
1,
""
]
}
}
] |
parallel_multiple_68 | parallel_multiple | math/data_processing | "Can you help me analyze the financial performance of a company named 'Tech Innovators'? I would like to understand their year over year (YOY) growth rate from 2018 to 2019. In 2018, their revenue was $500,000 and in 2019, it increased to $750,000. Additionally, I would like to know their return on equity (ROE) for the... | [
{
"name": "financial_ratios.calculate_ROA",
"description": "Calculate the return on assets (ROA) for a company.",
"parameters": {
"type": "dict",
"properties": {
"net_income": {
"type": "float",
"description": "Net income for the period."
},
"total... | [
{
"corporate_finance.calculate_YOY_growth_rate": {
"company_name": [
"Tech Innovators"
],
"year1": [
2018
],
"year1_revenue": [
500000
],
"year2": [
2019
],
"year2_revenue": [
750000
]
}
},
{
"financi... |
parallel_multiple_50 | parallel_multiple | math/data_processing | Analyze the performance of the L.A Lakers in their last game and give me the field goal percentage and free throw percentage. Also, compare the team's points per game (ppg) average from 2018-2019 and 2019-2020 season. | [
{
"name": "sport_analysis.last_game_performance",
"description": "Analyzes the team's performance in their most recent game.",
"parameters": {
"type": "dict",
"properties": {
"team": {
"type": "string",
"description": "The sports team that needs to be analyzed."
... | [
{
"sport_analysis.last_game_performance": {
"team": [
"L.A Lakers",
"Los Angeles Lakers"
],
"details": [
[
"field goal %",
"free throw %"
]
]
}
},
{
"sport_analysis.compare_ppg": {
"team": [
"L.A Lakers",
... |
parallel_multiple_131 | parallel_multiple | math/data_processing | "Could you please help me with a couple of calculations? First, I have a circle with a radius of 5.6 feet and I need to know its area. Second, I'm working on a project where I need to plot a sine wave. The range I'm interested in is from 0 to 3.14 radians. The frequency of the wave should be 2 Hz. Also, I want the ampl... | [
{
"name": "plot_sine_wave",
"description": "Plot a sine wave for a given frequency in a given range.",
"parameters": {
"type": "dict",
"properties": {
"start_range": {
"type": "integer",
"description": "Start of the range in radians."
},
"end_range... | [
{
"geometry.area_circle": {
"radius": [
5.6
],
"units": [
"feet",
"ft"
]
}
},
{
"plot_sine_wave": {
"start_range": [
0
],
"end_range": [
3.14
],
"frequency": [
2
],
"amplitude": [
... |
parallel_102 | parallel | parallel_tool_use/general | You are working in a lab and you have a sealed container with a gauge pressure of 2.5 atm. You are located at sea level where the atmospheric pressure is 1 atm. However, you need to transport the container to a high-altitude location where the atmospheric pressure is 0.85 atm. What will be the absolute pressure of the ... | [
{
"name": "calc_absolute_pressure",
"description": "Calculates the absolute pressure from gauge and atmospheric pressures.",
"parameters": {
"type": "dict",
"properties": {
"atm_pressure": {
"type": "float",
"description": "The atmospheric pressure in atmospheres ... | [
{
"calc_absolute_pressure": {
"gauge_pressure": [
2.5
],
"atm_pressure": [
1,
""
]
}
},
{
"calc_absolute_pressure": {
"gauge_pressure": [
2.5
],
"atm_pressure": [
0.85
]
}
}
] |
parallel_multiple_137 | parallel_multiple | math/data_processing | "Can you tell me the function of the molecule ATP in the organelle mitochondria with a specific function, then calculate the shortest driving distance from New York to Los Angeles in miles, after that, can you tell me who is credited for the discovery of the theory of relativity, and finally, can you tell me the curren... | [
{
"name": "get_shortest_driving_distance",
"description": "Calculate the shortest driving distance between two locations.",
"parameters": {
"type": "dict",
"properties": {
"origin": {
"type": "string",
"description": "Starting point of the journey."
},
... | [
{
"cell_biology.function_lookup": {
"molecule": [
"ATP"
],
"organelle": [
"mitochondria"
],
"specific_function": [
true
]
}
},
{
"get_shortest_driving_distance": {
"origin": [
"New York",
"NY"
],
"destinati... |
parallel_multiple_5 | parallel_multiple | math/data_processing | Calculate the Greatest Common Divisor (GCD) of 96 and 128, and the least common multiple (LCM) of 15 and 25. | [
{
"name": "primeFactors",
"description": "Find all prime factors of an integer.",
"parameters": {
"type": "dict",
"properties": {
"num": {
"type": "integer",
"description": "The integer."
},
"withMultiplicity": {
"type": "boolean",
... | [
{
"gcd": {
"num1": [
96
],
"num2": [
128
]
}
},
{
"lcm": {
"num1": [
15
],
"num2": [
25
]
}
}
] |
parallel_3 | parallel | parallel_tool_use/general | Get the protein sequence of human HbA1c, normal hemoglobin, and rat hemoglobin and their 3D models | [
{
"name": "protein_info.get_sequence_and_3D",
"description": "Retrive the sequence and 3D models of proteins.",
"parameters": {
"type": "dict",
"properties": {
"protein_name": {
"type": "string",
"description": "The name of the protein."
},
"model_... | [
{
"protein_info.get_sequence_and_3D": {
"protein_name": [
"human HbA1c",
"HbA1c"
],
"model_3d": [
true,
""
]
}
},
{
"protein_info.get_sequence_and_3D": {
"protein_name": [
"normal hemoglobin"
],
"model_3d": [
t... |
parallel_48 | parallel | parallel_tool_use/general | In a game of Pokemon GO, what moves can a Pikachu learn? Also, check if Bulbasaur can learn a specific move named 'Solar Beam'. | [
{
"name": "PokemonGO.get_moves",
"description": "Retrieve the set of moves a Pokemon can learn. The optional parameter checks if the Pokemon can learn a specified move.",
"parameters": {
"type": "dict",
"properties": {
"pokemon": {
"type": "string",
"description":... | [
{
"PokemonGO.get_moves": {
"pokemon": [
"Pikachu"
],
"move": [
"",
"Run"
]
}
},
{
"PokemonGO.get_moves": {
"pokemon": [
"Bulbasaur"
],
"move": [
"Solar Beam"
]
}
}
] |
parallel_multiple_91 | parallel_multiple | math/data_processing | "Imagine you are a scientist studying the energy production of a certain type of bacteria. You have a sample of this bacteria that has consumed 5 moles of glucose (C6H12O6) and you know that the energy produced from glucose is typically 2800 kJ/mol. You also know that the bacteria's conversion efficiency, or the percen... | [
{
"name": "biological.calc_biomass",
"description": "Calculate the biomass from the energy given the energy conversion efficiency.",
"parameters": {
"type": "dict",
"properties": {
"energy": {
"type": "float",
"description": "The total energy produced."
},... | [
{
"biological.calc_energy": {
"mols": [
5
],
"substance": [
"C6H12O6",
"glucose"
],
"joules_per_mol": [
2800,
""
]
}
},
{
"biological.calc_biomass": {
"energy": [
14000
],
"efficiency": [
0.... |
parallel_multiple_100 | parallel_multiple | travel/local_services/logistics | "Can you tell me what the stock price prediction for Apple Inc. is for the next 30 days using the ARIMA model, and then provide the stock forecast for Microsoft Corporation for the next 45 days using the LSTM model? After that, could you provide the weather forecast for New York City for the next 7 days, and then give ... | [
{
"name": "weather_forecast",
"description": "Retrieve a weather forecast for a specific location and time frame.",
"parameters": {
"type": "dict",
"properties": {
"location": {
"type": "string",
"description": "The city that you want to get the weather for."
... | [
{
"stock_forecast": {
"company": [
"Apple Inc.",
"AAPL"
],
"days": [
30
],
"model": [
"ARIMA",
""
]
}
},
{
"stock_forecast": {
"company": [
"Microsoft Corporation",
"MSFT"
],
"days": [
... |
parallel_multiple_113 | parallel_multiple | travel/local_services/logistics | "Could you please help me with some information? I am planning to renovate my house and need to know the most popular paint color for the living room over the past month. Also, I am planning a trip to Seattle in the next 5 days, so I would like to know the weather forecast for that period. Lastly, I am considering movi... | [
{
"name": "paint_color.trends",
"description": "Find the most popular paint color for a specific area in the home.",
"parameters": {
"type": "dict",
"properties": {
"room": {
"type": "string",
"description": "Type of the room e.g. Living room, Bathroom etc."
... | [
{
"paint_color.trends": {
"room": [
"Living room"
],
"period": [
"Monthly",
""
]
}
},
{
"weather_forecast": {
"location": [
"Seattle",
"Seattle, WA"
],
"days": [
5
]
}
},
{
"house_price_trends... |
parallel_multiple_160 | parallel_multiple | math/data_processing | "Can you help me with two tasks? First, I want to calculate the compound interest on an investment I made. I invested $5000 with an annual interest rate of 5%. The interest is compounded quarterly and I plan to keep the money invested for 7 years. Secondly, I heard some rumors about a company named 'Tech Corp' and I wa... | [
{
"name": "lawsuits_search",
"description": "Search for lawsuits against a specific company within a specific time and location.",
"parameters": {
"type": "dict",
"properties": {
"company_name": {
"type": "string",
"description": "The name of the company."
... | [
{
"compound_interest": {
"principal": [
5000
],
"annual_rate": [
0.05
],
"compounding_freq": [
"quarterly"
],
"time_in_years": [
7
]
}
},
{
"lawsuits_search": {
"company_name": [
"Tech Corp"
],
... |
parallel_161 | parallel | parallel_tool_use/general | "In a game of basketball, a player has a 60% chance of making any given shot. In a series of 10 shots, what is the probability that the player makes exactly 7 shots? Also, in another series of 15 shots, what is the probability that the player makes exactly 10 shots? Finally, in a series of 20 shots, what is the probabi... | [
{
"name": "calculate_binomial_probability",
"description": "Calculates the binomial probability given the number of trials, successes and the probability of success on an individual trial.",
"parameters": {
"type": "dict",
"properties": {
"number_of_trials": {
"type": "inte... | [
{
"calculate_binomial_probability": {
"number_of_trials": [
10
],
"number_of_successes": [
7
],
"probability_of_success": [
0.6000000000000001
]
}
},
{
"calculate_binomial_probability": {
"number_of_trials": [
15
],
... |
parallel_98 | parallel | math/data_processing | "Can you calculate the electric field strength at a distance of 0.5 meters from a point charge of 2 Coulombs located in a vacuum? Then, can you also calculate the electric field strength at a distance of 1 meter and 2 meters from the same point charge? Lastly, can you calculate the electric field strength at a distance... | [
{
"name": "calculate_electric_field_strength",
"description": "Calculate the electric field strength at a certain distance from a point charge.",
"parameters": {
"type": "dict",
"properties": {
"charge": {
"type": "integer",
"description": "The charge in Coulombs.... | [
{
"calculate_electric_field_strength": {
"charge": [
2
],
"distance": [
0.5
],
"medium": [
"vacuum",
""
]
}
},
{
"calculate_electric_field_strength": {
"charge": [
2
],
"distance": [
1
],
... |
parallel_multiple_161 | parallel_multiple | math/data_processing | "Can you help me with a few calculations? First, I'm curious about the current classical chess rating of a player named Magnus Carlsen. Second, I have a quadratic equation that I'm struggling with, it's 2x² - 3x + 1 = 0, could you find the roots for me? Lastly, I made an investment 5 years ago. The initial value was $5... | [
{
"name": "calculate_cagr",
"description": "Calculate the Compound Annual Growth Rate (CAGR) given an initial investment value, a final investment value, and the number of years.",
"parameters": {
"type": "dict",
"properties": {
"initial_value": {
"type": "integer",
... | [
{
"chess.rating": {
"player_name": [
"Magnus Carlsen"
],
"variant": [
"classical",
"Classical",
"CLASSICAL",
""
]
}
},
{
"solve_quadratic": {
"a": [
2
],
"b": [
-3
],
"c": [
1
... |
parallel_31 | parallel | device/control | What was the Treaty of Paris about? Also, what was the importance of Magna Carta in history? | [
{
"name": "history_fact.fetch",
"description": "Retrieve facts about historical events or documents",
"parameters": {
"type": "dict",
"properties": {
"event": {
"type": "string",
"description": "The historical event or document you want to know about."
},
... | [
{
"history_fact.fetch": {
"event": [
"Treaty of Paris"
],
"depth": [
"",
"detailed"
],
"year": [
"",
0
]
}
},
{
"history_fact.fetch": {
"event": [
"Magna Carta"
],
"depth": [
"",
"de... |
parallel_168 | parallel | math/data_processing | "Can you help me calculate the quarterly dividend per share for my company? We have just paid out a total of $5,000,000 in dividends and currently have 2,000,000 outstanding shares. Also, I am considering a scenario where we might increase our total payout to $6,000,000 while keeping the same number of outstanding shar... | [
{
"name": "finance.calculate_quarterly_dividend_per_share",
"description": "Calculate quarterly dividend per share for a company given total dividend payout and outstanding shares",
"parameters": {
"type": "dict",
"properties": {
"total_payout": {
"type": "integer",
... | [
{
"finance.calculate_quarterly_dividend_per_share": {
"total_payout": [
5000000
],
"outstanding_shares": [
2000000
]
}
},
{
"finance.calculate_quarterly_dividend_per_share": {
"total_payout": [
6000000
],
"outstanding_shares": [
... |
parallel_multiple_98 | parallel_multiple | math/data_processing | "Could you help me with a two-step conversion? First, I have 5000 Japanese Yen that I would like to convert into US Dollars. After that, I have a measurement of 15 kilometers that I would like to convert into miles. Can you tell me how much I would have in US Dollars and how many miles I would have?" | [
{
"name": "currency_conversion",
"description": "Convert a value from one currency to another.",
"parameters": {
"type": "dict",
"properties": {
"amount": {
"type": "float",
"description": "The amount to be converted."
},
"from_currency": {
... | [
{
"currency_conversion": {
"amount": [
5000
],
"from_currency": [
"Japanese Yen",
"JPY"
],
"to_currency": [
"US Dollars",
"USD",
"US Dollar"
]
}
},
{
"unit_conversion": {
"value": [
15
],
"f... |
parallel_multiple_78 | parallel_multiple | travel/local_services/logistics | "Can you help me plan a trip? I would like to first find the shortest path from my home in New York City to the Metropolitan Museum of Art by walking. Then, I want to estimate how long it will take to walk this route. After visiting the museum, I plan to bike to Central Park. Could you find the shortest path for this b... | [
{
"name": "maps.shortest_path",
"description": "Find the shortest path from one location to another by using a specific mode of transportation.",
"parameters": {
"type": "dict",
"properties": {
"start_location": {
"type": "string",
"description": "The name or coor... | [
{
"maps.shortest_path": {
"start_location": [
"New York City"
],
"end_location": [
"Metropolitan Museum of Art"
],
"mode": [
"walk",
""
]
}
},
{
"maps.shortest_path": {
"start_location": [
"Metropolitan Museum of Art"
... |
parallel_1 | parallel | math/data_processing | Calculate the induced electromagnetic force for a magnetic field of 5 Tesla, area of 2 square meters and change in time of 4 seconds, then repeat with a change in time of 10 seconds. | [
{
"name": "calculate_em_force",
"description": "Calculate the induced electromagnetic force based on Faraday's Law of Electromagnetic Induction, given the magnetic field (in Tesla), change in magnetic field area (in square meters), and the change in time (in seconds).",
"parameters": {
"type": "di... | [
{
"calculate_em_force": {
"b_field": [
5
],
"area": [
2
],
"d_time": [
4
]
}
},
{
"calculate_em_force": {
"b_field": [
5
],
"area": [
2
],
"d_time": [
10
]
}
}
] |
parallel_multiple_23 | parallel_multiple | math/data_processing | Calculate the net profit margin of Company XYZ given that the net income is $20,000 and total revenue is $100,000. Also calculate the debt ratio of the same company if the total liabilities are $10,000 and total assets are $30,000. | [
{
"name": "financial_ratio.net_profit_margin",
"description": "Calculate net profit margin of a company given the net income and total revenue",
"parameters": {
"type": "dict",
"properties": {
"net_income": {
"type": "integer",
"description": "The net income of th... | [
{
"financial_ratio.net_profit_margin": {
"net_income": [
20000
],
"total_revenue": [
100000
]
}
},
{
"financial_ratio.debt_ratio": {
"total_liabilities": [
10000
],
"total_assets": [
30000
]
}
}
] |
parallel_multiple_133 | parallel_multiple | media/content | "Imagine you are a music producer and you are working on a new song. You want to generate a music scale progression in the key of 'D' with a tempo of 120 BPM, where each note lasts for 2 beats. You are considering using a 'minor' scale type for this progression. After creating this, you decide to take a break and solve... | [
{
"name": "music_generator.generate_scale_progression",
"description": "Generate a music scale progression in a specific key with a given tempo and duration.",
"parameters": {
"type": "dict",
"properties": {
"key": {
"type": "string",
"description": "The key in wh... | [
{
"music_generator.generate_scale_progression": {
"key": [
"D"
],
"tempo": [
120
],
"duration": [
2
],
"scale_type": [
"minor",
"Minor"
]
}
},
{
"math.hcf": {
"number1": [
456
],
"number... |
live_parallel_multiple_22-19-0 | live_parallel_multiple | travel/local_services/logistics | Could you tell me the current weather conditions in Boston, MA and also in San Francisco in fahr? | [
{
"name": "Messaging_1_ShareLocation",
"description": "This function sends the current geographical location of the user to a specified contact in the user's address book. The location should be in the format of 'Latitude, Longitude' (e.g., '34.0522, -118.2437').",
"parameters": {
"type": "dict",
... | [
{
"get_current_weather": {
"location": [
"Boston, MA"
],
"unit": [
"",
"fahrenheit"
]
}
},
{
"get_current_weather": {
"location": [
"San Francisco, CA"
],
"unit": [
"",
"fahrenheit"
]
}
}
] |
parallel_25 | parallel | parallel_tool_use/general | List all cases against a company named 'Dara Inc' filed in 2019, Also list cases filed in the year 2018 against the same company. | [
{
"name": "lawsuit.lookup",
"description": "Look up lawsuit cases against a company by year.",
"parameters": {
"type": "dict",
"properties": {
"company_name": {
"type": "string",
"description": "The name of the company."
},
"year": {
"typ... | [
{
"lawsuit.lookup": {
"company_name": [
"Dara Inc"
],
"year": [
2019
]
}
},
{
"lawsuit.lookup": {
"company_name": [
"Dara Inc"
],
"year": [
2018
]
}
}
] |
parallel_61 | parallel | math/data_processing | "Can you calculate the Euclidean norm, or the length of the vector from the origin to the point (3, 4) using the math.hypot function, and then calculate the Euclidean norm from the origin to the point (6, 8) using the same function? Also, can you calculate the Euclidean norm from the origin to the point (9, 12, 15) usi... | [
{
"name": "math.hypot",
"description": "Calculate the Euclidean norm, sqrt(sum(squares)), the length of the vector from the origin to point (x, y) which is the hypotenuse of the right triangle.",
"parameters": {
"type": "dict",
"properties": {
"x": {
"type": "integer",
... | [
{
"math.hypot": {
"x": [
3
],
"y": [
4
],
"z": [
"",
0
]
}
},
{
"math.hypot": {
"x": [
6
],
"y": [
8
],
"z": [
"",
0
]
}
},
{
"math.hypot": {
"x":... |
parallel_multiple_79 | parallel_multiple | math/data_processing | "Imagine you are working on a programming project and you encounter the following tasks. First, you need to solve a quadratic equation where the coefficient of x^2 is 5, the coefficient of x is 6, and the constant term is 1. After that, you need to convert an RGB color code to a hexadecimal color code. The RGB values a... | [
{
"name": "perform.string_reverse",
"description": "Reverses a given string.",
"parameters": {
"type": "dict",
"properties": {
"input_string": {
"type": "string",
"description": "The string to be reversed."
}
},
"required": [
"input_str... | [
{
"solve.quadratic_equation": {
"a": [
5
],
"b": [
6
],
"c": [
1
]
}
},
{
"convert.rgb_to_hex": {
"r": [
255
],
"g": [
160
],
"b": [
0
]
}
},
{
"perform.string_reverse"... |
parallel_multiple_176 | parallel_multiple | travel/local_services/logistics | "Could you help me with a few tasks? First, I'd like to book a hotel room at the 'Hilton' in 'Los Angeles, CA' from '2022-05-01' to '2022-05-10' and I need '2' rooms. Second, I'm curious about the time difference between 'New York, NY' and 'Los Angeles, CA'. Third, I've been trying to keep track of my health and I'd li... | [
{
"name": "calculate_bmi",
"description": "Calculate the Body Mass Index (BMI) for a person based on their weight and height.",
"parameters": {
"type": "dict",
"properties": {
"weight": {
"type": "integer",
"description": "The weight of the person in kilograms."
... | [
{
"hotel_booking": {
"hotel_name": [
"Hilton"
],
"location": [
"Los Angeles, CA",
"LA, CA",
"Los Angeles, California"
],
"start_date": [
"2022-05-01",
"05/01/2022",
"May 1, 2022"
],
"end_date": [
"2022-05-1... |
parallel_181 | parallel | finance/trading | Can you use the get_stock_prices function to retrieve the stock prices for Apple, Microsoft, Amazon, and Tesla over the duration of 1 week, 2 weeks, 3 weeks, and 1 month respectively? | [
{
"name": "get_stock_prices",
"description": "Retrieves stock prices for specified companies and duration.",
"parameters": {
"type": "dict",
"properties": {
"companies": {
"type": "array",
"items": {
"type": "string"
},
"description... | [
{
"get_stock_prices": {
"companies": [
[
"Apple"
]
],
"duration": [
"1 week"
]
}
},
{
"get_stock_prices": {
"companies": [
[
"Microsoft"
]
],
"duration": [
"2 weeks"
]
}
},
{
... |
parallel_multiple_2 | parallel_multiple | search/research | Find the area and perimeter of a circle with a radius of 5 and also find the circumference of a circle with diameter of 10. | [
{
"name": "circle.calculate_circumference",
"description": "Calculate the circumference of a circle based on the diameter.",
"parameters": {
"type": "dict",
"properties": {
"diameter": {
"type": "integer",
"description": "The diameter of the circle."
}
... | [
{
"circle.calculate_area": {
"radius": [
5
]
}
},
{
"circle.calculate_circumference": {
"diameter": [
10
]
}
}
] |
parallel_64 | parallel | search/research | "Can you help me solve the following quadratic equations? The first one has coefficients a = 2, b = 5, and c = 3 and I want to find all roots, real or complex. The second equation has coefficients a = 1, b = -3, and c = 2 and I only want to find the real roots. The third equation has coefficients a = 4, b = -7, and c =... | [
{
"name": "solve_quadratic",
"description": "Solve a quadratic equation given coefficients a, b, and c. If optional 'root_type' is 'real', the function will only return real roots. If not specified, function may return complex roots.",
"parameters": {
"type": "dict",
"properties": {
... | [
{
"solve_quadratic": {
"a": [
2
],
"b": [
5
],
"c": [
3
],
"root_type": [
"all",
""
]
}
},
{
"solve_quadratic": {
"a": [
1
],
"b": [
-3
],
"c": [
2
],
... |
parallel_multiple_111 | parallel_multiple | parallel_tool_use/general | "Could you please provide me with the origin and founder information of Buddhism, and then do the same for Hinduism? After that, could you also tell me about the core beliefs and practices of both these religions?" | [
{
"name": "religion.get_core_beliefs",
"description": "Retrieves the core beliefs and practices of a specified religion.",
"parameters": {
"type": "dict",
"properties": {
"religion": {
"type": "string",
"description": "Name of the religion for which to retrieve th... | [
{
"religion.get_origin": {
"religion": [
"Buddhism"
]
}
},
{
"religion.get_origin": {
"religion": [
"Hinduism"
]
}
},
{
"religion.get_core_beliefs": {
"religion": [
"Hinduism"
]
}
},
{
"religion.get_core_beliefs": {
... |
parallel_121 | parallel | parallel_tool_use/general | What is the population of turtles in the Galapagos Islands in 2015, and can you also provide the species information? After that, can you also tell me the same information for the same location but for the year 2020? | [
{
"name": "ecology.get_turtle_population",
"description": "Get the population and species of turtles in a specific location.",
"parameters": {
"type": "dict",
"properties": {
"location": {
"type": "string",
"description": "The name of the location."
},
... | [
{
"ecology.get_turtle_population": {
"location": [
"Galapagos Islands"
],
"year": [
2015
],
"species": [
true
]
}
},
{
"ecology.get_turtle_population": {
"location": [
"Galapagos Islands"
],
"year": [
2020
... |
parallel_70 | parallel | parallel_tool_use/general | What is the combined circumference of four circles, where the first circle has a radius of 5m, the second circle has a radius of 10m, the third circle has a radius of 15m, and the fourth circle has a radius of 20m, and I want the output in meters? | [
{
"name": "geometry.circumference",
"description": "Calculate the circumference of a circle given the radius.",
"parameters": {
"type": "dict",
"properties": {
"radius": {
"type": "integer",
"description": "The radius of the circle."
},
"units": {
... | [
{
"geometry.circumference": {
"radius": [
5
],
"units": [
"m",
"meters"
]
}
},
{
"geometry.circumference": {
"radius": [
10
],
"units": [
"m",
"meters",
""
]
}
},
{
"geometry.circumfer... |
parallel_multiple_183 | parallel_multiple | math/data_processing | "Could you first calculate the probability of drawing a heart from a deck of 52 cards where there are 13 hearts, and then calculate the probability of drawing a queen from the same deck where there are 4 queens? After that, could you retrieve the most recent artwork by the artist named 'Pablo Picasso' with a detailed d... | [
{
"name": "get_sculpture_info",
"description": "Retrieves the most recent artwork by a specified artist with its detailed description.",
"parameters": {
"type": "dict",
"properties": {
"artist_name": {
"type": "string",
"description": "The name of the artist."
... | [
{
"card_game_probability.calculate": {
"total_cards": [
52
],
"desired_cards": [
13
],
"cards_drawn": [
1,
""
]
}
},
{
"card_game_probability.calculate": {
"total_cards": [
52
],
"desired_cards": [
... |
live_parallel_multiple_7-6-0 | live_parallel_multiple | parallel_tool_use/general | What's cost of 2 cpu and 4 gb ram machine on all clouds? | [
{
"name": "get_aws_pricing",
"description": "Retrieves the pricing for a specified AWS machine configuration based on the provided memory and CPU requirements.",
"parameters": {
"type": "dict",
"required": [
"memory",
"cpu"
],
"properties": {
"memory": {
... | [
{
"get_aws_pricing": {
"memory": [
4
],
"cpu": [
2
]
}
},
{
"get_gcp_pricing": {
"memory_gb": [
4
],
"cpu_count": [
2
],
"region": [
"",
"us-central1"
],
"usage_type": [
"",
... |
parallel_79 | parallel | math/data_processing | What is the prime factorization of the number 4567 and the number 7890, if we want the results to be returned in a 'dictionary' format? | [
{
"name": "prime_factorize",
"description": "Calculate the prime factorization of a given integer.",
"parameters": {
"type": "dict",
"properties": {
"number": {
"type": "integer",
"description": "The number for which to calculate the prime factorization."
... | [
{
"prime_factorize": {
"number": [
4567
],
"return_type": [
"dictionary"
]
}
},
{
"prime_factorize": {
"number": [
7890
],
"return_type": [
"dictionary"
]
}
}
] |
parallel_multiple_86 | parallel_multiple | math/data_processing | "A car starts from rest and travels a distance of 120 meters in 10 seconds. What is the speed of the car at the end of this time period? After reaching this speed, the car continues to accelerate for another 5 seconds from 12 m/s until it reaches a final speed doubling the initial speed. The final speed is twice the sp... | [
{
"name": "kinematics.calculate_acceleration",
"description": "Calculates the acceleration of an object under given conditions.",
"parameters": {
"type": "dict",
"properties": {
"initial_speed": {
"type": "float",
"description": "The initial speed of the object."
... | [
{
"kinematics.calculate_speed_from_rest": {
"distance": [
120
],
"time": [
10
],
"initial_speed": [
0,
""
]
}
},
{
"kinematics.calculate_acceleration": {
"initial_speed": [
12
],
"final_speed": [
24... |
parallel_86 | parallel | math/data_processing | "Imagine you are conducting an experiment with two different objects. The first object is accelerated at a rate of 5 m/s^2 and travels a distance of 100 meters. The second object is accelerated at a rate of 10 m/s^2 and travels a distance of 200 meters. Both objects start from rest. Can you calculate the final velocity... | [
{
"name": "kinematics.final_velocity_from_distance",
"description": "Calculate the final velocity of an object given the acceleration and distance travelled, assuming initial velocity is 0.",
"parameters": {
"type": "dict",
"properties": {
"acceleration": {
"type": "integer... | [
{
"kinematics.final_velocity_from_distance": {
"acceleration": [
5
],
"distance": [
100
],
"initial_velocity": [
"",
0
]
}
},
{
"kinematics.final_velocity_from_distance": {
"acceleration": [
10
],
"distance... |
parallel_118 | parallel | parallel_tool_use/general | What are the precipitation statistics for the Amazon rainforest for the last six months, the last year, and the last five years? | [
{
"name": "ecology_data.precipitation_stats",
"description": "Retrieve precipitation data for a specified location and time period.",
"parameters": {
"type": "dict",
"properties": {
"location": {
"type": "string",
"description": "The name of the location, e.g., 'A... | [
{
"ecology_data.precipitation_stats": {
"location": [
"Amazon rainforest"
],
"time_frame": [
"six_months"
]
}
},
{
"ecology_data.precipitation_stats": {
"location": [
"Amazon rainforest"
],
"time_frame": [
"year"
]
}... |
parallel_109 | parallel | parallel_tool_use/general | What are the proteins found in the cell compartments of the nucleus, mitochondria, and cytoplasm, and can you also provide a brief description of each protein? | [
{
"name": "cellbio.get_proteins",
"description": "Get the list of proteins in a specific cell compartment.",
"parameters": {
"type": "dict",
"properties": {
"cell_compartment": {
"type": "string",
"description": "The specific cell compartment."
},
... | [
{
"cellbio.get_proteins": {
"cell_compartment": [
"nucleus"
],
"include_description": [
true
]
}
},
{
"cellbio.get_proteins": {
"cell_compartment": [
"mitochondria"
],
"include_description": [
true
]
}
},
{
"... |
parallel_182 | parallel | math/data_processing | "John is planning to invest in a mutual fund. He is considering two scenarios. In the first scenario, he will make an initial investment of $5000 with an annual rate of return of 7% and he will not make any additional contributions. In the second scenario, he will make an initial investment of $3000 with an annual rate... | [
{
"name": "finance.calculate_future_value",
"description": "Calculate the future value of an investment given an initial investment, annual rate of return, and a time frame.",
"parameters": {
"type": "dict",
"properties": {
"initial_investment": {
"type": "integer",
... | [
{
"finance.calculate_future_value": {
"initial_investment": [
5000
],
"rate_of_return": [
0.07
],
"years": [
10
],
"contribution": [
"",
0
]
}
},
{
"finance.calculate_future_value": {
"initial_investment": ... |
parallel_171 | parallel | math/data_processing | "Can you calculate the return on equity for two companies? The first company has a net income of $1,000,000, shareholder's equity of $5,000,000, and paid dividends of $200,000. The second company has a net income of $2,000,000, shareholder's equity of $10,000,000, but did not pay any dividends." | [
{
"name": "calculate_return_on_equity",
"description": "Calculate a company's return on equity based on its net income, shareholder's equity, and dividends paid.",
"parameters": {
"type": "dict",
"properties": {
"net_income": {
"type": "integer",
"description": "T... | [
{
"calculate_return_on_equity": {
"net_income": [
1000000
],
"shareholder_equity": [
5000000
],
"dividends_paid": [
200000
]
}
},
{
"calculate_return_on_equity": {
"net_income": [
2000000
],
"shareholder_equity": [... |
parallel_33 | parallel | search/research | Find out who was the president of United States in 1980 and 2016, and the vice president in 1975 and 2011. | [
{
"name": "get_president_and_vp",
"description": "Get the President and Vice President of United States for a specified year.",
"parameters": {
"type": "dict",
"properties": {
"year": {
"type": "integer",
"description": "The year for which president or vice presid... | [
{
"get_president_and_vp": {
"year": [
1980
],
"position": [
"president"
]
}
},
{
"get_president_and_vp": {
"year": [
2016
],
"position": [
"president"
]
}
},
{
"get_president_and_vp": {
"year": [
... |
parallel_138 | parallel | math/data_processing | "John, who weighs 85 kilograms and is 1.8 meters tall, and his friend Sarah, who weighs 60 kilograms and is 1.65 meters tall, are having a debate about their health. They decide to calculate their Body Mass Index (BMI) to settle the argument. Later, they meet their friend Mike, who weighs 75 kilograms and is 1.7 meters... | [
{
"name": "calculate_BMI",
"description": "Calculate the Body Mass Index (BMI) given a person's weight and height.",
"parameters": {
"type": "dict",
"properties": {
"weight_kg": {
"type": "integer",
"description": "The weight of the person in kilograms."
}... | [
{
"calculate_BMI": {
"weight_kg": [
85
],
"height_m": [
1.8
]
}
},
{
"calculate_BMI": {
"weight_kg": [
60
],
"height_m": [
1.65
]
}
},
{
"calculate_BMI": {
"weight_kg": [
75
],
"heig... |
parallel_multiple_85 | parallel_multiple | math/data_processing | "Could you please help me with a couple of calculations? First, I need to find the greatest common divisor of 56 and 98 using the Euclidean algorithm. After that, I would like to know the greatest common divisor of 81 and 27, but this time using the binary algorithm. Once we have those, I need to calculate the least co... | [
{
"name": "calculate_lcm",
"description": "Calculate the least common multiple (lcm) between two integers.",
"parameters": {
"type": "dict",
"properties": {
"num1": {
"type": "integer",
"description": "First number to calculate lcm for."
},
"num2":... | [
{
"calculate_gcd": {
"num1": [
56
],
"num2": [
98
],
"algorithm": [
"euclidean",
""
]
}
},
{
"calculate_gcd": {
"num1": [
81
],
"num2": [
27
],
"algorithm": [
"binary"
]
... |
parallel_123 | parallel | math/data_processing | Can you generate four different DNA sequences each with a length of 500, where the first sequence has a preference for nucleotide 'A', the second sequence has a preference for nucleotide 'T', the third sequence has a preference for nucleotide 'C', and the fourth sequence has a preference for nucleotide 'G'? | [
{
"name": "generate_DNA_sequence",
"description": "Generate a random DNA sequence with a specific length and nucleotide preference.",
"parameters": {
"type": "dict",
"properties": {
"length": {
"type": "integer",
"description": "The length of the DNA sequence to b... | [
{
"generate_DNA_sequence": {
"length": [
500
],
"preferences": [
[
"A"
]
]
}
},
{
"generate_DNA_sequence": {
"length": [
500
],
"preferences": [
[
"T"
]
]
}
},
{
"generate_... |
parallel_5 | parallel | math/data_processing | Find the list of TV shows and their ratings on Netflix for 'Friends', and Hulu for 'The Office' and 'Stranger Things' and sort by its rating | [
{
"name": "streaming_services.shows_list_and_ratings",
"description": "Get a list of shows and their ratings on specific streaming services.",
"parameters": {
"type": "dict",
"properties": {
"streaming_service": {
"type": "string",
"description": "Name of the stre... | [
{
"streaming_services.shows_list_and_ratings": {
"streaming_service": [
"Netflix"
],
"show_list": [
[
"Friends"
]
],
"sort_by_rating": [
true
]
}
},
{
"streaming_services.shows_list_and_ratings": {
"streaming_service... |
parallel_84 | parallel | device/control | "A car starts with an initial velocity of 15 m/s accelerates at a rate of 3.5 m/s^2 for a time of 7 seconds. What is the displacement of this car? Now, consider a second car that starts with an initial velocity of 20 m/s and accelerates at a rate of 2 m/s^2 for a time of 10 seconds. What is the displacement of the seco... | [
{
"name": "calculate_displacement",
"description": "Calculates the displacement of an object in motion given initial velocity, time, and acceleration.",
"parameters": {
"type": "dict",
"properties": {
"initial_velocity": {
"type": "integer",
"description": "The in... | [
{
"calculate_displacement": {
"initial_velocity": [
15
],
"time": [
7
],
"acceleration": [
3.5
]
}
},
{
"calculate_displacement": {
"initial_velocity": [
20
],
"time": [
10
],
"acceleration": [
... |
parallel_18 | parallel | math/data_processing | Calculate the Future Value of an investment of $1000 with an annual interest rate of 5% for 1,5 and 10 years. | [
{
"name": "financials.calculate_future_value",
"description": "Calculate the future value of an investment based on a constant interest rate.",
"parameters": {
"type": "dict",
"properties": {
"present_value": {
"type": "integer",
"description": "The present value ... | [
{
"financials.calculate_future_value": {
"present_value": [
1000
],
"annual_interest_rate": [
0.05
],
"number_of_years": [
1
]
}
},
{
"financials.calculate_future_value": {
"present_value": [
1000
],
"annual_intere... |
parallel_4 | parallel | math/data_processing | Calculate the body mass index for a person who is 6 feet tall and weighs 80 kg, also for a person who is 5.6 feet and weighs 60 kg. | [
{
"name": "calculate_bmi",
"description": "Calculate body mass index for a person based on their weight and height.",
"parameters": {
"type": "dict",
"properties": {
"height": {
"type": "float",
"description": "The height of the person in feet."
},
... | [
{
"calculate_bmi": {
"height": [
6
],
"weight": [
80
]
}
},
{
"calculate_bmi": {
"height": [
5.6
],
"weight": [
60
]
}
}
] |
parallel_multiple_191 | parallel_multiple | math/data_processing | "Imagine you are planning a cozy evening at home. You want to play a card game with a deck of cards, but you are not sure if the 'King of Hearts' is in the deck. Can you check if it's there? Later, you plan to cook a recipe that requires 2 cups of sugar, but you only have a tablespoon to measure. How many tablespoons a... | [
{
"name": "find_card_in_deck",
"description": "Locate a particular card in a deck based on rank and suit.",
"parameters": {
"type": "dict",
"properties": {
"rank": {
"type": "string",
"description": "Rank of the card (e.g. Ace, Two, King)."
},
"sui... | [
{
"find_card_in_deck": {
"rank": [
"King"
],
"suit": [
"Hearts",
"hearts"
],
"deck": [
""
]
}
},
{
"currency_exchange.convert": {
"base_currency": [
"Euros",
"EUR"
],
"target_currency": [
"U... |
parallel_132 | parallel | math/data_processing | You have four sets of numbers: the first set is [23, 45, 67, 89], the second set is [12, 34, 56, 78], the third set is [98, 76, 54, 32], and the fourth set is [87, 65, 43, 21]. Can you calculate the average of each set of numbers? | [
{
"name": "calculate_average",
"description": "Calculates the average of a list of numbers.",
"parameters": {
"type": "dict",
"properties": {
"numbers": {
"type": "array",
"items": {
"type": "integer"
},
"description": "The list of ... | [
{
"calculate_average": {
"numbers": [
[
23,
45,
67,
89
]
]
}
},
{
"calculate_average": {
"numbers": [
[
12,
34,
56,
78
]
]
}
},
{
"calculate_average": {... |
parallel_133 | parallel | parallel_tool_use/general | What is the total distance in kilometers if you were to travel from the Eiffel Tower in Paris (48.8584° N, 2.2945° E) to the Colosseum in Rome (41.8902° N, 12.4922° E), then to the Acropolis in Athens (37.9715° N, 23.7257° E), and finally to the Pyramids of Giza in Egypt (29.9792° N, 31.1342° E)? | [
{
"name": "calculate_distance",
"description": "Calculate the distance between two GPS coordinates.",
"parameters": {
"type": "dict",
"properties": {
"coord1": {
"type": "tuple",
"description": "The first coordinate as (latitude, longitude).",
"items": {... | [
{
"calculate_distance": {
"coord1": [
[
48.8584,
2.2945
]
],
"coord2": [
[
41.8902,
12.4922
]
],
"unit": [
"kilometers",
"km"
]
}
},
{
"calculate_distance": {
"coord1": [... |
parallel_multiple_4 | parallel_multiple | math/data_processing | Calculate the area under the curve from x=1 to x=5 for the function f(x)=x^2. And find the derivative at x=3. | [
{
"name": "integral",
"description": "Calculate the definite integral of a function over an interval [a, b].",
"parameters": {
"type": "dict",
"properties": {
"function": {
"type": "string",
"description": "The function to integrate."
},
"a": {
... | [
{
"integral": {
"function": [
"x**2",
"lambda x : x**2"
],
"a": [
1
],
"b": [
5
]
}
},
{
"derivative": {
"function": [
"x**2",
"lambda x : x**2"
],
"x": [
3
]
}
}
] |
parallel_multiple_37 | parallel_multiple | parallel_tool_use/general | Get me the timeline of World War 2 in Europe and then get me an array of important leaders involved during the war. | [
{
"name": "history.get_timeline",
"description": "Retrieve the timeline for a specific historical event",
"parameters": {
"type": "dict",
"properties": {
"event": {
"type": "string",
"description": "The historical event you want the timeline for."
},
... | [
{
"history.get_timeline": {
"event": [
"World War 2",
"WW2",
"World War 2 in Europe"
],
"region": [
"Europe",
""
]
}
},
{
"history.get_important_figures": {
"event": [
"World War 2",
"WW2",
"World War 2 in ... |
parallel_195 | parallel | parallel_tool_use/general | Can you retrieve additional information like Director, Cast, Awards etc. for the same movie "Inception" and also for the movie "The Dark Knight"? | [
{
"name": "movie_details.brief",
"description": "This function retrieves a brief about a specified movie.",
"parameters": {
"type": "dict",
"properties": {
"title": {
"type": "string",
"description": "Title of the movie"
},
"extra_info": {
... | [
{
"movie_details.brief": {
"title": [
"Inception"
],
"extra_info": [
true
]
}
},
{
"movie_details.brief": {
"title": [
"The Dark Knight"
],
"extra_info": [
true
]
}
}
] |
parallel_126 | parallel | parallel_tool_use/general | What would be the predicted evolutionary rate for the African Elephant species over a period of 5000 years using the Darwin model, and how would this prediction change if we use the Lamarck model instead? | [
{
"name": "prediction.evolution",
"description": "Predict the evolutionary rate for a specific species for a given timeframe.",
"parameters": {
"type": "dict",
"properties": {
"species": {
"type": "string",
"description": "The species that the evolution rate will ... | [
{
"prediction.evolution": {
"species": [
"African Elephant"
],
"years": [
5000
],
"model": [
"Darwin",
""
]
}
},
{
"prediction.evolution": {
"species": [
"African Elephant"
],
"years": [
5000
... |
parallel_multiple_34 | parallel_multiple | parallel_tool_use/general | Translate the phrase 'Hello World' from English to Spanish and translate 'Goodbye' from French to English. In addition to that get current time in 'Los Angeles' and 'London'. | [
{
"name": "get_current_time",
"description": "Fetches current time for a given location",
"parameters": {
"type": "dict",
"properties": {
"location": {
"type": "string",
"description": "The location for which to fetch current time"
}
},
"requir... | [
{
"translate_text": {
"text": [
"Hello World"
],
"from_lang": [
"English",
"EN"
],
"to_lang": [
"Spanish",
"ES"
]
}
},
{
"translate_text": {
"text": [
"Goodbye"
],
"from_lang": [
"French",
... |
parallel_multiple_75 | parallel_multiple | travel/local_services/logistics | "Can you help me plan my day? I want to start from my home in New York and go to a chess club named 'Knight Gambit' located in Boston. I want to take the fastest route. After that, I want to go to another chess club named 'Rook Corner' in Philadelphia, again taking the fastest route. Finally, I want to return home, but... | [
{
"name": "chess_club_details.find",
"description": "Provides details about a chess club, including location.",
"parameters": {
"type": "dict",
"properties": {
"name": {
"type": "string",
"description": "The name of the chess club."
},
"city": {
... | [
{
"route_planner.calculate_route": {
"start": [
"New York"
],
"destination": [
"Boston"
],
"method": [
"fastest",
""
]
}
},
{
"chess_club_details.find": {
"name": [
"Knight Gambit"
],
"city": [
"Bos... |
parallel_multiple_40 | parallel_multiple | parallel_tool_use/general | What is the weight of Neutron and Proton in atomic mass unit (amu) ? Also what is the diameter of a Proton and Neutron in femtometers? | [
{
"name": "scienceFacts.getCharge",
"description": "Fetch the electric charge of an atomic particle",
"parameters": {
"type": "dict",
"properties": {
"particle": {
"type": "string",
"description": "The atomic particle. e.g. Electron, Proton"
},
"un... | [
{
"scienceFacts.getWeight": {
"particle": [
"Neutron"
],
"unit": [
"amu"
]
}
},
{
"scienceFacts.getWeight": {
"particle": [
"Proton"
],
"unit": [
"amu"
]
}
},
{
"scienceFacts.getDiameter": {
"particle":... |
parallel_172 | parallel | math/data_processing | "Imagine you have two different investment opportunities. The first one has a present value of $5000, an annual interest rate of 5%, and you plan to hold it for 10 years. The second one has a present value of $7000, an annual interest rate of 4%, and you plan to hold it for 15 years. Both investments compound interest ... | [
{
"name": "finance.predict_future_value",
"description": "Calculate the future value of an investment given its present value, interest rate, the number of compounding periods per year, and the time horizon.",
"parameters": {
"type": "dict",
"properties": {
"present_value": {
... | [
{
"finance.predict_future_value": {
"present_value": [
5000
],
"annual_interest_rate": [
0.05
],
"compounding_periods_per_year": [
1,
""
],
"time_years": [
10
]
}
},
{
"finance.predict_future_value": {
"pre... |
live_parallel_multiple_4-3-0 | live_parallel_multiple | parallel_tool_use/general | Could you provide me with the latest news report for Paris, France, in English and also for Letterkenny, Ireland, focusing on technology news again in English? | [
{
"name": "get_current_weather",
"description": "Retrieves the current weather conditions for a specified location.",
"parameters": {
"type": "dict",
"required": [
"location"
],
"properties": {
"location": {
"type": "string",
"description": "Th... | [
{
"get_news_report": {
"location": [
"Paris, France"
],
"category": [
"Technology"
],
"language": [
"en",
""
]
}
},
{
"get_news_report": {
"location": [
"Letterkenny, Ireland"
],
"category": [
"Tech... |
parallel_122 | parallel | device/control | What are the annual carbon emissions produced by a gasoline vehicle, a diesel vehicle, and an electric vehicle if they each drive 15,000 miles per year, using the default emission factor for the gasoline vehicle, an emission factor of 2.7 for the diesel vehicle, and an emission factor of 0 for the electric vehicle? | [
{
"name": "calculate_vehicle_emission",
"description": "Calculate the annual carbon emissions produced by a specific type of vehicle based on mileage.",
"parameters": {
"type": "dict",
"properties": {
"vehicle_type": {
"type": "string",
"description": "The type of... | [
{
"calculate_vehicle_emission": {
"vehicle_type": [
"gas"
],
"miles_driven": [
15000
],
"emission_factor": [
"",
1.4
]
}
},
{
"calculate_vehicle_emission": {
"vehicle_type": [
"diesel"
],
"miles_driven": [
... |
parallel_multiple_24 | parallel_multiple | parallel_tool_use/general | Invest $2000 in Google and withdraw $1000 from Apple. | [
{
"name": "investment.withdraw",
"description": "Withdraw a specific amount from a company's stock.",
"parameters": {
"type": "dict",
"properties": {
"company": {
"type": "string",
"description": "The company you want to withdraw from."
},
"amount"... | [
{
"investment.invest": {
"company": [
"Google",
"GOOG"
],
"amount": [
2000
]
}
},
{
"investment.withdraw": {
"company": [
"Apple",
"AAPL"
],
"amount": [
1000
]
}
}
] |
parallel_multiple_154 | parallel_multiple | finance/trading | "Imagine you are considering to buy a house in San Francisco, California. The house was built in 1985, has an area of 2000 square feet and contains 4 rooms. You want to predict the price of this house. After buying the house, you also want to know about any lawsuits involving the previous owner, Mr. John Doe, in the co... | [
{
"name": "lawsuit_search",
"description": "Retrieve all lawsuits involving a particular entity from specified jurisdiction.",
"parameters": {
"type": "dict",
"properties": {
"entity": {
"type": "string",
"description": "The entity involved in lawsuits."
}... | [
{
"predict_house_price": {
"area": [
2000
],
"rooms": [
4
],
"year": [
1985
],
"location": [
"San Francisco",
"SF"
]
}
},
{
"lawsuit_search": {
"entity": [
"John Doe",
"Mr. John Doe"
]... |
parallel_multiple_198 | parallel_multiple | search/research | "Can you first find me a vegan, main course recipe that can be prepared within 30 minutes? After that, could you please retrieve the details of the scientific discovery of Gravity using the most accepted method? Once done, I would also like to know about the discovery of the Higgs Boson particle using the same method. ... | [
{
"name": "find_recipe",
"description": "Find a recipe based on the dietary restrictions, recipe type, and time constraints.",
"parameters": {
"type": "dict",
"properties": {
"dietary_restrictions": {
"type": "string",
"description": "Dietary restrictions e.g. veg... | [
{
"find_recipe": {
"dietary_restrictions": [
"vegan"
],
"recipe_type": [
"main course"
],
"time": [
30
]
}
},
{
"science_history.get_discovery_details": {
"discovery": [
"Gravity"
],
"method_used": [
"defau... |
live_parallel_14-10-0 | live_parallel | travel/local_services/logistics | What's the weather like in the two cities of Boston and San Francisco? | [
{
"name": "get_current_weather",
"description": "Retrieves the current weather information for a specified location.",
"parameters": {
"type": "dict",
"required": [
"location"
],
"properties": {
"location": {
"type": "string",
"description": "T... | [
{
"get_current_weather": {
"location": [
"Boston, MA"
],
"unit": [
"",
"fahrenheit"
]
}
},
{
"get_current_weather": {
"location": [
"San Francisco, CA"
],
"unit": [
"",
"fahrenheit"
]
}
}
] |
parallel_125 | parallel | search/research | In the African savannah, a group of researchers have been observing a herd of elephants for a few years. They have noticed that the current population of elephants is 500 and the annual population growth rate is 2%. They are interested in knowing the estimated population of elephants in 10 years. However, due to the un... | [
{
"name": "elephant_population_estimate",
"description": "Estimate future population of elephants given current population and growth rate.",
"parameters": {
"type": "dict",
"properties": {
"current_population": {
"type": "integer",
"description": "The current num... | [
{
"elephant_population_estimate": {
"current_population": [
500
],
"growth_rate": [
0.02
],
"years": [
10
]
}
},
{
"elephant_population_estimate": {
"current_population": [
500
],
"growth_rate": [
0.015
... |
live_parallel_multiple_5-4-0 | live_parallel_multiple | travel/local_services/logistics | Could you fetch me the latest news from Paris, France, and also the current weather in Letterkenny, Ireland, in Celsius? | [
{
"name": "get_news_report",
"description": "Fetches the latest news based on a specific location, typically a city and state.",
"parameters": {
"type": "dict",
"required": [
"location"
],
"properties": {
"location": {
"type": "string",
"descri... | [
{
"get_news_report": {
"location": [
"Paris, France"
]
}
},
{
"get_current_weather": {
"location": [
"Letterkenny, Ireland"
],
"unit": [
"celsius"
]
}
}
] |
parallel_140 | parallel | search/research | Can you find all the Drama and Comedy movies that Leonardo DiCaprio starred in 2010 and 2012 respectively by searching the database? | [
{
"name": "imdb.find_movies_by_actor",
"description": "Searches the database to find all movies by a specific actor within a certain year.",
"parameters": {
"type": "dict",
"properties": {
"actor_name": {
"type": "string",
"description": "The name of the actor."
... | [
{
"imdb.find_movies_by_actor": {
"actor_name": [
"Leonardo DiCaprio"
],
"year": [
2010
],
"category": [
"Drama",
""
]
}
},
{
"imdb.find_movies_by_actor": {
"actor_name": [
"Leonardo DiCaprio"
],
"year": [
... |
parallel_multiple_146 | parallel_multiple | math/data_processing | You are an art curator and a part-time biologist. You have a painting in your collection that is currently 24x36 inches, painted with acrylic and has a dominant color of blue. You want to modify the painting's size to 30x40 inches, change the medium to oil, and the dominant color to red. After this, you want to predict... | [
{
"name": "prediction.evolution",
"description": "Predict the evolutionary rate for a specific species for a given timeframe.",
"parameters": {
"type": "dict",
"properties": {
"species": {
"type": "string",
"description": "The species that the evolution rate will ... | [
{
"modify_painting": {
"size": [
"30x40 inches",
"30x40"
],
"medium": [
"oil"
],
"dominant_color": [
"red"
]
}
},
{
"prediction.evolution": {
"species": [
"African elephant"
],
"years": [
100
... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.