Frontend / pages /rag_page.py
Damien Benveniste
corrected
e903025
raw
history blame contribute delete
282 Bytes
from streamlit.runtime.scriptrunner import get_script_run_ctx
from pages.page_base import chat_interface
chat_title = "RAG Chat App"
url = "https://damienbenveniste-backend.hf.space/rag"
page_hash = get_script_run_ctx().page_script_hash
chat_interface(chat_title, page_hash, url)