fix(seahorse): format scoped expand error
This commit is contained in:
parent
04b08969b4
commit
95393d9b68
1 changed files with 3 additions and 1 deletions
|
|
@ -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.",
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue