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))