fix: убрать хардкод API-ключа (chat.cfm), verify=True (llm.py), отвязать llm_prompt от Lucee

This commit is contained in:
2026-06-27 13:06:21 +04:00
parent 465be4ca04
commit a474b4324b
3 changed files with 14 additions and 26 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ def call_llm(current_spec, doc_text, build_prompt_fn):
"max_tokens": 8000,
"temperature": 0.1,
}
with httpx.Client(http2=True, timeout=120, verify=False) as client:
with httpx.Client(http2=True, timeout=120, verify=True) as client:
resp = client.post(
LLM_URL,
json=payload,