fix: direct imports (no site. prefix, no relative) — works with python site/app.py
Deploy contracts-flask / validate (push) Successful in 0s

This commit is contained in:
2026-07-15 11:37:57 +04:00
parent 15137f8e94
commit f9669755cd
18 changed files with 61 additions and 61 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ _llm_client = None
def _get_default_client():
global _llm_client
if _llm_client is None:
from .services.llm_client import HttpxLLMClient
from services.llm_client import HttpxLLMClient
_llm_client = HttpxLLMClient(url=LLM_URL, key=LLM_KEY, model=LLM_MODEL)
return _llm_client