Duplicated from gmshroff/gmserver
6bfafd3 63318d3 6bfafd3
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr import anvil.server anvil.server.connect('55MH4EBKM22EP4E6D5T6CVSL-VGO5X4SM6JEXGJVT') @anvil.server.callable def greet(name): return 'Hello World ' + name iface = gr.Interface(fn=greet, inputs="text", outputs="text") iface.launch()