Skip to content

Commit

Permalink
Fix how we look for ollama models in integration tests (#80)
Browse files Browse the repository at this point in the history
Ollama still doesn't perform very well in integration tests in general
due to most models having poor instruction following.
  • Loading branch information
ahyatt authored Sep 7, 2024
1 parent c79cc43 commit 32fadc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llm-integration-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
(when (getenv "VERTEX_PROJECT")
(require 'llm-vertex)
(push (make-llm-vertex :project (getenv "VERTEX_PROJECT")) providers))
(when (getenv "OLLAMA_MODELS")
(when (getenv "OLLAMA_CHAT_MODELS")
(require 'llm-ollama)
;; This variable is a list of models to test.
(dolist (model (split-string (getenv "OLLAMA_CHAT_MODELS") ", "))
Expand Down

0 comments on commit 32fadc0

Please sign in to comment.