File size: 264 Bytes
62b92da
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import gradio as gr
import subprocess
def outputProducer(stringG):
    return str(1)
demo = gr.Interface(fn=outputProducer,
                    inputs = [gr.Textbox()],
                    outputs [gr.Textbox()],
                    title = 'Simplify')
gr.launch()