From 5ec9c05dca000f25e54da706c490884de9b48c9a Mon Sep 17 00:00:00 2001 From: sebseb7 Date: Fri, 10 Oct 2025 05:51:03 +0200 Subject: [PATCH] u --- x.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/x.js b/x.js index 7cb9b6f..e33cdb3 100644 --- a/x.js +++ b/x.js @@ -113,7 +113,7 @@ async function callLLMOpenAICompatible({ baseUrl, apiKey, model, system, user, t } // AWS Bedrock client for Anthropic -async function callLLMBedrock({ awsAccessKey, awsSecretKey, awsRegion, model, system, user, timeoutMs = 20000 }) { +async function callLLMBedrock({ awsAccessKey, awsSecretKey, awsRegion, model, system, user }) { try { const abclient = new AnthropicBedrock({ awsAccessKey, @@ -264,8 +264,7 @@ async function summarizeMostRecentCommitDE(webhookPayload = null) { awsRegion, model, system: systemWithDiff, - user: prompt.user, - timeoutMs: 20000 + user: prompt.user }); } else { // Use OpenAI-compatible API (openai, openrouter, etc.)