gufett0's picture
added new class
c5a2ac1
raw
history blame
559 Bytes
from backend import handle_query
import gradio as gr
iface = gr.ChatInterface(
fn=handle_query, # Query handling remains here
title="Odi, la chatbot degli Osservatori",
description="Retrieval-Augmented Generation - Ask me anything about the research carried out at the Osservatori.",
)
css = """
body, html, .gradio-app {
background-color: #ADD8E6 !important; /* Light blue background */
color: black;
}
"""
if __name__ == "__main__":
progress = gr.Progress(track_tqdm=True)
iface.launch(debug=True, css=css)