Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Skyness
/
SkyBot
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Skyness
commited on
Sep 25, 2024
Commit
39db851
·
verified
·
1 Parent(s):
3c23b1d
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
+
def simple_function(input_text):
4
+
return f"Le texte reçu est : {input_text}"
5
+
6
+
interface = gr.Interface(fn=simple_function, inputs="text", outputs="text")
7
+
interface.launch(share=True)