KB-VQA / app.py
Last commit not found
raw
history blame
329 Bytes
import streamlit as st
from my_model.utilities.ui_manager import UIManager
def main():
# Set the page to wide mode
st.set_page_config(layout="wide")
ui_manager = UIManager()
selection = ui_manager.display_sidebar()
ui_manager.display_selected_page(selection)
if __name__ == "__main__":
main()