From c64ee09ddebbd34609e5f31e2900db73018c3d1d Mon Sep 17 00:00:00 2001 From: Sayo Date: Thu, 13 Feb 2025 19:20:49 +0530 Subject: [PATCH] fix semantics --- packages/plugin-anthropic/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/plugin-anthropic/src/index.ts b/packages/plugin-anthropic/src/index.ts index 869f381358..6f7e557602 100644 --- a/packages/plugin-anthropic/src/index.ts +++ b/packages/plugin-anthropic/src/index.ts @@ -152,9 +152,9 @@ export const anthropicPlugin: Plugin = { if (text.length === 0) { throw new Error("Failed to generate text"); } - console.log("generated with test_text_small:", text); + console.log("generated with test_text_large:", text); } catch (error) { - console.error("Error in test_text_small:", error); + console.error("Error in test_text_large:", error); throw error; } }