File size: 310 Bytes
0a99402
 
 
 
 
 
 
 
03be0c9
0a99402
1
2
3
4
5
6
7
8
9
10
import gradio as gr
from help_me_talk import helpTalk

def prompt(input):
    return helpTalk(input)

prob = gr.Textbox(label="Argument")
book = gr.Textbox(label="Response")
iface = gr.Interface(fn=prompt, inputs=prob, outputs=book,title="Let Me help you Bro : )", description="This will help.")
iface.launch()