hisuai commited on
Commit
15f7cfe
·
verified ·
1 Parent(s): 3c7220a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -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()