-
Notifications
You must be signed in to change notification settings - Fork 36
/
save_new_memory.json
29 lines (29 loc) · 965 Bytes
/
save_new_memory.json
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
{
"name": "save_new_memory",
"description": "Saves a new piece of information as a memory",
"parameters": {
"type": "object",
"properties": {
"memory_title": {
"type": "string",
"description": "The title or brief description of the memory"
},
"memory_detail": {
"type": "string",
"description": "The detailed information of the memory"
},
"memory_date": {
"type": "string",
"description": "The date when the memory was created in 'YYYY-MM-DD' format"
},
"memory_tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Any tags or keywords associated with the memory"
}
},
"required": [ "memory_title", "memory_detail" ]
}
}