|
{ |
|
"name": "define_app_state", |
|
"description": "Defines the application state with conversation-related state management.", |
|
"strict": false, |
|
"parameters": { |
|
"type": "object", |
|
"required": [ |
|
"initial_task" |
|
], |
|
"properties": { |
|
"initial_task": { |
|
"type": "object", |
|
"required": [ |
|
"title", |
|
"description" |
|
], |
|
"properties": { |
|
"title": { |
|
"type": "string", |
|
"description": "Title of the task" |
|
}, |
|
"description": { |
|
"type": "string", |
|
"description": "Description of the task" |
|
} |
|
}, |
|
"description": "The initial task to be added to the conversation state", |
|
"additionalProperties": false |
|
} |
|
}, |
|
"additionalProperties": false |
|
} |
|
} |
|
|