From 301c9de23f5f0626fcc079bafb6d7ccbd489356e Mon Sep 17 00:00:00 2001 From: Christopher Hertel Date: Wed, 24 Sep 2025 13:44:10 +0200 Subject: [PATCH] Revert change in Anthropic breaking easy model usage --- src/platform/src/Bridge/Anthropic/Claude.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/src/Bridge/Anthropic/Claude.php b/src/platform/src/Bridge/Anthropic/Claude.php index a08792edc..da48bcd07 100644 --- a/src/platform/src/Bridge/Anthropic/Claude.php +++ b/src/platform/src/Bridge/Anthropic/Claude.php @@ -34,7 +34,7 @@ class Claude extends Model /** * @param array $options The default options for the model usage */ - public function __construct(string $name, array $options = []) + public function __construct(string $name, array $options = ['max_tokens' => 1000]) { $capabilities = [ Capability::INPUT_MESSAGES,