noelfranthomas's picture
init2
05ab1ec
raw history blame
No virus
200 Bytes
import gradio as gr
from scripts import minutes_scraper
# def greet(name):
# return "Hello " + name + "!!"
iface = gr.Interface(fn=minutes_scraper, inputs="text", outputs="JSON")
iface.launch()