We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1b2774 commit 7bfcedcCopy full SHA for 7bfcedc
lua/vectorcode/integrations/codecompanion/func_calling_tool.lua
@@ -243,7 +243,7 @@ return check_cli_wrap(function(opts)
243
stderr = cc_common.flatten_table_to_string(stderr)
244
agent.chat:add_tool_output(
245
self,
246
- string.format("VectorCode tool failed with error:\n", stderr)
+ string.format("**VectorCode Tool**: Failed with error:\n", stderr)
247
)
248
end,
249
---@param agent CodeCompanion.Agent
@@ -264,7 +264,7 @@ return check_cli_wrap(function(opts)
264
if i <= max_result then
265
if i == 1 then
266
user_message =
267
- string.format("Retrieved %s files from VectorCode.", max_result)
+ string.format("**VectorCode Tool**: Retrieved %s files", max_result)
268
else
269
user_message = ""
270
end
0 commit comments