File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ M._defaults = {
5959 success = " ✅" , -- Shown when a tool call succeeds
6060 error = " ❌" , -- Shown when a tool call fails
6161 running = " ⏳" , -- Shown while a tool call is running / has no final status yet
62- expanded = " ▲ " , -- Arrow when the tool call details are expanded
62+ expanded = " ▼ " , -- Arrow when the tool call details are expanded
6363 collapsed = " ▶" , -- Arrow when the tool call details are collapsed
6464 },
6565 diff = {
Original file line number Diff line number Diff line change @@ -2013,14 +2013,13 @@ function M:_handle_reason_text(content)
20132013 -- Accumulate raw reasoning text
20142014 call .arguments = (call .arguments or " " ) .. content .text
20152015
2016- -- Build markdown quote block for the reasoning body
2016+ -- Build plain text block for the reasoning body (no markdown quote prefix)
20172017 call .arguments_lines = {}
20182018
20192019 local lines = Utils .split_lines (call .arguments or " " )
20202020 for _ , line in ipairs (lines ) do
20212021 line = line ~= " " and line or " "
2022- -- Prefix each line with markdown blockquote
2023- table.insert (call .arguments_lines , " > " .. line )
2022+ table.insert (call .arguments_lines , line )
20242023 end
20252024
20262025 -- Trailing blank line for spacing
You can’t perform that action at this time.
0 commit comments