Chainlit-docker / app.py
StefanoDUrso's picture
chainlit integration
ae46f37
raw
history blame
235 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()