You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updates:
- Added a Lookup command for the todo_list tool that allows the model
to see existing todo lists in the user's current directory
- Added ID validation so that the model is notified that a given ID
is invalid, rather than throwing an error
- Changed todo list checkboxes to be "[ ]" and "[x]" for cross-platform
consistency
- Changed todo list selection to use the same theme as everything else
Copy file name to clipboardExpand all lines: crates/chat-cli/src/cli/chat/tools/tool_index.json
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -309,9 +309,10 @@
309
309
"complete",
310
310
"load",
311
311
"add",
312
-
"remove"
312
+
"remove",
313
+
"lookup"
313
314
],
314
-
"description": "The command to run. Allowed options are `create`, `complete`, `load`, `add`, and `remove`."
315
+
"description": "The command to run. Allowed options are `create`, `complete`, `load`, `add`, `remove`, and `lookup`. Call `lookup` without arguments to see a list of all existing TODO list IDs."
315
316
},
316
317
"tasks": {
317
318
"description": "Required parameter of `create` command containing the list of DISTINCT tasks to be added to the TODO list.",
0 commit comments