File size: 351 Bytes
81ea4dd
 
 
 
225c399
81ea4dd
 
 
 
 
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="Did you get stuck in conversation like your step-../%$#")
iface.launch()