3morixd commited on
Commit
44b48cc
·
verified ·
1 Parent(s): b79f84e

Upload prompts.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. prompts.json +122 -0
prompts.json ADDED
@@ -0,0 +1,122 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "id": "mt1",
4
+ "category": "summarization",
5
+ "prompt": "Summarize: The meeting is moved to Thursday at 2pm. Please bring the quarterly report.",
6
+ "expected_type": "short_summary"
7
+ },
8
+ {
9
+ "id": "mt2",
10
+ "category": "summarization",
11
+ "prompt": "Summarize: Your order #12345 has shipped and will arrive on Tuesday between 2-4pm.",
12
+ "expected_type": "short_summary"
13
+ },
14
+ {
15
+ "id": "mt3",
16
+ "category": "summarization",
17
+ "prompt": "Summarize: The project deadline has been extended by two weeks due to additional testing requirements.",
18
+ "expected_type": "short_summary"
19
+ },
20
+ {
21
+ "id": "mt4",
22
+ "category": "classification",
23
+ "prompt": "Classify as spam or not: WINNER! Claim your $1000 gift card now!",
24
+ "expected": "spam"
25
+ },
26
+ {
27
+ "id": "mt5",
28
+ "category": "classification",
29
+ "prompt": "Classify as spam or not: Hey, running 10 min late, see you soon",
30
+ "expected": "not_spam"
31
+ },
32
+ {
33
+ "id": "mt6",
34
+ "category": "classification",
35
+ "prompt": "Classify sentiment: The food was amazing but service was slow",
36
+ "expected": "mixed"
37
+ },
38
+ {
39
+ "id": "mt7",
40
+ "category": "qa",
41
+ "prompt": "What is the capital of France?",
42
+ "expected": "Paris"
43
+ },
44
+ {
45
+ "id": "mt8",
46
+ "category": "qa",
47
+ "prompt": "How many continents are there?",
48
+ "expected": "7"
49
+ },
50
+ {
51
+ "id": "mt9",
52
+ "category": "qa",
53
+ "prompt": "What is the largest planet?",
54
+ "expected": "Jupiter"
55
+ },
56
+ {
57
+ "id": "mt10",
58
+ "category": "translation",
59
+ "prompt": "Translate to Arabic: Hello, how are you?",
60
+ "expected": "\u0645\u0631\u062d\u0628\u0627\u060c \u0643\u064a\u0641 \u062d\u0627\u0644\u0643\u061f"
61
+ },
62
+ {
63
+ "id": "mt11",
64
+ "category": "translation",
65
+ "prompt": "Translate to English: Buenos d\u00edas",
66
+ "expected": "Good morning"
67
+ },
68
+ {
69
+ "id": "mt12",
70
+ "category": "code",
71
+ "prompt": "Write a function that reverses a string",
72
+ "expected": "def reverse(s): return s[::-1]"
73
+ },
74
+ {
75
+ "id": "mt13",
76
+ "category": "code",
77
+ "prompt": "Write a function to check if a number is even",
78
+ "expected": "def is_even(n): return n % 2 == 0"
79
+ },
80
+ {
81
+ "id": "mt14",
82
+ "category": "creative",
83
+ "prompt": "Write a one-sentence birthday greeting",
84
+ "expected_type": "greeting"
85
+ },
86
+ {
87
+ "id": "mt15",
88
+ "category": "creative",
89
+ "prompt": "Write a one-sentence product description for headphones",
90
+ "expected_type": "description"
91
+ },
92
+ {
93
+ "id": "mt16",
94
+ "category": "math",
95
+ "prompt": "What is 15 * 12?",
96
+ "expected": "180"
97
+ },
98
+ {
99
+ "id": "mt17",
100
+ "category": "math",
101
+ "prompt": "What is 100 / 4?",
102
+ "expected": "25"
103
+ },
104
+ {
105
+ "id": "mt18",
106
+ "category": "function_call",
107
+ "prompt": "Set an alarm for 7am",
108
+ "expected_type": "json"
109
+ },
110
+ {
111
+ "id": "mt19",
112
+ "category": "function_call",
113
+ "prompt": "Call mom",
114
+ "expected_type": "json"
115
+ },
116
+ {
117
+ "id": "mt20",
118
+ "category": "function_call",
119
+ "prompt": "What's the weather in Dubai?",
120
+ "expected_type": "json"
121
+ }
122
+ ]