fix: убрать хардкод API-ключа (chat.cfm), verify=True (llm.py), отвязать llm_prompt от Lucee
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user