KB-VQA-E / app.py
m7mdal7aj's picture
Update app.py
0b0861b verified
raw
history blame
321 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()