Spaces:
Runtime error
Runtime error
| import chainlit as cl | |
| 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() | |