Feature request: Show all tool call arguments in continue.dev CLI #9321
eminence
started this conversation in
Feature Requests
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a tool that will convert things from one unit to another unit. It has two input arguments. Here's what the tool schema looks like:
{ "inputSchema": { "type": "object", "properties": { "input_expression": { "description": "The input expression to convert", "type": "string" }, "output_unit": { "description": "The unit to convert to", "type": "string" } } } }The continue.dev CLI can correctly call this tool, but in the UI, it will only print out the first argument to the tool, not all the arguments:
I'd like to see all the arguments printed here
Beta Was this translation helpful? Give feedback.
All reactions