Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
rchrdgwr
/
chainlit_tutorial
like
0
Sleeping
App
Files
Files
Community
41dc448
chainlit_tutorial
/
app.py
rchrdgwr
base app
61e298a
about 1 month ago
raw
Copy download link
history
blame
Safe
115 Bytes
import
chainlit
as
cl
@cl.on_message
def
main
(
message:
str
):
return
cl.Message(content=
f"You said:
{message}
"
)