File size: 411 Bytes
ef9812d
c904f3b
ef9812d
d2b1190
 
bcf2be6
d2b1190
9b436ec
ef9812d
 
8e173c1
ef9812d
 
baf8663
ef9812d
b0d2d8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import gradio as gr
from utils.get_answer import get_answer

title = "HouseMD bot"

description = "Gradio Demo for telegram bot. To use it, simply add your text message."


interface = gr.Interface(
    fn=get_answer,
    inputs=gr.Textbox(label="Input message to House MD", lines=3),
    outputs=gr.Textbox(label="House MD's answer"),
    title=title,
    description=description
)
interface.launch(share=True)