From 114b4f453a7bc43ce4a5874b42f5caecd61119ff Mon Sep 17 00:00:00 2001 From: arkml Date: Sun, 17 Aug 2025 12:32:21 +0530 Subject: [PATCH] removed temperature from agents to support gpt 5 --- apps/rowboat/app/lib/agents.ts | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/rowboat/app/lib/agents.ts b/apps/rowboat/app/lib/agents.ts index 54b5b416..f8e272e3 100644 --- a/apps/rowboat/app/lib/agents.ts +++ b/apps/rowboat/app/lib/agents.ts @@ -154,11 +154,7 @@ ${CHILD_TRANSFER_RELATED_INSTRUCTIONS} name: config.name, instructions: sanitized, tools: agentTools, - model: aisdk(openai(config.model)), - // model: config.model, - modelSettings: { - temperature: 0.0, - } + model: aisdk(openai(config.model)) }); agentLogger.log(`created agent`);