Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Jedordon
/
JoelGPT
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
JoelGPT
/
app.py
Jedordon
Update app.py
d47443e
verified
12 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
197 Bytes
import
gradio
as
gr
def
respond
(
message, history
):
return
"You asked about: "
+ message
gr.ChatInterface(fn=respond, title=
"JoelGPT: Ask Me About Machine Learning"
).launch(share=
True
)