Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aiwithankit
/
llama
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
14df1c4
llama
/
app.py
aiwithankit
Create app.py
14df1c4
over 1 year ago
raw
Copy download link
history
blame
Safe
202 Bytes
message =
"hi hello world"
import
gradio
as
gr
def
random_response
(
message, history
):
return
message
demo = gr.ChatInterface(random_response)
if
__name__ ==
"__main__"
:
demo.launch(debug=
True
)