fix(test): gateway-llm test references wrong function name
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 2s

EXECUTE-LLM-REQUEST → GATEWAY-LLM-REQUEST (the actual defined function)
This commit is contained in:
2026-05-03 11:54:04 -04:00
parent 9151f4eff7
commit 22697baa2d
2 changed files with 4 additions and 4 deletions

View File

@@ -49,8 +49,8 @@ The LLM Gateway dispatches inference requests to the registered probabilistic ba
(unwind-protect
(progn
(setf (uiop:getenv "OLLAMA_HOST") "localhost:1")
(let ((fn (or (find-symbol "EXECUTE-LLM-REQUEST" :passepartout.gateway-llm)
(find-symbol "EXECUTE-LLM-REQUEST" :passepartout))))
(let ((fn (or (find-symbol "GATEWAY-LLM-REQUEST" :passepartout.gateway-llm)
(find-symbol "GATEWAY-LLM-REQUEST" :passepartout))))
(if fn
(let ((result (funcall fn :prompt "hello" :provider :ollama)))
(fiveam:is (eq (getf result :status) :error))