File size: 3,047 Bytes
44b48cc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | [
{
"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"
}
] |