import chainlit as cl from chainlit import AskUserMessage, on_chat_start, Message @on_chat_start async def main(): res = await AskUserMessage(content="What is ur fav icecream flavor?", timeout=30).send() if res: await Message( content=f"Your fav flavor is: {res['content']}.\n \n Now get the fuk up out my house boi! fuck outta here", ).send()