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...
49bd8f9
llama
/
app.py
aiwithankit
Update app.py
25876af
over 1 year ago
raw
Copy download link
history
blame
211 Bytes
message =
"hi hello world"
import
gradio
as
gr
def
random_response
(
message, history
):
return
message +
"heya"
demo = gr.ChatInterface(random_response)
if
__name__ ==
"__main__"
:
demo.launch(debug=
True
)