Spaces:
Sleeping
Sleeping
File size: 466 Bytes
3dc1a7f 8aab188 3dc1a7f 8aab188 3dc1a7f 8aab188 3dc1a7f 8aab188 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import gradio as gr
from rag_pipeline import answer
iface = gr.Interface(
fn=answer,
inputs=gr.Textbox(lines=2, placeholder="اكتب سؤالك هنا...", label="سؤالك", rtl=True),
outputs=gr.Textbox(label="الإجابة", rtl=True),
title="🤖 Arabic PDF QA Bot",
description="اسأل باللغة العربية عن محتوى ملفات PDF (يدعم اللهجة المصرية)."
)
if __name__ == "__main__":
iface.launch()
|