3rdn4/openhands_official_evaluation
0
1"""Streamlit visualizer for the evaluation model outputs.2 3Run the following command to start the visualizer:4 streamlit run app.py --server.port 8501 --server.address 0.0.0.05NOTE: YOU SHOULD BE AT THE ROOT OF THE REPOSITORY TO RUN THIS COMMAND.6"""7import streamlit as st8st.set_page_config(layout="wide")9 10home_page = st.Page("pages/0_๐_OpenHands_Benchmark.py", title="OpenHands Benchmark", icon="๐")11swe_bench_page = st.Page("pages/1_๐_SWEBench_Visualizer.py", title="SWE-Bench Visualizer", icon="๐")12pg = st.navigation([13 home_page,14 swe_bench_page15])16# st.sidebar.success("Select a tab above for visualization about a particular dataset.")17pg.run()18 19 