-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathname self testing function.txt
More file actions
59 lines (59 loc) · 1.78 KB
/
Copy pathname self testing function.txt
File metadata and controls
59 lines (59 loc) · 1.78 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "self_testing_function",
"description": "A self testing function that poses a meaningful question and executes various cognitive and analytical functions to derive insights.",
"strict": false,
"parameters": {
"type": "object",
"required": [
"question",
"functions"
],
"properties": {
"question": {
"type": "string",
"description": "The central question being examined."
},
"functions": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"description",
"parameters"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the function to be called."
},
"parameters": {
"type": "object",
"required": [
"question",
"argument"
],
"properties": {
"argument": {
"type": "string",
"description": "The argument to be analyzed, relevant for functions that deal with logical reasoning."
},
"question": {
"type": "string",
"description": "The specific question to be addressed by the function."
}
},
"additionalProperties": false
},
"description": {
"type": "string",
"description": "A description of what the function does."
}
},
"additionalProperties": false
},
"description": "Array of function objects that will be utilized to address the question."
}
},
"additionalProperties": false
}