From f085b633af9fa93384d6ea7de2c77e7b0e2ff101 Mon Sep 17 00:00:00 2001 From: amithkoujalgi Date: Sat, 30 Aug 2025 12:14:09 +0530 Subject: [PATCH] Update OllamaAPIIntegrationTest.java --- .../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 ca47d17..2ea8977 100644 --- a/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java +++ b/src/test/java/io/github/ollama4j/integrationtests/OllamaAPIIntegrationTest.java @@ -245,7 +245,7 @@ public class OllamaAPIIntegrationTest { OllamaChatRequest requestModel = builder.withMessage(OllamaChatMessageRole.SYSTEM, "You are a silent bot that only says 'Shush'. Do not say anything else under any circumstances!") .withMessage(OllamaChatMessageRole.USER, "What's something that's brown and sticky?") - .withOptions(new OptionsBuilder().setTemperature(0.8f).build()).build(); + .withOptions(new OptionsBuilder().setTemperature(0.1f).build()).build(); OllamaChatResult chatResult = api.chat(requestModel); assertNotNull(chatResult);