Spaces:
Sleeping
Sleeping
File size: 306 Bytes
09848aa |
1 2 3 4 5 6 7 8 9 10 11 |
import gradio as gr
with gr.Blocks(analytics_enabled=False, title="Test") as app:
gr.Label('Hello World!')
def greet(name):
return "Hello " + name + "!!"
#app = gr.Interface(fn=greet, inputs="text", outputs="text")
#print('before launch')
app.launch(share=True,)
#print('after launch') # executes
|