Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
superdeclarative
/
imdb_bot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fb70567
imdb_bot
/
app.py
Matt Carroll
Initial chainlit app
febcb2e
about 1 year ago
raw
Copy download link
history
blame
Safe
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()