From 22697baa2d347345664fe60790e47b86329a9e7e Mon Sep 17 00:00:00 2001 From: Amr Gharbeia Date: Sun, 3 May 2026 11:54:04 -0400 Subject: [PATCH] fix(test): gateway-llm test references wrong function name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit EXECUTE-LLM-REQUEST → GATEWAY-LLM-REQUEST (the actual defined function) --- lisp/gateway-llm.lisp | 4 ++-- org/gateway-llm.org | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/gateway-llm.lisp b/lisp/gateway-llm.lisp index d9f00c0..7507faa 100644 --- a/lisp/gateway-llm.lisp +++ b/lisp/gateway-llm.lisp @@ -31,8 +31,8 @@ (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)) diff --git a/org/gateway-llm.org b/org/gateway-llm.org index 1f25b55..4388646 100644 --- a/org/gateway-llm.org +++ b/org/gateway-llm.org @@ -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))