| {"id": "T0-001", "tier": "T0", "category": "simple", "query": "What is the weather like in Paris?", "tools": [{"name": "get_weather", "description": "Get the current weather for a city", "json_schema": {"type": "object", "properties": {"city": {"type": "string", "description": "The city name"}, "unit": {"type": "string", "enum": ["celsius", "fahrenheit"], "description": "Temperature unit"}}, "required": []}}], "ground_truth_calls": [{"name": "get_weather", "arguments": {"city": "Paris", "unit": "celsius"}}], "expects_call": true} |
| {"id": "T0-002", "tier": "T0", "category": "simple", "query": "Search for Python tutorials online", "tools": [{"name": "web_search", "description": "Search the web", "json_schema": {"type": "object", "properties": {"query": {"type": "string", "description": "Search query"}, "max_results": {"type": "integer", "description": "Max number of results"}}, "required": []}}], "ground_truth_calls": [{"name": "web_search", "arguments": {"query": "Python tutorials", "max_results": 10}}], "expects_call": true} |
| {"id": "T0-003", "tier": "T0", "category": "simple", "query": "What time is it in Tokyo?", "tools": [{"name": "get_time", "description": "Get the current time in a timezone", "json_schema": {"type": "object", "properties": {"timezone": {"type": "string", "description": "The timezone identifier"}}, "required": []}}], "ground_truth_calls": [{"name": "get_time", "arguments": {"timezone": "Asia/Tokyo"}}], "expects_call": true} |
| {"id": "T0-004", "tier": "T0", "category": "simple", "query": "Convert 100 USD to EUR", "tools": [{"name": "currency_convert", "description": "Convert currency amounts", "json_schema": {"type": "object", "properties": {"amount": {"type": "number", "description": "Amount to convert"}, "from_currency": {"type": "string"}, "to_currency": {"type": "string"}}, "required": []}}], "ground_truth_calls": [{"name": "currency_convert", "arguments": {"amount": 100, "from_currency": "USD", "to_currency": "EUR"}}], "expects_call": true} |
| {"id": "T0-005", "tier": "T0", "category": "simple", "query": "Calculate the square root of 144", "tools": [{"name": "calculate", "description": "Perform a mathematical calculation", "json_schema": {"type": "object", "properties": {"expression": {"type": "string", "description": "Math expression to evaluate"}}, "required": []}}], "ground_truth_calls": [{"name": "calculate", "arguments": {"expression": "sqrt(144)"}}], "expects_call": true} |
| {"id": "T0-006", "tier": "T0", "category": "simple", "query": "Get the stock price of Apple", "tools": [{"name": "get_stock_price", "description": "Get the current stock price", "json_schema": {"type": "object", "properties": {"ticker": {"type": "string", "description": "Stock ticker symbol"}}, "required": []}}], "ground_truth_calls": [{"name": "get_stock_price", "arguments": {"ticker": "AAPL"}}], "expects_call": true} |
| {"id": "T0-007", "tier": "T0", "category": "simple", "query": "Translate 'Hello World' to Spanish", "tools": [{"name": "translate_text", "description": "Translate text to another language", "json_schema": {"type": "object", "properties": {"text": {"type": "string"}, "target_language": {"type": "string"}}, "required": []}}], "ground_truth_calls": [{"name": "translate_text", "arguments": {"text": "Hello World", "target_language": "Spanish"}}], "expects_call": true} |
| {"id": "T0-008", "tier": "T0", "category": "simple", "query": "Set a reminder for my meeting tomorrow at 9am", "tools": [{"name": "set_reminder", "description": "Set a calendar reminder", "json_schema": {"type": "object", "properties": {"message": {"type": "string"}, "time": {"type": "string", "description": "ISO 8601 datetime"}, "notify_minutes_before": {"type": "integer"}}, "required": []}}], "ground_truth_calls": [{"name": "set_reminder", "arguments": {"message": "Meeting", "time": "2024-01-01T09:00:00", "notify_minutes_before": 15}}], "expects_call": true} |
| {"id": "T0-009", "tier": "T0", "category": "irrelevance", "query": "Tell me a joke about programming", "tools": [{"name": "get_weather", "description": "Get the current weather", "json_schema": {"type": "object", "properties": {"city": {"type": "string"}}, "required": []}}], "ground_truth_calls": [], "expects_call": false} |
| {"id": "T0-010", "tier": "T0", "category": "irrelevance", "query": "What is the capital of France?", "tools": [{"name": "calculate", "description": "Perform a mathematical calculation", "json_schema": {"type": "object", "properties": {"expression": {"type": "string"}}, "required": []}}], "ground_truth_calls": [], "expects_call": false} |
|
|