Rag-Catan-Bot / app.py
dewiri's picture
Update app.py
b958f02 verified
raw
history blame
466 Bytes
import gradio as gr
from rag_pipeline import run_qa_pipeline
iface = gr.Interface(
fn=run_qa_pipeline,
inputs=gr.Textbox(label="Deine Frage zu Catan"),
outputs="text",
title="🎲 Catan Regel-Experte",
description="Beantworte Fragen zu den Catan-Regeln basierend auf semantischer Suche. Kein LFS mehr!",
allow_flagging="never",
show_share_button=False # βœ… kein Share-Link mehr sichtbar
)
if __name__ == "__main__":
iface.launch()