text stringlengths 17 139 | label stringclasses 5
values |
|---|---|
What is 2 plus 2? | simple |
What is the capital of France? | simple |
How many days are in a week? | simple |
What color is the sky on a clear day? | simple |
What is the boiling point of water in Celsius? | simple |
Convert 10 kilometers to miles. | simple |
What time zone is London in? | simple |
What is the square root of 81? | simple |
Who wrote Romeo and Juliet? | simple |
What year did World War II end? | simple |
How many continents are there? | simple |
What is the chemical symbol for gold? | simple |
What is 15 percent of 200? | simple |
How many minutes are in three hours? | simple |
What is the tallest mountain in the world? | simple |
Name the planets in order from the sun. | simple |
What is the currency used in Japan? | simple |
How do you say hello in Spanish? | simple |
What is the freezing point of water in Fahrenheit? | simple |
How many sides does a hexagon have? | simple |
What is the largest ocean on Earth? | simple |
Who is the current president of the United States? | simple |
What is 12 multiplied by 8? | simple |
How many bones are in the human body? | simple |
What is the opposite of hot? | simple |
Spell the word necessary. | simple |
What day comes after Wednesday? | simple |
What is the plural of mouse? | simple |
How many legs does a spider have? | simple |
What is the capital of Australia? | simple |
Convert 5 feet to inches. | simple |
What is the smallest prime number? | simple |
Name three primary colors. | simple |
What language is spoken in Brazil? | simple |
What is today's date format in ISO 8601? | simple |
How many sides does a pentagon have? | simple |
What language is spoken in Sweden? | simple |
Convert 12 kilograms to pounds. | simple |
What is 49 times 88? | simple |
Who wrote Moby Dick? | simple |
What is the plural of half? | simple |
Convert 5 inches to centimeters. | simple |
What is 74 plus 78? | simple |
What is 40 minus 22? | simple |
Convert 10 kilograms to pounds. | simple |
Convert 33 liters to gallons. | simple |
What is 55 divided by 63? | simple |
How many weeks are in 2 months? | simple |
What is 20 percent of 784? | simple |
Convert 44 Fahrenheit to Celsius. | simple |
What is 10 divided by 93? | simple |
Convert 30 pounds to kilograms. | simple |
What is the capital of Norway? | simple |
What is 29 divided by 58? | simple |
Spell the word accommodate. | simple |
What is 25 percent of 671? | simple |
Who painted Guernica? | simple |
Convert 89 meters to feet. | simple |
Convert 3 meters to feet. | simple |
What is the opposite of happy? | simple |
What is the capital of Thailand? | simple |
What is 67 plus 48? | simple |
What is 25 percent of 402? | simple |
What is the capital of Switzerland? | simple |
What is 37 times 6? | simple |
What is the currency used in Denmark? | simple |
Convert 71 kilometers to miles. | simple |
How many days are in 12 weeks? | simple |
What is 6 plus 18? | simple |
What is 55 divided by 8? | simple |
What is 90 minus 64? | simple |
What is 10 percent of 433? | simple |
What year did the French Revolution start? | simple |
How many sides does a rhombus have? | simple |
Convert 53 liters to gallons. | simple |
What is 60 percent of 803? | simple |
What is 40 plus 17? | simple |
What is 73 plus 49? | simple |
What is the opposite of closed? | simple |
What is 85 times 12? | simple |
What is 62 times 35? | simple |
What is 32 plus 95? | simple |
Convert 44 liters to gallons. | simple |
Convert 7 kilograms to pounds. | simple |
What is the opposite of shy? | simple |
Convert 70 ounces to grams. | simple |
What is 50 divided by 55? | simple |
What is the plural of wife? | simple |
What is 24 divided by 82? | simple |
Convert 73 gallons to liters. | simple |
Convert 76 ounces to grams. | simple |
What is 72 times 71? | simple |
What language is spoken in Thailand? | simple |
Spell the word definitely. | simple |
What is the opposite of early? | simple |
What is 14 minus 32? | simple |
What is 80 times 7? | simple |
Convert 72 meters to feet. | simple |
Convert 34 miles to kilometers. | simple |
What is 6 minus 39? | simple |
llm-router dataset
Training data for ai-mitra/llm-router,
a prompt task-classifier used by the
llm-router Python
package to route prompts to the best-fit LLM in agentic AI systems.
Each row is a prompt labeled with the task category it belongs to.
Labels
simple, coding, reasoning, security, summarization
Files
| File | Rows | Purpose |
|---|---|---|
training_data.jsonl |
1700 (340/label) | Used to train the classifier: 35 hand-written examples per category plus ~305 template-generated ones per category. |
regression_dataset.jsonl |
25 (5/label) | Held out from training entirely -- hand-written, used only to sanity-check releases and calibrate confidence thresholds. |
Format (one JSON object per line):
{"text": "Explain what a Python decorator does", "label": "coding"}
Loading
from datasets import load_dataset
ds = load_dataset(
"ai-mitra/llm-router-dataset",
data_files={"train": "training_data.jsonl", "regression": "regression_dataset.jsonl"},
)
print(ds["train"][0])
How it was built
training_data.jsonl combines:
- 35 hand-written examples per category -- see
build_dataset.pyin the source repository'straining/directory. - ~305 template-generated examples per category -- combinatorial
expansion of hand-written templates x filler vocabularies (languages,
frameworks, countries, vulnerability types, document types, etc.), see
training/augment_dataset.py. Generation is deterministic (fixed random seed) and deduplicates against both the hand-written set andregression_dataset.jsonl, so the regression set never leaks into training.
Validated before release for: empty examples, duplicate examples, missing
labels, unknown labels, class imbalance, and train/regression leakage (see
training/dataset_validation.py in the source repo).
Caveats
This is a synthetic dataset, not sourced from real user traffic. Template
generation gives broad lexical coverage per category but not the full
diversity of real-world phrasing -- expect the classifier's confidence to
be more conservative on prompts phrased very differently from anything
here. Extend training/augment_dataset.py with more templates/fillers (or
add hand-written examples) to grow coverage.
License
MIT
- Downloads last month
- -