Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Gyr0MAN
/
Ragbot
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Gyr0MAN
commited on
May 26, 2024
Commit
97835c2
Β·
verified
Β·
1 Parent(s):
89f0433
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
4
+
def response(inputText, history):
5
+
return f"echo {inputText}"
6
+
7
+
gr.ChatInterface(generate_text).launch()