protobench / app.py
vtrv.vls
API test
623a39b
raw
history blame
No virus
211 Bytes
import gradio as gr
from utils import generate
import os
def gen(content):
res = generate(content,'auth_token.json')
return res
demo = gr.Interface(fn=gen, inputs="text", outputs="text")
demo.launch()