Scanspectrum1 / app_interactive.py
aknapitsch user
initial commit of map anything demo
9507532
raw
history blame
150 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()