Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hisuai
/
Hisu-Live
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hisuai
commited on
Jan 23
Commit
15f7cfe
·
verified
·
1 Parent(s):
3c7220a
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
import gradio as gr
2
+
3
+
def chat(text):
4
+
return f"Hisu AI received: {text}"
5
+
6
+
gr.Interface(
7
+
fn=chat,
8
+
inputs="text",
9
+
outputs="text",
10
+
title="Hisu AI (Live Test)"
11
+
).launch()