RAGbot / app.py
fdbw's picture
Update app.py
e6c5b58 verified
Raw
History Blame Contribute Delete
300 Bytes
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()