Revert "Switch to the new Roo message parser" (#3649)

This commit is contained in:
Chris Estreich 2025-05-15 21:28:44 -07:00 committed by GitHub
parent d7eec3afa6
commit 433a564cce
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 6 deletions

View file

@ -0,0 +1,5 @@
---
"roo-cline": patch
---
Revert "Switch to the new Roo message parser"

View file

@ -1,3 +1,2 @@
export { type AssistantMessageContent, parseAssistantMessage } from "./parseAssistantMessage"
export { presentAssistantMessage } from "./presentAssistantMessage"
export { parseAssistantMessageV2 } from "./parseAssistantMessageV2"

View file

@ -60,11 +60,7 @@ import { SYSTEM_PROMPT } from "../prompts/system"
import { ToolRepetitionDetector } from "../tools/ToolRepetitionDetector"
import { FileContextTracker } from "../context-tracking/FileContextTracker"
import { RooIgnoreController } from "../ignore/RooIgnoreController"
import {
type AssistantMessageContent,
parseAssistantMessageV2 as parseAssistantMessage,
presentAssistantMessage,
} from "../assistant-message"
import { type AssistantMessageContent, parseAssistantMessage, presentAssistantMessage } from "../assistant-message"
import { truncateConversationIfNeeded } from "../sliding-window"
import { ClineProvider } from "../webview/ClineProvider"
import { MultiSearchReplaceDiffStrategy } from "../diff/strategies/multi-search-replace"