Spaces:
Sleeping
Sleeping
File size: 1,057 Bytes
0e9ef68 2393995 0e9ef68 2393995 0e9ef68 2393995 0e9ef68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
import chainlit as cl
async def offer_initial_actions():
actions = [
cl.Action(name="Deal Analysis", value="deal-analysis", description="Deal Analysis"),
cl.Action(name="Customer Research", value="customer-research", description="Customer Research"),
cl.Action(name="Sales Simulation", value="sales-simulation", description="Sales Simulation"),
]
await cl.Message(content=" ", actions=actions).send()
await cl.Message(content="\n\n").send()
async def offer_actions():
await cl.Message(content="\n\n").send()
actions = [
cl.Action(name="Get Latest News on this Customer", value="HSBC", description="Get Latest News"),
cl.Action(name="Enter Meeting Simulation", value="enter-meeting-simulation", description="Enter Meeting Simulation"),
cl.Action(name="Review Another Opportunity", value="review-another-opportunity", description="Review Another Opportunity"),
]
await cl.Message(content="Select an action", actions=actions).send()
await cl.Message(content="\n\n").send()
|