File size: 300 Bytes
45e5d62
e6c5b58
45e5d62
 
e6c5b58
 
 
 
 
45e5d62
019c867
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr
from rag import ask

with gr.Blocks() as demo:
    gr.Markdown("# 冯氏家谱 RAG 机器人")
    q = gr.Textbox(label="请输入问题,例如:冯宗德的儿子是谁")
    a = gr.Textbox(label="回答")
    btn = gr.Button("查询")
    btn.click(ask, q, a)

demo.launch()