Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hysts-debug
/
chatinterface-submit-btn
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hysts
HF Staff
commited on
10 days ago
Commit
4d35acc
·
verified
·
1 Parent(s):
ebed970
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
def echo(message, history):
4
+
return f"Echo: {message}"
5
+
6
+
gr.ChatInterface(
7
+
fn=echo,
8
+
examples=["What is the capital of France?"],
9
+
cache_examples=False,
10
+
).launch()