Update app.py
Browse files
app.py
CHANGED
@@ -53,10 +53,19 @@ demo = gr.ChatInterface(
|
|
53 |
description="This is a chatbot using a fine-tuned version of the Phi-2 model.",
|
54 |
theme="default",
|
55 |
examples=[
|
56 |
-
"Explain the concept of machine learning.",
|
57 |
-
"Write a short story about a robot learning to paint.",
|
58 |
-
"What are some effective ways to reduce stress?",
|
59 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
cache_examples=True,
|
61 |
)
|
62 |
|
|
|
53 |
description="This is a chatbot using a fine-tuned version of the Phi-2 model.",
|
54 |
theme="default",
|
55 |
examples=[
|
56 |
+
["Explain the concept of machine learning."],
|
57 |
+
["Write a short story about a robot learning to paint."],
|
58 |
+
["What are some effective ways to reduce stress?"],
|
59 |
+
["Summarize the key points of climate change in simple terms."],
|
60 |
+
["Create a step-by-step guide for making a perfect omelette."],
|
61 |
+
["Describe the differences between classical and quantum computing."],
|
62 |
+
["Write a motivational speech for a team starting a new project."],
|
63 |
+
["Explain the importance of biodiversity in ecosystems."],
|
64 |
+
["Compose a haiku about artificial intelligence."],
|
65 |
+
["List five tips for effective time management."],
|
66 |
+
["Describe the process of photosynthesis in layman's terms."],
|
67 |
+
["Write a dialogue between two characters discussing the future of space exploration."],
|
68 |
+
["Explain the concept of blockchain technology and its potential applications."]
|
69 |
cache_examples=True,
|
70 |
)
|
71 |
|