mobile-task-prompts / prompts.json
3morixd's picture
Upload prompts.json with huggingface_hub
44b48cc verified
Raw
History Blame Contribute Delete
3.05 kB
[
{
"id": "mt1",
"category": "summarization",
"prompt": "Summarize: The meeting is moved to Thursday at 2pm. Please bring the quarterly report.",
"expected_type": "short_summary"
},
{
"id": "mt2",
"category": "summarization",
"prompt": "Summarize: Your order #12345 has shipped and will arrive on Tuesday between 2-4pm.",
"expected_type": "short_summary"
},
{
"id": "mt3",
"category": "summarization",
"prompt": "Summarize: The project deadline has been extended by two weeks due to additional testing requirements.",
"expected_type": "short_summary"
},
{
"id": "mt4",
"category": "classification",
"prompt": "Classify as spam or not: WINNER! Claim your $1000 gift card now!",
"expected": "spam"
},
{
"id": "mt5",
"category": "classification",
"prompt": "Classify as spam or not: Hey, running 10 min late, see you soon",
"expected": "not_spam"
},
{
"id": "mt6",
"category": "classification",
"prompt": "Classify sentiment: The food was amazing but service was slow",
"expected": "mixed"
},
{
"id": "mt7",
"category": "qa",
"prompt": "What is the capital of France?",
"expected": "Paris"
},
{
"id": "mt8",
"category": "qa",
"prompt": "How many continents are there?",
"expected": "7"
},
{
"id": "mt9",
"category": "qa",
"prompt": "What is the largest planet?",
"expected": "Jupiter"
},
{
"id": "mt10",
"category": "translation",
"prompt": "Translate to Arabic: Hello, how are you?",
"expected": "\u0645\u0631\u062d\u0628\u0627\u060c \u0643\u064a\u0641 \u062d\u0627\u0644\u0643\u061f"
},
{
"id": "mt11",
"category": "translation",
"prompt": "Translate to English: Buenos d\u00edas",
"expected": "Good morning"
},
{
"id": "mt12",
"category": "code",
"prompt": "Write a function that reverses a string",
"expected": "def reverse(s): return s[::-1]"
},
{
"id": "mt13",
"category": "code",
"prompt": "Write a function to check if a number is even",
"expected": "def is_even(n): return n % 2 == 0"
},
{
"id": "mt14",
"category": "creative",
"prompt": "Write a one-sentence birthday greeting",
"expected_type": "greeting"
},
{
"id": "mt15",
"category": "creative",
"prompt": "Write a one-sentence product description for headphones",
"expected_type": "description"
},
{
"id": "mt16",
"category": "math",
"prompt": "What is 15 * 12?",
"expected": "180"
},
{
"id": "mt17",
"category": "math",
"prompt": "What is 100 / 4?",
"expected": "25"
},
{
"id": "mt18",
"category": "function_call",
"prompt": "Set an alarm for 7am",
"expected_type": "json"
},
{
"id": "mt19",
"category": "function_call",
"prompt": "Call mom",
"expected_type": "json"
},
{
"id": "mt20",
"category": "function_call",
"prompt": "What's the weather in Dubai?",
"expected_type": "json"
}
]