Skip to content

Commit d794f28

Browse files
committed
fix : add path for root scripts
1 parent ea9aa9a commit d794f28

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

entrypoint.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,19 @@
88

99
from typing import Any, Dict, Tuple
1010

11+
12+
sys.path.insert(
13+
0,
14+
str(pathlib.Path(__file__).parent.resolve())
15+
)
16+
17+
1118
from llm_client import LLMAPIClient
1219
from llm_configs import ClaudeConfig, GeminiConfig, GrokConfig, NvidiaNIMConfig, PerplexityConfig
1320

1421
import prompt
1522

23+
1624
logging.basicConfig(level=logging.INFO)
1725

1826

0 commit comments

Comments
 (0)