Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,8 @@ export class ChatSessionContentBuilder {
}
case 'str_replace':
return buildStrReplaceDetails(args.path);
case 'edit':
return buildEditDetails(args.path, 'edit', undefined, { defaultName: 'Edit' });
case 'create':
return buildCreateDetails(args.path);
case 'view':
Expand All @@ -590,6 +592,9 @@ export class ChatSessionContentBuilder {
return { toolName: 'read_bash', invocationMessage: 'Read logs from Bash session' };
case 'stop_bash':
return { toolName: 'stop_bash', invocationMessage: 'Stop Bash session' };
case 'run_custom_setup_step':
case 'run_setup':
return { toolName: 'run_custom_setup_step', invocationMessage: content || 'Run custom setup step' };
default:
return { toolName: name || 'unknown', invocationMessage: content || name || 'unknown' };
}
Expand Down
Loading