Get the current todos.
(runtime: ToolRuntime)
| 38 | |
| 39 | @tool |
| 40 | def get_todos(runtime: ToolRuntime): |
| 41 | """ |
| 42 | Get the current todos. |
| 43 | """ |
| 44 | return runtime.state.get("todos", []) |
| 45 | |
| 46 | todo_tools = [ |
| 47 | manage_todos, |
nothing calls this directly
no outgoing calls
no test coverage detected