From 23cc53d9ef2fb5cd7b0c21412aad268ce02ad0f5 Mon Sep 17 00:00:00 2001 From: LittleMouse Date: Fri, 18 Apr 2025 18:48:40 +0800 Subject: [PATCH] [update] Update import package method --- benchmark/benchmodulellm.py | 2 +- benchmark/utils/__init__.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 benchmark/utils/__init__.py diff --git a/benchmark/benchmodulellm.py b/benchmark/benchmodulellm.py index 00dfcd0..7934b58 100644 --- a/benchmark/benchmodulellm.py +++ b/benchmark/benchmodulellm.py @@ -7,7 +7,7 @@ import logging from pathlib import Path -from utils.llm import LLMClient +from utils import LLMClient FILE = Path(__file__).resolve() ROOT = FILE.parents[0] diff --git a/benchmark/utils/__init__.py b/benchmark/utils/__init__.py new file mode 100644 index 0000000..5714a53 --- /dev/null +++ b/benchmark/utils/__init__.py @@ -0,0 +1,3 @@ +from .llm import LLMClient + +__all__ = ["LLMClient"] \ No newline at end of file