sparc-demo / app.py
greenio's picture
Update share settings
94e8c42
raw
history blame
No virus
187 Bytes
import gradio as gr
def greet(name):
return "Hello " + name
def get_related_research(input):
return
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()