From 1abef2a3f9ac5ec06fe02cc4eb91eb9d64ae80e9 Mon Sep 17 00:00:00 2001 From: XMXNT Date: Fri, 20 Dec 2024 10:57:59 +0530 Subject: [PATCH] Update lmos-router-llm/src/test/kotlin/ai/ancf/lmos/router/llm/LangChainChatModelFactoryTest.kt Co-authored-by: Kai Kreuzer --- .../ai/ancf/lmos/router/llm/LangChainChatModelFactoryTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lmos-router-llm/src/test/kotlin/ai/ancf/lmos/router/llm/LangChainChatModelFactoryTest.kt b/lmos-router-llm/src/test/kotlin/ai/ancf/lmos/router/llm/LangChainChatModelFactoryTest.kt index 8f036fe..9a2cac1 100644 --- a/lmos-router-llm/src/test/kotlin/ai/ancf/lmos/router/llm/LangChainChatModelFactoryTest.kt +++ b/lmos-router-llm/src/test/kotlin/ai/ancf/lmos/router/llm/LangChainChatModelFactoryTest.kt @@ -28,7 +28,7 @@ class LangChainChatModelFactoryTest { every { properties.provider } returns LangChainClientProvider.OPENAI.name.lowercase() every { properties.baseUrl } returns "https://api.openai.com" every { properties.apiKey } returns "openai-api-key" - every { properties.model } returns "gpt-3.5-turbo" + every { properties.model } returns "gpt-4o-mini" every { properties.maxTokens } returns 1000 every { properties.temperature } returns 0.7 every { properties.topP } returns 0.9