Qrzysztof commited on
Commit
a425cd5
·
verified ·
1 Parent(s): ed1ccd9

add tool.json

Browse files
Files changed (1) hide show
  1. tool.json +15 -0
tool.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "extract_name",
3
+ "title": "Extract name of the intended person",
4
+ "description": "Extract the given (first) name of the intended person from the text. Call with the person's given name only, never the surname. If the text has no intended person, do not call the tool.",
5
+ "parameters": {
6
+ "type": "object",
7
+ "properties": {
8
+ "name": {
9
+ "type": "string",
10
+ "description": "The given (first) name of the intended person; never the surname."
11
+ }
12
+ },
13
+ "required": ["name"]
14
+ }
15
+ }