mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-17 13:29:47 +00:00
native eval
This commit is contained in:
parent
2f7e39fb10
commit
de2ab1243a
4 changed files with 43 additions and 4 deletions
|
|
@ -11,7 +11,13 @@ def main():
|
|||
application_evaluation_page = st.Page(
|
||||
"page/evaluations/app_eval.py",
|
||||
title="Application Evaluation",
|
||||
icon="🦙",
|
||||
icon="📊",
|
||||
default=False,
|
||||
)
|
||||
native_evaluation_page = st.Page(
|
||||
"page/evaluations/native_eval.py",
|
||||
title="Native Evaluation",
|
||||
icon="📊",
|
||||
default=False,
|
||||
)
|
||||
|
||||
|
|
@ -28,7 +34,7 @@ def main():
|
|||
|
||||
pg = st.navigation(
|
||||
{
|
||||
"Evaluations": [application_evaluation_page],
|
||||
"Evaluations": [application_evaluation_page, native_evaluation_page],
|
||||
"Playground": [chat_page, rag_page],
|
||||
"Distribution": [distribution_page],
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue