From e22b84e17ecbbdb7b910eccab64600f1487c95cd Mon Sep 17 00:00:00 2001 From: Vince Date: Fri, 20 Dec 2024 00:47:02 -0500 Subject: [PATCH] fix typing --- src/llama_stack_client/resources/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/llama_stack_client/resources/models.py b/src/llama_stack_client/resources/models.py index f59210b..ed5b5cd 100644 --- a/src/llama_stack_client/resources/models.py +++ b/src/llama_stack_client/resources/models.py @@ -96,7 +96,7 @@ def list( extra_query: Query | None = None, extra_body: Body | None = None, timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, - ) -> Model: + ) -> list[Model]: """ Args: extra_headers: Send extra headers @@ -275,7 +275,7 @@ async def list( extra_query: Query | None = None, extra_body: Body | None = None, timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN, - ) -> Model: + ) -> list[Model]: """ Args: extra_headers: Send extra headers