Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
CAMB-AI
/
mars6-turbo-demo
like
5
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
baas-cambai
commited on
Jan 13
Commit
1b629bf
·
1 Parent(s):
85a5baf
Add application file
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
import os
3
+
4
+
def greet(name):
5
+
return "Hello " + name + "!!" + os.environ['testo']
6
+
7
+
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
8
+
9
+
10
+
demo.launch()