From 172a4daebe9aeb130b72de5ca5e36e6e07fc7f78 Mon Sep 17 00:00:00 2001 From: Christopher Creutzig <89011131+ccreutzi@users.noreply.github.com> Date: Fri, 2 Aug 2024 13:53:12 +0200 Subject: [PATCH] Replace bakllava by moondream moondream is a much smaller vision model and perfectly suitable for the tests we want to run. --- .github/workflows/ci.yml | 2 +- tests/tollamaChat.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7babcc..6be9f48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: - name: Pull models run: | ollama pull mistral - ollama pull bakllava + ollama pull moondream OLLAMA_HOST=127.0.0.1:11435 ollama pull qwen2:0.5b - name: Set up MATLAB uses: matlab-actions/setup-matlab@v2 diff --git a/tests/tollamaChat.m b/tests/tollamaChat.m index 1040c4a..52d1376 100644 --- a/tests/tollamaChat.m +++ b/tests/tollamaChat.m @@ -99,7 +99,7 @@ function seedFixesResult(testCase) end function generateWithImages(testCase) - chat = ollamaChat("bakllava"); + chat = ollamaChat("moondream"); image_path = "peppers.png"; emptyMessages = messageHistory; messages = addUserMessageWithImages(emptyMessages,"What is in the image?",image_path);