From 14242a7ab80bd6938ac54d9c649c3970a80901c0 Mon Sep 17 00:00:00 2001 From: Aaron <29749331+aarnphm@users.noreply.github.com> Date: Tue, 21 Nov 2023 05:03:20 -0500 Subject: [PATCH] fix(utils): correct import Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- openllm-python/src/openllm/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openllm-python/src/openllm/utils.py b/openllm-python/src/openllm/utils.py index 7dda7858..f23b26b4 100644 --- a/openllm-python/src/openllm/utils.py +++ b/openllm-python/src/openllm/utils.py @@ -16,7 +16,7 @@ def generate_labels(llm): def available_devices(): - from .._strategies import NvidiaGpuResource + from ._strategies import NvidiaGpuResource return tuple(NvidiaGpuResource.from_system())