zaid646's picture
Initial commit: Neo4j GraphRAG Engine
db774b8
Raw
History Blame Contribute Delete
181 Bytes
import streamlit as st
from src.dashboard import render_ui
st.set_page_config(
page_title="Neo4j GraphRAG Engine",
page_icon=":cyclone:",
layout="wide",
)
render_ui()