From 4cf62f1e5ff16d5a662bba1e86836850534226ab Mon Sep 17 00:00:00 2001 From: Joan Nandaula Date: Sun, 5 Jul 2026 21:53:01 -0400 Subject: [PATCH 1/2] updating claude model from deprecated model to updated model --- packages/core/src/infrastructure/ai.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/core/src/infrastructure/ai.ts b/packages/core/src/infrastructure/ai.ts index df5c91d0f..8ac1415c3 100644 --- a/packages/core/src/infrastructure/ai.ts +++ b/packages/core/src/infrastructure/ai.ts @@ -151,9 +151,9 @@ type GetChatCompletionInput = { /** * The model to use for the completion. * - * @default 'claude-sonnet-4-20250514' + * @default 'claude-sonnet-4-6' */ - model?: 'claude-sonnet-4-20250514'; + model?: 'claude-sonnet-4-6'; /** * The system prompt to use for the completion. This can be used to provide @@ -190,7 +190,7 @@ const AnthropicResponse = z.object({ export async function getChatCompletion({ maxTokens, messages, - model = 'claude-sonnet-4-20250514', + model = 'claude-sonnet-4-6', system: _system, temperature = 0.5, }: GetChatCompletionInput): Promise> { From 5d8861bff2a0b95f7204a386052776b5e2fb6301 Mon Sep 17 00:00:00 2001 From: Joan Nandaula Date: Sun, 5 Jul 2026 21:56:48 -0400 Subject: [PATCH 2/2] adding my name to contributors --- CONTRIBUTORS.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.yml b/CONTRIBUTORS.yml index c907646fa..8804702e8 100644 --- a/CONTRIBUTORS.yml +++ b/CONTRIBUTORS.yml @@ -97,3 +97,4 @@ - Praise-creator - AdamOwolabi - Isaiah648 +- jnanda97