From f0f150386be64ba2352c4b7e194aba866d75756a Mon Sep 17 00:00:00 2001 From: Vatsal Manot Date: Tue, 12 Mar 2024 15:26:54 -0700 Subject: [PATCH] Update package --- .../Anthropic/Intramodular/Anthropic+LLMRequestHandling.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Anthropic/Intramodular/Anthropic+LLMRequestHandling.swift b/Sources/Anthropic/Intramodular/Anthropic+LLMRequestHandling.swift index 055ba86f..e01ea8bf 100644 --- a/Sources/Anthropic/Intramodular/Anthropic+LLMRequestHandling.swift +++ b/Sources/Anthropic/Intramodular/Anthropic+LLMRequestHandling.swift @@ -132,7 +132,7 @@ extension Anthropic: LLMRequestHandling { model: model, messages: messages, system: system, - maxTokens: parameters?.tokenLimit?.fixedValue ?? 1024, // FIXME: Hardcoded, + maxTokens: parameters?.tokenLimit?.fixedValue ?? 4000, // FIXME: Hardcoded, temperature: parameters?.temperatureOrTopP?.temperature, topP: parameters?.temperatureOrTopP?.topProbabilityMass, topK: nil,