From 70b4a7961aab2ee1c01a37499bd1a85269c01bfc Mon Sep 17 00:00:00 2001 From: amithkoujalgi Date: Tue, 25 Mar 2025 21:56:45 +0530 Subject: [PATCH] Used smaller-sized images for the test cases --- .../ollama4j/integrationtests/OllamaAPIIntegrationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java b/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java index 6e03fde..c73383b 100644 --- a/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java +++ b/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java @@ -350,7 +350,7 @@ public class OllamaAPIIntegrationTest { builder.reset(); requestModel = builder.withMessages(chatResult.getChatHistory()) - .withMessage(OllamaChatMessageRole.USER, "What's the dogs breed?").build(); + .withMessage(OllamaChatMessageRole.USER, "What's the color?").build(); chatResult = api.chat(requestModel); assertNotNull(chatResult);