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