From e893b22868611e3a6f02772b0d74571e2e7df99c Mon Sep 17 00:00:00 2001 From: Ashwin Bharambe Date: Fri, 13 Dec 2024 12:07:42 -0800 Subject: [PATCH] export LibraryClient --- llama_stack/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/llama_stack/__init__.py b/llama_stack/__init__.py index 34b866692..98f2441c0 100644 --- a/llama_stack/__init__.py +++ b/llama_stack/__init__.py @@ -3,5 +3,8 @@ # # This source code is licensed under the terms described in the LICENSE file in # the root directory of this source tree. -# -# from .distribution.library_client import LlamaStackAsLibraryClient, AsyncLlamaStackAsLibraryClient + +from llama_stack.distribution.library_client import ( # noqa: F401 + AsyncLlamaStackAsLibraryClient, + LlamaStackAsLibraryClient, +)