File size: 467 Bytes
99522bc
0f35f83
99522bc
0f35f83
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import streamlit as st
from battleground_tab import BattlegroundTab


def main():
    st.title("Embedding Arena")
    tab1, tab2, tab3 = st.tabs(["Battleground", "Leaderboard", "About"])

    with tab1:
        BattlegroundTab().ui()

    with tab2:
        st.header("Leaderboard")
        st.write("#TODO")

    with tab3:
        st.header("About")
        st.write("#TODO")


# Run the main function when the app is executed
if __name__ == "__main__":
    main()