File size: 431 Bytes
4c01656
a292523
4c01656
a292523
 
 
 
 
 
 
4c01656
a292523
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import gradio as gr
import Sejarah

iface = gr.Interface(
    fn=Sejarah.interface(),
    inputs=gr.inputs.Textbox(label="Please Type Your Question Here: "),
    outputs=[gr.outputs.Textbox(label="Answers"), gr.outputs.Textbox(label="Chat History")],
    description="## Question Answering system\n\nIt supports **English** and **Bahasa Malaysia**.",
    allow_flagging = False
)

#Demo for the chatbot
iface.launch(inline = False)