Spaces:
Sleeping
Sleeping
Create starters.py
Browse files- starters.py +26 -0
starters.py
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import chainlit as cl
|
2 |
+
|
3 |
+
@cl.set_starters
|
4 |
+
async def set_starters():
|
5 |
+
return [
|
6 |
+
cl.Starter(
|
7 |
+
label="AI-powered financial advisor",
|
8 |
+
message="I want to build an AI-powered financial advisor that can provide personalized investment advice based on user input and market data. Start by asking me about my investment goals and risk tolerance.",
|
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 |
+
]
|