Codettev3 / name define app state.txt
Raiff1982's picture
Upload 21 files
dc4db28 verified
raw
history blame contribute delete
819 Bytes
{
"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
}
}