File size: 819 Bytes
dc4db28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  "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
  }
}