Bhanu.Prakash
build(deps): update app.py and requirements.txt
6623483
raw
history blame contribute delete
236 Bytes
import chainlit as cl
@cl.on_message
async def main(message: cl.Message):
# Your custom logic goes here...
# Send a response back to the user
await cl.Message(
content=f"Received: {message.content}",
).send()