-
Notifications
You must be signed in to change notification settings - Fork 337
Expand file tree
/
Copy pathfunctions.py
More file actions
20 lines (19 loc) · 767 Bytes
/
functions.py
File metadata and controls
20 lines (19 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Leak_Function = [ {
"name": "dehashed-search",
"description": "You will use this whenever the query is related to any type of action related to the investigation of persons or entities of any kind.",
"parameters": {
"type": "object",
"properties": {
"mail": {
"type": "string",
"description": "The mail/domain to search, if not full mail is provided, take the domain",
},
"nickname": {
"type": "string",
"description": "The nickname to search",
},
},
"required": ["mail", "nickname"], # Puedes añadir los parametros que quieras
},
},
]