We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 099ea6d commit 0573cdbCopy full SHA for 0573cdb
src/core/assistant-message/presentAssistantMessage.ts
@@ -808,8 +808,9 @@ export async function presentAssistantMessage(cline: Task) {
808
break
809
case "read_file":
810
// Check if this model should use the simplified single-file read tool
811
+ // Only use simplified tool for XML protocol - native protocol works with standard tool
812
const modelId = cline.api.getModel().id
- if (shouldUseSingleFileRead(modelId)) {
813
+ if (shouldUseSingleFileRead(modelId) && toolProtocol !== TOOL_PROTOCOL.NATIVE) {
814
await simpleReadFileTool(
815
cline,
816
block,
0 commit comments