mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-31 01:23:53 +00:00
with the new /v1/providers API, /v1/inspect/providers is duplicative, deprecate it by removing the route, and add a test for the full /v1/providers API Signed-off-by: Charlie Doern <cdoern@redhat.com>
22 lines
787 B
Python
22 lines
787 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 pytest
|
|
from llama_stack_client import LlamaStackClient
|
|
|
|
from llama_stack import LlamaStackAsLibraryClient
|
|
|
|
|
|
class TestProviders:
|
|
@pytest.mark.asyncio
|
|
def test_list(self, llama_stack_client: LlamaStackAsLibraryClient | LlamaStackClient):
|
|
provider_list = llama_stack_client.providers.list()
|
|
assert provider_list is not None
|
|
|
|
@pytest.mark.asyncio
|
|
def test_inspect(self, llama_stack_client: LlamaStackAsLibraryClient | LlamaStackClient):
|
|
provider_list = llama_stack_client.providers.retrieve("ollama")
|
|
assert provider_list is not None
|