fix(seahorse): format scoped expand error

This commit is contained in:
Anton Bogdanovich 2026-05-05 17:18:08 -07:00
parent 04b08969b4
commit 95393d9b68

View file

@ -100,7 +100,9 @@ func (t *ExpandTool) Execute(ctx context.Context, args map[string]any) *tools.To
return tools.ErrorResult("Expand failed: resolve current conversation: " + err.Error()) return tools.ErrorResult("Expand failed: resolve current conversation: " + err.Error())
} }
if !found { if !found {
return tools.ErrorResult("Expand failed: no current conversation found for this session. Use all_conversations: true to expand across conversations.") return tools.ErrorResult(
"Expand failed: no current conversation found for this session. Use all_conversations: true to expand across conversations.",
)
} }
} }