2.5.2 #12
Loading…
Reference in a new issue
No description provided.
Delete branch "2.5.2"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Each round of a multi-tool-call chain used to append a new "Calling: X" message, so a long tool chain stacked up a growing list of rows in the transcript. Replaced with a transient status line under the thinking indicator that updates in place each round; once the response completes, the whole chain collapses into one expandable summary message ("Used N tool calls") instead of N separate ones.The multi-line backslash-continued curl command was fragile to copy/paste: a trailing space after \ or a dropped backslash (both common when pasting a multi-line snippet out of a chat UI or browser) silently breaks the continuation, so each following line gets parsed as its own bogus command instead of a curl flag - exactly what Rune hit ("command not found: -H", "-d", "no such file or directory: http://localhost/") after pasting the previous version. A long single line has no continuation character left to mangle.