-
Notifications
You must be signed in to change notification settings - Fork 280
/
functions.py
29 lines (29 loc) · 1005 Bytes
/
functions.py
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
Leak_Function = [
{
"name": "dehashed-search",
"description": "Use this for investigating persons or entities. Can handle multiple queries.",
"parameters": {
"type": "object",
"properties": {
"queries": {
"type": "array",
"items": {
"type": "object",
"properties": {
"nickname": {
"type": "string",
"description": "The nickname to search",
},
"mail": {
"type": "string",
"description": "The mail to search",
},
},
"required": ["mail", "nickname"],
},
},
},
"required": ["queries"],
},
},
]