Spaces:
Sleeping
Sleeping
Update starters.py
Browse files- starters.py +2 -17
starters.py
CHANGED
|
@@ -4,23 +4,8 @@ import chainlit as cl
|
|
| 4 |
async def set_starters():
|
| 5 |
return [
|
| 6 |
cl.Starter(
|
| 7 |
-
label="
|
| 8 |
-
message="I want to
|
| 9 |
-
icon="/public/dollar.svg",
|
| 10 |
-
),
|
| 11 |
-
cl.Starter(
|
| 12 |
-
label="Healthcare chatbot",
|
| 13 |
-
message="Can you help me create a healthcare chatbot that can answer common medical questions and provide guidance based on user symptoms? Start by asking me about the types of questions and symptoms it should handle.",
|
| 14 |
-
icon="/public/heart.svg",
|
| 15 |
-
),
|
| 16 |
-
cl.Starter(
|
| 17 |
-
label="E-commerce recommendation engine",
|
| 18 |
-
message="I want to develop an e-commerce recommendation engine that suggests products to users based on their browsing and purchase history. Start by asking me about the types of products and data sources we should use.",
|
| 19 |
icon="/public/laptop.svg",
|
| 20 |
),
|
| 21 |
-
cl.Starter(
|
| 22 |
-
label="Personalized workout planner",
|
| 23 |
-
message="Help me create a personalized workout planner that generates fitness routines based on user preferences and fitness levels. Start by asking me about my current fitness routine and goals.",
|
| 24 |
-
icon="/public/bicep.svg",
|
| 25 |
-
),
|
| 26 |
]
|
|
|
|
| 4 |
async def set_starters():
|
| 5 |
return [
|
| 6 |
cl.Starter(
|
| 7 |
+
label="Personal Portfolio ChatBot",
|
| 8 |
+
message="I want to create a portfolio chatbot that answers questions about my experience and qualifications for a role that I might be applying to.",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
icon="/public/laptop.svg",
|
| 10 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
]
|