forked from phoenix-oss/llama-stack-mirror
# What does this PR do? Generate distro reports to cover inference, agents, and vector_io. ## Test Plan Report generated through `/opt/miniconda3/envs/stack/bin/pytest -s -v tests/client-sdk/ --report` ## 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.
50 lines
1.4 KiB
Python
50 lines
1.4 KiB
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.
|
|
|
|
from llama_stack.providers.datatypes import Api
|
|
|
|
INFERENCE_API_CAPA_TEST_MAP = {
|
|
"chat_completion": {
|
|
"streaming": [
|
|
"test_text_chat_completion_streaming",
|
|
"test_image_chat_completion_streaming",
|
|
],
|
|
"non_streaming": [
|
|
"test_image_chat_completion_non_streaming",
|
|
"test_text_chat_completion_non_streaming",
|
|
],
|
|
"tool_calling": [
|
|
"test_text_chat_completion_with_tool_calling_and_streaming",
|
|
"test_text_chat_completion_with_tool_calling_and_non_streaming",
|
|
],
|
|
},
|
|
"completion": {
|
|
"streaming": ["test_text_completion_streaming"],
|
|
"non_streaming": ["test_text_completion_non_streaming"],
|
|
"structured_output": ["test_text_completion_structured_output"],
|
|
},
|
|
}
|
|
|
|
VECTORIO_API_TEST_MAP = {
|
|
"retrieve": {
|
|
"": ["test_vector_db_retrieve"],
|
|
}
|
|
}
|
|
|
|
AGENTS_API_TEST_MAP = {
|
|
"create_agent_turn": {
|
|
"rag": ["test_rag_agent"],
|
|
"custom_tool": ["test_custom_tool"],
|
|
"code_execution": ["test_code_interpreter_for_attachments"],
|
|
}
|
|
}
|
|
|
|
|
|
API_MAPS = {
|
|
Api.inference: INFERENCE_API_CAPA_TEST_MAP,
|
|
Api.vector_io: VECTORIO_API_TEST_MAP,
|
|
Api.agents: AGENTS_API_TEST_MAP,
|
|
}
|