|
import streamlit as st |
|
import label_oabench_discursive |
|
import label_oabench_practical |
|
import label_oabench_dashboard |
|
|
|
st.set_page_config(layout="wide") |
|
|
|
|
|
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"]) |
|
|
|
|
|
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() |
|
|