import streamlit as st import label_oabench_discursive import label_oabench_practical import label_oabench_dashboard st.set_page_config(layout="wide") # Criando a barra lateral para navegação st.sidebar.title("Anotação paper LLM-as-Judge") opcao = st.sidebar.radio("Escolha uma aplicação:", ["Provas práticas", "Questões discursivas","Dashboard Anotações"]) # Roteando para a aplicação correta if opcao == "Provas práticas": label_oabench_practical.run() elif opcao == "Questões discursivas": label_oabench_discursive.run() elif opcao == "Dashboard Anotações": label_oabench_dashboard.run()