Dataset Viewer
Auto-converted to Parquet Duplicate
id
stringlengths
10
12
question
stringlengths
30
194
function
stringlengths
634
2.81k
ground_truth
stringlengths
44
914
multiple_0
Can I find the dimensions and properties of a triangle, if I know its three sides are 5 units, 4 units and 3 units long?
[{"name": "triangle_properties.get", "description": "Retrieve the dimensions, such as area and perimeter, of a triangle if lengths of three sides are given.", "parameters": {"type": "dict", "properties": {"side1": {"type": "integer", "description": "The length of first side of the triangle."}, "side2": {"type": "intege...
[{"triangle_properties.get": {"side1": [5], "side2": [4], "side3": [3], "get_area": ["", true], "get_perimeter": ["", true], "get_angles": ["", true]}}]
multiple_1
Calculate the area of a triangle, given the lengths of its three sides: 3, 4, and 5.
[{"name": "math.triangle_area_heron", "description": "Calculates the area of a triangle using Heron's formula, given the lengths of its three sides.", "parameters": {"type": "dict", "properties": {"side1": {"type": "integer", "description": "Length of the first side of the triangle."}, "side2": {"type": "integer", "des...
[{"math.triangle_area_heron": {"side1": [3], "side2": [4], "side3": [5]}}]
multiple_2
What is the capital of Brazil?
[{"name": "country_info.largest_city", "description": "Fetch the largest city of a specified country.", "parameters": {"type": "dict", "properties": {"country": {"type": "string", "description": "Name of the country."}}, "required": ["country"]}}, {"name": "country_info.capital", "description": "Fetch the capital city ...
[{"country_info.capital": {"country": ["Brazil"]}}]
multiple_3
Compute the Euclidean distance between two points A(3,4) and B(1,2).
[{"name": "EuclideanDistance.calculate", "description": "Calculate the Euclidean distance between two points.", "parameters": {"type": "dict", "properties": {"pointA": {"type": "array", "items": {"type": "integer"}, "description": "Coordinates for Point A."}, "pointB": {"type": "array", "items": {"type": "integer"}, "d...
[{"EuclideanDistance.calculate": {"pointA": [[3, 4]], "pointB": [[1, 2]], "rounding": ["", 0]}}]
multiple_4
Can you calculate the displacement of a car moving at an initial speed of 20 m/s and then accelerates at 10 m/s^2 for 5 seconds? (assuming a straight line motion)
[{"name": "kinematics.calculate_displacement", "description": "Calculate displacement based on initial speed, acceleration, and time interval for a motion along a straight line.", "parameters": {"type": "dict", "properties": {"initial_speed": {"type": "integer", "description": "The initial speed of the moving object in...
[{"kinematics.calculate_displacement": {"initial_speed": [20], "acceleration": [10], "time": [5], "rounding": ["", 2]}}]
multiple_5
What is the wind speed and temperature in location given by coordinates 46.603354,1.8883340 on December 13, 2019?
[{"name": "weather.get_by_city_date", "description": "Retrieves the historical weather data based on city and date.", "parameters": {"type": "dict", "properties": {"city": {"type": "string", "description": "The city for which to retrieve the weather."}, "date": {"type": "string", "format": "date", "description": "The d...
[{"weather.get_by_coordinates_date": {"coordinates": [[46.603354, 1.888334]], "date": ["2019-12-13"]}}]
multiple_6
Calculate the capacitance of a parallel plate capacitor where the area of the plate is 10 square meters, the distance between plates is 0.01 meters and the dielectric constant K is 1.0.
[{"name": "resistance_calculator.calculate", "description": "Calculate the resistance of an electrical circuit based on current and voltage.", "parameters": {"type": "dict", "properties": {"I": {"type": "float", "description": "The electric current flowing in Amperes."}, "V": {"type": "float", "description": "The volta...
[{"capacitance_calculator.calculate": {"A": [10], "d": [0.01], "K": [1.0, ""]}}]
multiple_7
How to assess the population growth in deer and their impact on woodland in Washington state over the past decade?
[{"name": "wildlife_population.assess_growth", "description": "Assesses the population growth of a specific species in a specified location over a period.", "parameters": {"type": "dict", "properties": {"species": {"type": "string", "description": "The species for which the growth is to be calculated."}, "location": {"...
[{"wildlife_population.assess_growth": {"species": ["deer", "Deer"], "location": ["Washington state", "WA", "Washington"], "duration": [10]}}]
multiple_8
Find a 3 bedroom villa for sale within $300,000 to $400,000 budget in San Diego.
[{"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 located, e.g. San Diego, CA."}, "propertyType": {"type": "st...
[{"realestate.find_properties": {"location": ["SD", "San Diego", "San Diego, CA", "CA"], "propertyType": ["villa"], "bedrooms": [3], "budget": [{"min": [300000], "max": [400000]}]}}]
multiple_9
Calculate the average grade for student John who has these scores {'math':90, 'science':75, 'history':82, 'music':89} across different subjects.
[{"name": "calculate_standard_deviation", "description": "This function calculates the standard deviation across different scores for a specific student.", "parameters": {"type": "dict", "properties": {"gradeDict": {"type": "dict", "description": "A dictionary where keys represent subjects and values represent scores"}...
[{"calculate_average": {"gradeDict": [{"math": [90], "science": [75], "history": [82], "music": [89]}]}}]
multiple_10
I need to delete some columns from my employees database on personal_data table. I want to remove their email addresses and social security numbers to respect privacy.
[{"name": "database.modify_columns", "description": "This function allows deletion or addition of columns in a database", "parameters": {"type": "dict", "properties": {"db_name": {"type": "string", "description": "The name of the database to modify."}, "table": {"type": "string", "description": "The name of the table t...
[{"database.modify_columns": {"db_name": ["employees"], "table": ["personal_data"], "operation": ["delete"], "columns": [["email", "ssn"], ["ssn", "email"], ["email", "social_security_number"], ["social_security_number", "email"], ["email", "social security number"], ["social security number", "email"]]}}]
multiple_11
Calculate the roots of a quadratic equation with coefficients 5, 20, and -25
[{"name": "math_roots.quadratic", "description": "Calculate the roots of a quadratic equation.", "parameters": {"type": "dict", "properties": {"a": {"type": "integer", "description": "Coefficient of the second-degree term."}, "b": {"type": "integer", "description": "Coefficient of the first-degree term."}, "c": {"type"...
[{"math_roots.quadratic": {"a": [5], "b": [20], "c": [-25]}}]
multiple_12
What is the year over year growth rate for company 'Tech Inc' with revenues of $1M in 2019 and $1.2M in 2020?
[{"name": "corporate_finance.calculate_YOY_growth_rate", "description": "Calculate the year over year (YOY) growth rate for a company.", "parameters": {"type": "dict", "properties": {"company_name": {"type": "string", "description": "The name of the company for which to calculate the YOY growth rate."}, "year1": {"type...
[{"corporate_finance.calculate_YOY_growth_rate": {"company_name": ["Tech Inc"], "year1": [2019], "year1_revenue": [1000000], "year2": [2020], "year2_revenue": [1200000]}}]
multiple_13
How much revenue would company XYZ generate if we increase the sales units of product A by 10% while keeping the price the same?
[{"name": "corporate_finance.product_price", "description": "Fetch the current selling price of the product.", "parameters": {"type": "dict", "properties": {"company": {"type": "string", "description": "The company that sells the product."}, "product": {"type": "string", "description": "The product whose price we want ...
[{"corporate_finance.revenue_forecast": {"company": ["XYZ"], "product": ["A", "Product A"], "sales_units_increase_percentage": [10]}}]
multiple_14
Calculate the depreciated value of a property costing $200,000 with an annual depreciation rate of 3% for 5 years.
[{"name": "finance.property_depreciation", "description": "Calculates the depreciated value of a property given its initial cost, depreciation rate, and the number of years.", "parameters": {"type": "dict", "properties": {"initial_cost": {"type": "integer", "description": "The initial cost of the property."}, "deprecia...
[{"finance.property_depreciation": {"initial_cost": [200000], "depreciation_rate": [3], "years": [5], "monthly": [false, true, ""]}}]
multiple_15
How much is the potential of the Solar farm at location with coordinates [43.653225, -79.383186] in December, given that it has a total solar panel area of 80000 sq ft?
[{"name": "solarFarm.potential", "description": "Estimate the energy output of a solar farm given its location and panel area for a particular month.", "parameters": {"type": "dict", "properties": {"coordinates": {"type": "array", "items": {"type": "float"}, "description": "The geographic coordinates of the location of...
[{"solarFarm.potential": {"coordinates": [[43.653225, -79.383186]], "panelArea": [80000], "month": ["December", "Dec"]}}]
multiple_16
What's the required minimum population size (Ne) for maintaining the genetic diversity of a wild tiger population for the next 100 generations with a probability of 0.95?
[{"name": "species_distribution_modeling.project_range_shift", "description": "Predict the potential future geographic distribution of a species under a specified climate change scenario.", "parameters": {"type": "dict", "properties": {"species": {"type": "string", "description": "The species of animal."}, "climate_sce...
[{"population_genetics.calculate_ne": {"species": ["wild tiger", "tiger"], "generations": [100], "probability": [0.95]}}]
multiple_17
Find the conversion rate from Euro to Dollar at January 1, 2022
[{"name": "currency_conversion.convert", "description": "Converts a specified amount of money from one currency to another at the latest rate.", "parameters": {"type": "dict", "properties": {"from_currency": {"type": "string", "description": "The currency that you want to convert from."}, "to_currency": {"type": "strin...
[{"currency_conversion.get_rate": {"from_currency": ["EUR", "Euro"], "to_currency": ["Dollar", "USD"], "date": ["2022-01-01", "01/01/2022", "1/1/2022", "Jan.1,2022", "January 1, 2022", "2022-1-1"]}}]
multiple_18
Who were the main participants and what was the location of the Battle of Stalingrad?
[{"name": "european_history.war_details", "description": "Get details of a specific historical European war.", "parameters": {"type": "dict", "properties": {"war": {"type": "string", "description": "Name of the war"}}, "required": ["war"]}}, {"name": "european_history.leader_info", "description": "Get information about...
[{"european_history.battle_details": {"battle": ["Battle of Stalingrad", "Stalingrad"]}}]
multiple_19
What are the three great Schism in Christianity history?
[{"name": "religion_history.get_councils", "description": "Retrieves a list of major councils in a specified religion.", "parameters": {"type": "dict", "properties": {"religion": {"type": "string", "description": "Name of the religion for which to retrieve the councils."}, "count": {"type": "integer", "description": "N...
[{"religion_history.get_schisms": {"religion": ["Christianity"], "count": [3]}}]
multiple_20
What is the price to commission a sculpture made of marble with a size of 3 feet?
[{"name": "sculptor_info.get", "description": "Get information about a specific sculptor.", "parameters": {"type": "dict", "properties": {"name": {"type": "string", "description": "The name of the sculptor."}}, "required": ["name"]}}, {"name": "sculpture_price.calculate", "description": "Calculate the estimated price t...
[{"sculpture_price.calculate": {"material": ["marble"], "size": [3], "complexity": ["medium", ""]}}]
multiple_21
I want to generate a sound of 440Hz frequency for 5 seconds. What is the function and how can I use it?
[{"name": "play_sound_wave", "description": "This function is for playing a sound wave file.", "parameters": {"type": "dict", "properties": {"wave_file": {"type": "string", "description": "The filename of the sound wave file to be played."}, "volume": {"type": "float", "description": "The volume level at which the soun...
[{"generate_sound_wave": {"frequency": [440], "duration": [5], "wave_type": ["sine", ""]}}]
multiple_22
What is the record for the most points scored by a single player in an NBA game?
[{"name": "sports_data.basketball.most_points_single_season", "description": "Returns the record for the most points scored by a single player in one season of NBA, including the player name, points scored, and season.", "parameters": {"type": "dict", "properties": {"league": {"type": "string", "description": "The spec...
[{"sports_data.basketball.most_points_single_game": {"league": ["NBA"]}}]
multiple_23
What are the current stats for basketball player LeBron James including points per game, assists, and minutes per game.
[{"name": "basketball.player_stats.get", "description": "Get current statistics for a specified basketball player", "parameters": {"type": "dict", "properties": {"player_name": {"type": "string", "description": "The name of the player."}, "stats_fields": {"type": "array", "description": "List of statistical categories ...
[{"basketball.player_stats.get": {"player_name": ["LeBron James"], "stats_fields": [["points per game", "assists", "minutes per game"], ["points per game", "minutes per game", "assists"], ["assists", "points per game", "minutes per game"], ["assists", "minutes per game", "points per game"], ["minutes per game", "points...
multiple_24
What is the fastest route from London to Edinburgh for playing a chess championship? Also provide an estimate of the distance.
[{"name": "route_planner.calculate_route", "description": "Determines the best route between two points.", "parameters": {"type": "dict", "properties": {"start": {"type": "string", "description": "The starting point of the journey."}, "destination": {"type": "string", "description": "The destination of the journey."}, ...
[{"route_planner.calculate_route": {"start": ["London"], "destination": ["Edinburgh"], "method": ["fastest", ""]}}]
multiple_25
What is the cheapest selling price for the game 'Assassins Creed Valhalla' in the PlayStation Store in the United States?
[{"name": "video_games.store_currency", "description": "Fetches the currency used in a specific region in a gaming platform store.", "parameters": {"type": "dict", "properties": {"platform": {"type": "string", "description": "The gaming platform e.g. PlayStation, Xbox, Nintendo Switch"}, "region": {"type": "string", "d...
[{"video_games.store_price": {"game_title": ["Assassins Creed Valhalla"], "platform": ["PlayStation", "PS"], "region": ["United States", "US", ""]}}]
multiple_26
Find out the rewards for playing Fortnite on Playstation platform with different missions and trophies
[{"name": "game_scores.get", "description": "Retrieve scores and rankings based on player\u2019s performance in a certain game.", "parameters": {"type": "dict", "properties": {"game": {"type": "string", "description": "The name of the game."}, "platform": {"type": "string", "description": "The gaming platform e.g. Xbox...
[{"game_rewards.get": {"game": ["Fortnite"], "platform": ["Playstation", "PS"], "mission": [""], "trophy": [""]}}]
multiple_27
What is the shortest path from Paris, France to Rome, Italy by using a public transportation?
[{"name": "maps.route_times", "description": "Estimates the time it will take to travel from one location to another by a specific mode of transportation.", "parameters": {"type": "dict", "properties": {"route": {"type": "string", "description": "The string representation of the route."}, "mode": {"type": "string", "de...
[{"maps.shortest_path": {"start_location": ["Paris, France", "Paris"], "end_location": ["Rome, Italy", "Rome"], "mode": ["transit"]}}]
multiple_28
What's the root of quadratic equation with coefficients 2, 3 and -4?
[{"name": "solve.quadratic_equation", "description": "Solve a quadratic equation with given coefficients a, b, and c.", "parameters": {"type": "dict", "properties": {"a": {"type": "integer", "description": "Coefficient of x^2."}, "b": {"type": "integer", "description": "Coefficient of x."}, "c": {"type": "integer", "de...
[{"solve.quadratic_equation": {"a": [2], "b": [3], "c": [-4]}}]
multiple_29
Find the intersection points of the functions y=3x+2 and y=2x+3.
[{"name": "functions.zero", "description": "Find the zero points of a function.", "parameters": {"type": "dict", "properties": {"function": {"type": "string", "description": "Function given as a string with x as the variable, e.g. 3x+2"}}, "required": ["function"]}}, {"name": "functions.intersect", "description": "Loca...
[{"functions.intersect": {"function1": ["3x + 2", "lambda x: 3x + 2"], "function2": ["2x + 3", "lambda x: 2x + 3"]}}]
multiple_30
What is the area of a rectangle with length 12 meters and width 5 meters?
[{"name": "rectangle.area", "description": "Calculate the area of a rectangle with given length and width", "parameters": {"type": "dict", "properties": {"length": {"type": "integer", "description": "Length of the rectangle"}, "width": {"type": "integer", "description": "Width of the rectangle"}}, "required": ["length"...
[{"rectangle.area": {"length": [12], "width": [5]}}]
multiple_31
What is the area and perimeter of a rectangle with width of 7 units and length of 10 units?
[{"name": "geometry_square.calculate", "description": "Calculates the area and perimeter of a square given the side length.", "parameters": {"type": "dict", "properties": {"side": {"type": "integer", "description": "The length of a side of the square."}}, "required": ["side"]}}, {"name": "geometry_circle.calculate", "d...
[{"geometry_rectangle.calculate": {"width": [7], "length": [10]}}]
multiple_32
Calculate the volume of a cone with radius 4 and height 7.
[{"name": "geometry.calculate_cone_volume", "description": "Calculate the volume of a cone given the radius and height.", "parameters": {"type": "dict", "properties": {"radius": {"type": "integer", "description": "Radius of the cone base."}, "height": {"type": "integer", "description": "Height of the cone."}, "round_of...
[{"geometry.calculate_cone_volume": {"radius": [4], "height": [7], "round_off": ["", 0]}}]
multiple_33
Find the integral of the function f(x) = 3x^2 from 1 to 2.
[{"name": "calculate_derivative", "description": "Calculate the derivative of a single-variable function.", "parameters": {"type": "dict", "properties": {"func": {"type": "string", "description": "The function to be differentiated."}, "x_value": {"type": "integer", "description": "The x-value at which the derivative sh...
[{"calculate_integral": {"func": ["3x**2", "lambda x: 3x**2"], "a": [1], "b": [2]}}]
multiple_34
Calculate the Least Common Multiple (LCM) of 18 and 12.
[{"name": "math.gcd", "description": "Calculates the greatest common divisor of two numbers.", "parameters": {"type": "dict", "properties": {"num1": {"type": "integer", "description": "The first number."}, "num2": {"type": "integer", "description": "The second number."}}, "required": ["num1", "num2"]}}, {"name": "math....
[{"math.lcm": {"num1": [18], "num2": [12]}}]
multiple_35
Calculate the greatest common divisor between 128 and 256.
[{"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": {"type": "integer", "description": "Second number to calculate lcm for."}, ...
[{"calculate_gcd": {"num1": [128], "num2": [256], "algorithm": ["euclidean", ""]}}]
multiple_36
Find out how fast an object was going if it started from rest and traveled a distance of 20 meters over 4 seconds due to a constant acceleration?
[{"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."}, "final_speed": {"type": "float", "description": "The fina...
[{"kinematics.calculate_speed_from_rest": {"distance": [20], "time": [4], "initial_speed": [0, ""]}}]
multiple_37
Find the final velocity of an object thrown up at 40 m/s after 6 seconds.
[{"name": "physics.wave_velocity", "description": "Calculate the velocity of a wave based on its frequency and wavelength.", "parameters": {"type": "dict", "properties": {"frequency": {"type": "float", "description": "The frequency of the wave in Hz."}, "wavelength": {"type": "float", "description": "The wavelength of ...
[{"kinematics.final_velocity": {"initial_velocity": [40], "time": [6], "acceleration": [-9.81, ""]}}]
multiple_38
Find a book 'The Alchemist' in the library branches within New York city.
[{"name": "library.reserve_book", "description": "Reserves a book in the library if available.", "parameters": {"type": "dict", "properties": {"book_id": {"type": "string", "description": "The id of the book to reserve."}, "branch_id": {"type": "string", "description": "The id of the library branch to reserve from."}, ...
[{"library.search_book": {"book_name": ["The Alchemist"], "city": ["New York", "New York, NY", "New York City", "NYC", "NY"], "availability": ["", false], "genre": [""]}}]
multiple_39
Find a ride from New York to Philadelphia with maximum cost of $50
[{"name": "grocery_delivery.order", "description": "Order grocery items from a specific location with optional delivery price limit", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The location of the grocery store"}, "items": {"type": "array", "items": {"type": "string"}, ...
[{"ride_hailing.get_rides": {"source": ["New York", "New York, NY", "New York City", "NYC", "NY"], "destination": ["Philadelphia"], "max_cost": [50]}}]
multiple_40
Calculate the strength of magnetic field given distance is 8 meters and current is 12 Amperes?
[{"name": "electromagnetism.ampere_law", "description": "Calculate magnetic field strength using Ampere's Circuital Law. Input the current enclosed by a circular path and the distance from the center of the circle. Can be applied to a cylindrical or spherical symmetry of consistent magnetic field. ", "parameters": {"ty...
[{"electromagnetism.biot_savart_law": {"current": [12], "distance": [8], "mu0": [1.256e-06, 1.256e-06, ""]}}]
multiple_41
Calculate the magnetic field at point P using Ampere’s law where current I is 10 Amperes and r is 0.01 meter.
[{"name": "electric_field.calculate", "description": "Calculate the electric field based on the amount of charge and distance from the charge", "parameters": {"type": "dict", "properties": {"Q": {"type": "float", "description": "The amount of charge in coulombs."}, "r": {"type": "float", "description": "The distance fr...
[{"magnetic_field.calculate": {"I": [10], "r": [0.01]}}]
multiple_42
Calculate the final temperature when 2 moles of gas at 300 K are mixed with 3 moles of the same gas at 400 K.
[{"name": "calculate_final_temperature", "description": "Calculate the final temperature when different quantities of the same gas at different temperatures are mixed.", "parameters": {"type": "dict", "properties": {"quantity1": {"type": "integer", "description": "The quantity of the first sample of gas."}, "temperatur...
[{"calculate_final_temperature": {"quantity1": [2], "temperature1": [300], "quantity2": [3], "temperature2": [400]}}]
multiple_43
What is the energy produced by 5 mol of glucose (C6H12O6)?
[{"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."}, "efficiency": {"type": "float", "description": "The conversion effi...
[{"biological.calc_energy": {"mols": [5], "substance": ["C6H12O6"], "joules_per_mol": [2800, ""]}}]
multiple_44
How much will I weigh on Mars if my weight on Earth is 70 kg?
[{"name": "unit_conversion.convert", "description": "Convert a value from one unit to another.", "parameters": {"type": "dict", "properties": {"value": {"type": "float", "description": "The value to be converted."}, "from_unit": {"type": "string", "description": "The unit to convert from."}, "to_unit": {"type": "string...
[{"calculate.weight_in_space": {"weight_earth_kg": [70], "planet": ["Mars"]}}]
multiple_45
Calculate how many years ago was the Ice age?
[{"name": "geology.get_era", "description": "Get the estimated date of a geological era.", "parameters": {"type": "dict", "properties": {"era_name": {"type": "string", "description": "The name of the geological era. e.g Ice age"}, "calculate_years_ago": {"type": "boolean", "description": "True if years ago is to be cal...
[{"geology.get_era": {"era_name": ["Ice age"], "calculate_years_ago": [true]}}]
multiple_46
Sort this list of names in ascending order: ['Sam', 'Alice', 'Jack']
[{"name": "filter_list", "description": "Filters elements of a list based on a given condition", "parameters": {"type": "dict", "properties": {"elements": {"type": "array", "items": {"type": "string"}, "description": "The list of elements to filter."}, "condition": {"type": "string", "description": "The condition to fi...
[{"sort_list": {"elements": [["Sam", "Alice", "Jack"]], "order": ["asc", ""]}}]
multiple_47
Calculate the cosine similarity between vector A [3, 2, 1] and vector B [1, 2, 3].
[{"name": "cosine_similarity.calculate", "description": "Calculate the cosine similarity between two vectors.", "parameters": {"type": "dict", "properties": {"vector1": {"type": "array", "items": {"type": "integer"}, "description": "The first vector for calculating cosine similarity."}, "vector2": {"type": "array", "it...
[{"cosine_similarity.calculate": {"vector1": [[3, 2, 1]], "vector2": [[1, 2, 3]], "rounding": ["", 0]}}]
multiple_48
Find me a pet-friendly library with facilities for disabled people in New York City.
[{"name": "store.find_nearby", "description": "Locate nearby stores based on specific preferences such as being pet-friendly and having disabled access facilities.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The city, for example, New York City, NY"}, "preferences": {"...
[{"library.find_nearby": {"location": ["New York City", "NYC", "New York City, NY"], "preferences": [["Pet-friendly", "Disabled Access"], ["Disabled Access", "Pet-friendly"]]}}]
multiple_49
Calculate the compound interest for an amount of 1500 for a duration of 2 years with an annual interest rate of 2.5%.
[{"name": "calc_Compound_Interest", "description": "Compute compound interest.", "parameters": {"type": "dict", "properties": {"principle_amount": {"type": "integer", "description": "The principle amount that is invested."}, "duration": {"type": "integer", "description": "Duration of time period in years."}, "annual_ra...
[{"calc_Compound_Interest": {"principle_amount": [1500], "duration": [2], "annual_rate": [2.5], "compound_freq": ["", 1]}}]
multiple_50
Predict the house prices for the next month in New York.
[{"name": "house_price_forecast", "description": "Predict the house prices for a specific location and time frame.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The city that you want to get the house price prediction for."}, "months": {"type": "integer", "description": ...
[{"house_price_forecast": {"location": ["New York", "New York, NY", "NYC", "New York City"], "months": [1], "features": [[], ""]}}]
multiple_51
Calculate the probability of rolling a sum of 7 on a roll of two dice.
[{"name": "dice_roll_probability", "description": "Calculate the probability of a specific sum appearing from rolling two dice.", "parameters": {"type": "dict", "properties": {"desired_sum": {"type": "integer", "description": "The sum for which to calculate the probability."}, "n_rolls": {"type": "integer", "descriptio...
[{"dice_roll_probability": {"desired_sum": [7], "sides_per_die": [6], "n_rolls": [2]}}]
multiple_52
I have 100 euro. How much is it in USD?
[{"name": "unit_conversion", "description": "Convert a value from one unit to another.", "parameters": {"type": "dict", "properties": {"value": {"type": "float", "description": "The value to be converted."}, "from_unit": {"type": "string", "description": "The unit to convert from."}, "to_unit": {"type": "string", "desc...
[{"currency_conversion": {"amount": [100], "from_currency": ["Euro", "EUR"], "to_currency": ["USD", "US Dollar"]}}]
multiple_53
Predict the house prices for next 5 years based on interest rates and unemployment rates.
[{"name": "linear_regression", "description": "Applies linear regression to a given set of independent variables to make a prediction.", "parameters": {"type": "dict", "properties": {"independent_var": {"type": "array", "items": {"type": "string"}, "description": "The independent variables."}, "dependent_var": {"type":...
[{"linear_regression": {"independent_var": [["interest rates", "unemployment rates"], ["interest_rate", "unemployment_rate"], ["interest rate", "unemployment rate"]], "dependent_var": ["house_price", "house price"], "forecast_period": [5]}}]
multiple_54
Find out the historical dividend payments of Apple Inc for last five years.
[{"name": "corporate_finance.dividend_data", "description": "Get historical dividend data of a specific company within a particular duration.", "parameters": {"type": "dict", "properties": {"company": {"type": "string", "description": "The company that you want to get the dividend data for."}, "years": {"type": "intege...
[{"corporate_finance.dividend_data": {"company": ["Apple Inc", "Apple", "Apple Inc."], "years": [5], "frequency": ["", "annually"]}}]
multiple_55
Predict the stock price for Google for the next 3 days.
[{"name": "stock_forecast", "description": "Predict the future stock price for a specific company and time frame.", "parameters": {"type": "dict", "properties": {"company": {"type": "string", "description": "The company that you want to get the stock price prediction for."}, "days": {"type": "integer", "description": "...
[{"stock_forecast": {"company": ["Google", "GOOG"], "days": [3], "model": ["", "regression"]}}]
multiple_56
Find the average closing price of Apple stock in the past 60 days
[{"name": "volume_traded", "description": "Calculate the total volume of stocks traded over a certain period of time", "parameters": {"type": "dict", "properties": {"company": {"type": "string", "description": "Name of the company to get data for"}, "days": {"type": "integer", "description": "Number of past days to cal...
[{"avg_closing_price": {"company": ["Apple"], "days": [60], "data_source": ["yahoo finance", ""]}}]
multiple_57
Can you please calculate the compound interest for a principle of $1000, annual rate of 5% over 10 years with 4 compound per year.
[{"name": "financial.compound_interest", "description": "Calculates compound interest.", "parameters": {"type": "dict", "properties": {"principle": {"type": "integer", "description": "The initial amount of money that is being compounded."}, "rate": {"type": "float", "description": "The annual interest rate, as a decima...
[{"financial.compound_interest": {"principle": [1000], "rate": [0.05], "time": [10], "n": [4]}}]
multiple_58
Search for divorce law specialists in Los Angeles
[{"name": "doctor.search", "description": "Search for a doctor based on area of expertise and location", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The city and state, e.g. Los Angeles, CA"}, "specialization": {"type": "string", "description": "Medical specialization. F...
[{"lawyer.search": {"location": ["Los Angeles", "Los Angeles, CA", "LA"], "expertise": ["Divorce"]}}]
multiple_59
Find lawyers specializing in criminal law near me in New York.
[{"name": "car_rental", "description": "Rent a car near you based on your preference.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "Your location"}, "car_type": {"type": "array", "items": {"type": "string"}, "description": "Type of cars that you want to rent."}, "fuel_ty...
[{"lawyer_finder": {"location": ["New York", "New York, NY", "NY", "New York City", "NYC"], "specialization": [["Criminal Law"], ["criminal law"]], "experience": ["", 1]}}]
multiple_60
What will be the humidity and temperature for New York City after 7 days?
[{"name": "event_search", "description": "Search for events happening in a specific location for a future date.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The city that you want to get the event information for."}, "days": {"type": "integer", "description": "Number of...
[{"humidity_temperature_forecast": {"location": ["New York City", "NYC"], "days": [7]}}]
multiple_61
Find a Landscape Architect who is experienced 5 years in small space garden design in Portland
[{"name": "home_renovation_expert.find_specialty", "description": "Search for a home renovation expert based on the location and specialization", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "City and state where the professional is based, e.g. Portland, OR."}, "specializa...
[{"landscape_architect.find_specialty": {"location": ["Portland", "Portland, OR"], "specialization": ["small space garden design"], "years_experience": [5]}}]
multiple_62
Find me the closest nature park that allows camping and has scenic views in Boston, MA.
[{"name": "nature_park.find_nearby", "description": "Locate nearby nature parks based on specific criteria like camping availability and scenic views.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The city and state, e.g. Boston, MA."}, "features": {"type": "array", "ite...
[{"nature_park.find_nearby": {"location": ["Boston, MA", "Boston"], "features": [["Camping", "Scenic View"], ["Scenic View", "Camping"]]}}]
multiple_63
What will be the air quality index of New York for the next week?
[{"name": "air_quality_forecast", "description": "Retrieve an air quality forecast for a specific location and time frame.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The city that you want to get the air quality forecast for."}, "days": {"type": "integer", "descriptio...
[{"air_quality_forecast": {"location": ["New York", "New York, NY", "New York City", "NYC"], "days": [7]}}]
multiple_64
Give me the UV index for Tokyo for tomorrow, June01 2023.
[{"name": "uv_index.get_future", "description": "Retrieve UV index data for a specified location and date.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The location to retrieve the UV index for."}, "date": {"type": "string", "description": "The date for the UV index, in...
[{"uv_index.get_future": {"location": ["Tokyo"], "date": ["06-01-2023"]}}]
multiple_65
Find the distance between New York City and Los Angeles.
[{"name": "timezones.get_difference", "description": "Find the time difference between two cities.", "parameters": {"type": "dict", "properties": {"city1": {"type": "string", "description": "The first city."}, "city2": {"type": "string", "description": "The second city."}}, "required": ["city1", "city2"]}}, {"name": "g...
[{"geodistance.find": {"origin": ["New York City", "NYC"], "destination": ["Los Angeles", "LA"], "unit": ["miles", ""]}}]
multiple_66
How much traffic should I expect from Las Vegas to Los Angeles this weekend?
[{"name": "calculate_distance", "description": "Calculate distance between two locations.", "parameters": {"type": "dict", "properties": {"start_point": {"type": "string", "description": "Starting point of the journey."}, "end_point": {"type": "string", "description": "Ending point of the journey."}}, "required": ["sta...
[{"traffic_estimate": {"start_location": ["Las Vegas"], "end_location": ["Los Angeles"], "time_period": ["weekend"]}}]
multiple_67
Translate Hello, how are you? from English to French.
[{"name": "translate", "description": "Translate text from a specified source language to a specified target language.", "parameters": {"type": "dict", "properties": {"text": {"type": "string", "description": "The text to be translated."}, "source_language": {"type": "string", "description": "The language the text is c...
[{"translate": {"text": ["Hello, how are you?"], "source_language": ["English"], "target_language": ["French"]}}]
multiple_68
Can I find a historical fiction book at the New York public library?
[{"name": "library.search_books", "description": "Search for a book in a given library with optional parameters", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "Name or city of library"}, "genre": {"type": "string", "description": "Genre of the book"}, "title": {"type": "st...
[{"library.search_books": {"location": ["New York", "New York, NY", "New York City", "New York City, NY", "NYC", "New York public library"], "genre": ["Historical Fiction", "historical fiction"], "title": [""]}}]
multiple_69
Determine my personality type based on the five factor model with given information: I'm talkative, gets nervous easily, has few artistic interests, tend to be lazy and has a forgiving nature.
[{"name": "MBTI.analyse", "description": "Analyse personality based on the Myers-Briggs Type Indicator (MBTI) which sorts for preferences and generates a 4-letter personality type.", "parameters": {"type": "dict", "properties": {"thinking_vs_feeling": {"type": "string", "description": "Preference of user between thinki...
[{"five_factor_model.analyse": {"talkative": [true], "nervous": [true], "artistic_interests": [false], "lazy": [true], "forgiving": [true]}}]
multiple_70
Who were the kings of France during the 18th century?
[{"name": "european_history.get_events", "description": "Provides a list of major historical events based on the specified country and century.", "parameters": {"type": "dict", "properties": {"country": {"type": "string", "description": "Country name."}, "century": {"type": "integer", "description": "Century as an inte...
[{"european_history.get_monarchs": {"country": ["France"], "century": [18]}}]
multiple_71
How many veterans were there in the United States in the year 1954?
[{"name": "get_bureau_statistics", "description": "Retrieve statistical data for a specific year and statistical category", "parameters": {"type": "dict", "properties": {"year": {"type": "integer", "description": "The year for which to retrieve the statistical data"}, "category": {"type": "string", "description": "The ...
[{"get_population": {"year": [1954], "category": ["veterans"]}}]
multiple_72
What was the population of California in 1970?
[{"name": "us_history.population_by_state_year", "description": "Retrieve historical population data for a specific U.S. state and year.", "parameters": {"type": "dict", "properties": {"state": {"type": "string", "description": "The U.S. state for which to retrieve the population."}, "year": {"type": "integer", "descri...
[{"us_history.population_by_state_year": {"state": ["California", "CA"], "year": [1970]}}]
multiple_73
Who was the founder of Buddhism and where was it originated?
[{"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 the core beliefs and practices."}}, "required": ["religion"]}...
[{"religion.get_origin": {"religion": ["Buddhism"]}}]
multiple_74
Find the price of Van Gogh's painting 'Starry Night' on all auction platforms.
[{"name": "art_auction.fetch_artwork_price", "description": "Fetch the price of a specific artwork on the auction platform.", "parameters": {"type": "dict", "properties": {"artwork_name": {"type": "string", "description": "The name of the artwork to be searched."}, "artist": {"type": "string", "description": "The artis...
[{"art_auction.fetch_artwork_price": {"artwork_name": ["Starry Night"], "artist": ["Van Gogh"], "platform": ["all", ""]}}]
multiple_75
Which paint color is currently most popular for living rooms?
[{"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."}, "days": {"type": "integer", "description": "Number of days fo...
[{"paint_color.trends": {"room": ["living room", "Living room"], "period": ["", "Daily"]}}]
multiple_76
I want to order a custom bronze sculpture of a horse. What material options are available?
[{"name": "painting.create_custom", "description": "Order a custom painting with your preferred color.", "parameters": {"type": "dict", "properties": {"subject": {"type": "string", "description": "The subject of the painting, e.g. horse"}, "color": {"type": "string", "enum": ["Red", "Blue", "Green", "Yellow", "Black"],...
[{"sculpture.create_custom": {"item": ["horse", "Horse"], "material": ["Bronze", "bronze"], "size": ["", 12]}}]
multiple_77
Search for famous contemporary sculptures in New York.
[{"name": "tourist_attraction.find", "description": "Search for tourist attractions based on type and location.", "parameters": {"type": "dict", "properties": {"attractionType": {"type": "string", "description": "Type of the attraction. E.g., monument, museum, park."}, "location": {"type": "string", "description": "Loc...
[{"artwork_search.find": {"type": ["sculpture"], "location": ["New York", "New York, NY", "New York City", "NYC"], "era": ["contemporary", ""]}}]
multiple_78
Get me information about Natural History Museum in London including timings, exhibitions, and accessibility.
[{"name": "tourist_spot_info", "description": "Retrieve information about a specific tourist spot.", "parameters": {"type": "dict", "properties": {"spot": {"type": "string", "description": "The name of the tourist spot you want to get information for."}, "city": {"type": "string", "description": "The city where the tou...
[{"museum_info": {"museum": ["Natural History Museum"], "city": ["London"], "features": [["timings", "exhibitions", "accessibility"], ["exhibitions", "timings", "accessibility"], ["exhibitions", "accessibility", "timings"], ["accessibility", "timings", "exhibitions"], ["accessibility", "exhibitions", "timings"], ["timi...
multiple_79
Find art exhibitions for the upcoming month in the Museum of Modern Art, New York.
[{"name": "restaurant_info", "description": "Get restaurant information for a specific area.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "Location for which to find restaurants."}, "food_type": {"type": "string", "description": "Type of cuisine for which to find restaur...
[{"exhibition_info": {"museum_name": ["Museum of Modern Art", "MOMA", "Museum of Modern Art, New York"], "month": ["", 1]}}]
multiple_80
Find a local guitar shop that also offers violin lessons in Nashville.
[{"name": "music_shop.find_nearby", "description": "Locate nearby music shops based on specific criteria like instrument lessons availability.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The city and state, e.g. Nashville, TN"}, "services": {"type": "array", "items": {...
[{"music_shop.find_nearby": {"location": ["Nashville, TN", "Nashville"], "services": [["Violin Lessons"]], "instruments": [["Guitars"]]}}]
multiple_81
Book a ticket for the upcoming Eminem concert in New York City, I would like to get the one with backstage access.
[{"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."}, "location": {"type": "string", "description": ...
[{"concert.book_ticket": {"artist": ["Eminem"], "location": ["New York City", "NYC"], "add_ons": [["Backstage Pass"]]}}]
multiple_82
Play a song in C Major key at tempo 120 bpm.
[{"name": "music.generate", "description": "Generate a piece of music given a key, tempo, and time signature.", "parameters": {"type": "dict", "properties": {"key": {"type": "string", "description": "The key of the piece, e.g., C Major."}, "tempo": {"type": "integer", "description": "Tempo of the piece in beats per min...
[{"music.generate": {"key": ["C Major"], "tempo": [120], "time_signature": ["", "4/4"]}}]
multiple_83
How many goals has Lionel Messi scored for Barcelona till date?
[{"name": "team_stats.get_top_scorer", "description": "Fetch the top scorer of a specified football team.", "parameters": {"type": "dict", "properties": {"team_name": {"type": "string", "description": "The name of the football team."}, "competition": {"type": "string", "description": "Competition for which to fetch sta...
[{"player_stats.get_all_time_goals": {"player_name": ["Lionel Messi"], "team_name": ["Barcelona"], "competition": [""]}}]
multiple_84
Give me the top 10 goal scorers in the UEFA Champions League from Barcelona team.
[{"name": "getTopGoalScorers", "description": "Returns the top goal scorers for a specific competition and team", "parameters": {"type": "dict", "properties": {"competition": {"type": "string", "description": "The name of the competition (for example, 'UEFA Champions League')."}, "team": {"type": "string", "description...
[{"getTopGoalScorers": {"competition": ["UEFA Champions League"], "team": ["Barcelona"], "number": [10]}}]
multiple_85
Get the soccer scores for Real Madrid games in La Liga for the last 5 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 whose scores are to be retrieved."}, "league": {"type": "st...
[{"soccer_scores.get_scores": {"team": ["Real Madrid"], "league": ["La Liga"], "rounds": [5]}}]
multiple_86
What are some recommended board games for 2 players and strategy based from store BoardGameGeek?
[{"name": "BoardGameGeek.recommend", "description": "Generate game recommendation from BoardGameGeek store based on number of players and category.", "parameters": {"type": "dict", "properties": {"numPlayers": {"type": "integer", "description": "The number of players who will play the game."}, "category": {"type": "str...
[{"BoardGameGeek.recommend": {"numPlayers": [2], "category": ["strategy"], "difficulty": ["", "beginner"]}}]
multiple_87
Find the latest update or patch for the game 'Cyberpunk 2077' on Xbox platform.
[{"name": "games.reviews.find", "description": "Find reviews for a specific game.", "parameters": {"type": "dict", "properties": {"game": {"type": "string", "description": "The name of the game."}, "region": {"type": "string", "description": "The region where the reviews are coming from (optional, default is 'global')"...
[{"games.update.find": {"game": ["Cyberpunk 2077"], "platform": ["Xbox"], "region": ["", "global"]}}]
multiple_88
Find me the number of active players in the game 'World of Warcraft' in 2020.
[{"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."}, "year": {"type": "integer", "description": "The year in q...
[{"video_games.get_player_count": {"game_title": ["World of Warcraft"], "year": [2020], "platform": ["", "PC"]}}]
multiple_89
Find a healthy lunch recipe under 500 calories that uses chicken and mushrooms.
[{"name": "restaurant_search", "description": "Searches for restaurants based on a list of preferred ingredients and maximum calorie count.", "parameters": {"type": "dict", "properties": {"ingredients": {"type": "array", "items": {"type": "string"}, "description": "A list of ingredients you prefer in the restaurant's d...
[{"recipe_search": {"ingredients": [["chicken", "mushrooms"], ["mushrooms", "chicken"]], "calories": [500], "meal": ["lunch", ""]}}]
multiple_90
I want a seafood restaurant in Seattle that can accommodate a group of 5.
[{"name": "events.find_event", "description": "Find events suitable for groups based on specified criteria such as location and event type.", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "The city and state, e.g. Seattle, WA"}, "event_type": {"type": "array", "items": {"ty...
[{"restaurant.find_group": {"location": ["Seattle", "Seattle, WA"], "cuisine": [["Seafood"]], "group_size": [5]}}]
multiple_91
Can I find a good cooking recipe for apple pie using less than 5 ingredients?
[{"name": "restaurant.find", "description": "Locate restaurants based on specific criteria such as cuisine and price range", "parameters": {"type": "dict", "properties": {"cuisine": {"type": "string", "description": "The type of cuisine preferred."}, "price": {"type": "array", "items": {"type": "string"}, "description"...
[{"recipe.find": {"mainIngredient": ["apple pie", "apple"], "ingredientLimit": [4]}}]
multiple_92
Get me a list of available vegetarian and gluten-free foods at the Walmart near Denver.
[{"name": "safeway.vegan_products", "description": "Get available vegan products at specified Safeway store", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "City and state where the Safeway store is located, e.g. Denver, CO"}, "categories": {"type": "array", "items": {"type...
[{"walmart.vegan_products": {"location": ["Denver, CO", "Denver"], "categories": [["vegan", "gluten-free"], ["gluten-free", "vegan"]]}}]
multiple_93
Book a deluxe room for 2 nights at the Marriott hotel in New York and add breakfast as an extra service
[{"name": "car.rental", "description": "Rent a car at the specified location for a specific number of days", "parameters": {"type": "dict", "properties": {"location": {"type": "string", "description": "Location of the car rental."}, "days": {"type": "integer", "description": "Number of days for which to rent the car."}...
[{"hotel.book": {"location": ["New York", "New York, NY", "NYC"], "roomType": ["deluxe", "Deluxe"], "nights": [2], "additional_services": [["breakfast"]]}}]
multiple_94
I want to book a suite with queen size bed for 3 nights in Hilton New York. Can you find the pricing for me?
[{"name": "hotel_room_pricing.get", "description": "Get pricing for a specific type of hotel room for specified number of nights.", "parameters": {"type": "dict", "properties": {"hotelName": {"type": "string", "description": "The name of the hotel e.g. Hilton New York"}, "roomType": {"type": "string", "description": "T...
[{"hotel_room_pricing.get": {"hotelName": ["Hilton New York"], "roomType": ["suite with queen size bed"], "nights": [3]}}]
multiple_95
Convert 200 euros to US dollars using current exchange rate.
[{"name": "currency_exchange.convert", "description": "Converts a value from one currency to another using the latest exchange rate.", "parameters": {"type": "dict", "properties": {"amount": {"type": "integer", "description": "The amount of money to be converted."}, "from_currency": {"type": "string", "description": "T...
[{"currency_exchange.convert": {"amount": [200], "from_currency": ["EUR"], "to_currency": ["USD"], "live_conversion": [true]}}]
multiple_96
Solve a quadratic equation where a=2, b=6, and c=5
[{"name": "get_stock_info", "description": "Retrieves information about a specific stock based on company's name.", "parameters": {"type": "dict", "properties": {"company_name": {"type": "string", "description": "The name of the company."}, "detail_level": {"type": "string", "description": "Level of detail for stock in...
[{"solve_quadratic_equation": {"a": [2], "b": [6], "c": [5]}}]
multiple_97
What's the area of a circle with a radius of 10?
[{"name": "geometry.area_circle", "description": "Calculate the area of a circle given the radius.", "parameters": {"type": "dict", "properties": {"radius": {"type": "integer", "description": "The radius of the circle."}, "units": {"type": "string", "description": "The units in which the radius is measured (defaults to...
[{"geometry.area_circle": {"radius": [10], "units": ["", "meters"]}}]
multiple_98
Calculate the circumference of a circle with radius 3
[{"name": "get_earliest_reference", "description": "Retrieve the earliest historical reference of a person.", "parameters": {"type": "dict", "properties": {"name": {"type": "string", "description": "The name of the person."}, "source": {"type": "string", "enum": ["scriptures", "historical records"], "description": "Sou...
[{"geometry.circumference": {"radius": [3], "units": ["cm", ""]}}]
multiple_99
Calculate the derivative of the function 2x^2 at x = 1.
[{"name": "calculus.derivative", "description": "Compute the derivative of a function at a specific value.", "parameters": {"type": "dict", "properties": {"function": {"type": "string", "description": "The function to calculate the derivative of."}, "value": {"type": "integer", "description": "The value where the deriv...
[{"calculus.derivative": {"function": ["2x**2", "lambda x: 2x**2"], "value": [1], "function_variable": ["x", ""]}}]
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
31