forked from phoenix-oss/llama-stack-mirror
# What does this PR do? - update playground callsites for v1 api changes ## Test Plan ``` cd llama_stack/distribution/ui streamlit run app.py ``` https://github.com/user-attachments/assets/eace11c6-600a-42dc-b4e7-6948a706509f ## Sources Please link relevant resources if necessary. ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case). - [ ] Ran pre-commit to handle lint / formatting issues. - [ ] Read the [contributor guideline](https://github.com/meta-llama/llama-stack/blob/main/CONTRIBUTING.md), Pull Request section? - [ ] Updated relevant documentation. - [ ] Wrote necessary unit or integration tests.
23 lines
696 B
Python
23 lines
696 B
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the terms described in the LICENSE file in
|
|
# the root directory of this source tree.
|
|
|
|
import streamlit as st
|
|
from modules.api import llama_stack_api
|
|
|
|
|
|
def eval_tasks():
|
|
# Eval Tasks Section
|
|
st.header("Eval Tasks")
|
|
|
|
eval_tasks_info = {
|
|
d.identifier: d.to_dict() for d in llama_stack_api.client.eval_tasks.list()
|
|
}
|
|
|
|
if len(eval_tasks_info) > 0:
|
|
selected_eval_task = st.selectbox(
|
|
"Select an eval task", list(eval_tasks_info.keys()), key="eval_task_inspect"
|
|
)
|
|
st.json(eval_tasks_info[selected_eval_task], expanded=True)
|