From 26899bf6015e685c2529b94248920aadc6539bba Mon Sep 17 00:00:00 2001 From: Roo Code Date: Fri, 13 Feb 2026 02:00:56 +0000 Subject: [PATCH] fix: update stale JSDoc reference to removed convertToAiSdkMessages --- src/core/task-persistence/converters/anthropicToRoo.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/task-persistence/converters/anthropicToRoo.ts b/src/core/task-persistence/converters/anthropicToRoo.ts index 543bcfad1e..24a0d9bc15 100644 --- a/src/core/task-persistence/converters/anthropicToRoo.ts +++ b/src/core/task-persistence/converters/anthropicToRoo.ts @@ -4,8 +4,8 @@ * This is the critical backward-compatibility piece that allows old conversation * histories stored in Anthropic format to be read and converted to the new format. * - * The conversion logic mirrors {@link ../../api/transform/ai-sdk.ts | convertToAiSdkMessages} - * but targets `RooMessage` types instead of AI SDK `ModelMessage`. + * Converts Anthropic content blocks (tool_use, tool_result, thinking, reasoning, + * thoughtSignature, etc.) into their AI SDK RooMessage equivalents. */ import type { TextPart, ImagePart, ToolCallPart, ToolResultPart, ReasoningPart } from "../rooMessage"