Move To-Do Tool to Session Scope from Agent Scope (#4157)
This commit is contained in:
@@ -3186,6 +3186,11 @@
|
||||
"description": "ID of the schedule that triggered this session, if any",
|
||||
"nullable": true
|
||||
},
|
||||
"todo_content": {
|
||||
"type": "string",
|
||||
"description": "Session-scoped TODO list content",
|
||||
"nullable": true
|
||||
},
|
||||
"total_tokens": {
|
||||
"type": "integer",
|
||||
"format": "int32",
|
||||
|
||||
@@ -698,6 +698,10 @@ export type SessionMetadata = {
|
||||
* ID of the schedule that triggered this session, if any
|
||||
*/
|
||||
schedule_id?: string | null;
|
||||
/**
|
||||
* Session-scoped TODO list content
|
||||
*/
|
||||
todo_content?: string | null;
|
||||
/**
|
||||
* The total number of tokens used in the session. Retrieved from the provider's last usage.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user