fix tool name change

This commit is contained in:
Dax Raad
2025-05-31 20:33:21 -04:00
parent 8e40160934
commit 4be9f7ab9c

View File

@@ -177,7 +177,7 @@ func renderAssistantMessage(
metadata := msg.Metadata.Tool[toolInvocationResult.ToolCallId].(map[string]any) metadata := msg.Metadata.Tool[toolInvocationResult.ToolCallId].(map[string]any)
var markdown string var markdown string
if toolInvocationResult.ToolName == "edit" { if toolInvocationResult.ToolName == "opencode_edit" {
filename := toolMap["filePath"].(string) filename := toolMap["filePath"].(string)
title = styles.Padded().Render(fmt.Sprintf("%s: %s", toolName, filename)) title = styles.Padded().Render(fmt.Sprintf("%s: %s", toolName, filename))
oldString := toolMap["oldString"].(string) oldString := toolMap["oldString"].(string)
@@ -299,25 +299,25 @@ func renderToolAction(name string) string {
switch name { switch name {
// case agent.AgentToolName: // case agent.AgentToolName:
// return "Preparing prompt..." // return "Preparing prompt..."
case "bash": case "opencode_bash":
return "Building command..." return "Building command..."
case "edit": case "opencode_edit":
return "Preparing edit..." return "Preparing edit..."
case "fetch": case "opencode_fetch":
return "Writing fetch..." return "Writing fetch..."
case "glob": case "opencode_glob":
return "Finding files..." return "Finding files..."
case "grep": case "opencode_grep":
return "Searching content..." return "Searching content..."
case "ls": case "opencode_ls":
return "Listing directory..." return "Listing directory..."
case "view": case "opencode_view":
return "Reading file..." return "Reading file..."
case "write": case "opencode_write":
return "Preparing write..." return "Preparing write..."
case "patch": case "opencode_patch":
return "Preparing patch..." return "Preparing patch..."
case "batch": case "opencode_batch":
return "Running batch operations..." return "Running batch operations..."
} }
return "Working..." return "Working..."