Spaces:
Build error
Build error
File size: 507 Bytes
c7ed333 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import gradio as gr
# Function to integrate with Gradio
def rag_chatbot(query):
answer_text = ask(query, return_answer_only=True) # This ensures we only get the answer
return answer_text
# Gradio interface setup
interface = gr.Interface(
fn=rag_chatbot,
inputs="text",
outputs="text",
title="RAG Chatbot",
description="This is a Retrieval-Augmented Generation (RAG) Chatbot for Information Retrieval Textbook queries."
)
# Launch the Gradio app
interface.launch(share = True) |