Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sdgzero2ai
/
simplechatbot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sdgzero2ai
commited on
Feb 18, 2025
Commit
31f63f0
·
verified
·
1 Parent(s):
fdb4bfd
Create main.py
Browse files
Files changed (1)
hide
show
main.py
+9
-0
main.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
def test(input_text):
4
+
return f"Your text was: {input_text}"
5
+
6
+
demo = gr.Interface(fn=test, inputs="text", outputs="text")
7
+
8
+
if __name__ == "__main__":
9
+
demo.launch()