Demo / app /app.py
HanLee's picture
feat: 01_06 End
ceaa8ef
raw
history blame
154 Bytes
import chainlit as cl
@cl.on_message
async def main(message: cl.Message):
response = message.content
await cl.Message(content=response).send()