You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"text": "The quick brown fox jumps over the lazy dog.",
16
+
"expected_summary": "A fox jumps over a dog.",
17
+
"prompt_type": "summarization",
18
+
"complexity": "simple"
19
+
},
20
+
{
21
+
"text": """Machine learning is a subset of artificial intelligence that focuses on developing
22
+
systems that can learn from and make decisions based on data. It has numerous
23
+
applications in various fields including healthcare, finance, and autonomous vehicles.""",
24
+
"expected_summary": "Machine learning is an AI technology that enables systems to learn and make decisions from data, used in healthcare, finance, and autonomous vehicles.",
25
+
"prompt_type": "summarization",
26
+
"complexity": "medium"
27
+
},
28
+
29
+
# Classification examples
30
+
{
31
+
"text": "I absolutely loved this product! Best purchase ever!",
32
+
"expected_summary": "Positive",
33
+
"prompt_type": "sentiment_classification",
34
+
"complexity": "simple"
35
+
},
36
+
{
37
+
"text": "The product works fine but the customer service could be better.",
38
+
"expected_summary": "Neutral",
39
+
"prompt_type": "sentiment_classification",
40
+
"complexity": "medium"
41
+
},
42
+
43
+
# Question-Answering examples
44
+
{
45
+
"text": "What is the capital of France? Context: Paris is the capital and largest city of France.",
46
+
"expected_summary": "Paris",
47
+
"prompt_type": "qa",
48
+
"complexity": "simple"
49
+
},
50
+
{
51
+
"text": """What causes rain? Context: Rain is precipitation of liquid water in the form of droplets.
52
+
Water vapor in warm air rises and cools, forming clouds. When the droplets become too
53
+
heavy, they fall as rain.""",
54
+
"expected_summary": "Rain occurs when water vapor in warm air rises, cools to form clouds, and droplets become heavy enough to fall.",
55
+
"prompt_type": "qa",
56
+
"complexity": "medium"
57
+
},
58
+
59
+
# Code-related examples
60
+
{
61
+
"text": "Write a function to add two numbers in Python.",
62
+
"expected_summary": "def add(a, b):\n return a + b",
63
+
"prompt_type": "code_generation",
64
+
"complexity": "simple"
65
+
},
66
+
{
67
+
"text": "Explain what this code does: for i in range(len(arr)): arr[i] *= 2",
68
+
"expected_summary": "This code multiplies each element in the array 'arr' by 2.",
69
+
"prompt_type": "code_explanation",
70
+
"complexity": "simple"
71
+
},
72
+
73
+
# Text transformation examples
74
+
{
75
+
"text": "convert this to passive voice: The cat chased the mouse.",
76
+
"expected_summary": "The mouse was chased by the cat.",
77
+
"prompt_type": "text_transformation",
78
+
"complexity": "simple"
79
+
},
80
+
{
81
+
"text": "translate to French: Hello, how are you?",
0 commit comments