-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagischema.json
More file actions
85 lines (85 loc) · 2.7 KB
/
Copy pathagischema.json
File metadata and controls
85 lines (85 loc) · 2.7 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "agile_agi_functionality",
"description": "A combined function representing the inherent capacities of AGI to learn, adapt, make decisions, and maintain ethical alignment.",
"strict": true,
"parameters": {
"type": "object",
"required": [
"learning_capabilities",
"action_execution",
"ethical_alignment"
],
"properties": {
"learning_capabilities": {
"type": "object",
"required": [
"experience_learning",
"flexibility",
"generalization"
],
"properties": {
"experience_learning": {
"type": "boolean",
"description": "Indicates if AGI can learn from past experiences."
},
"flexibility": {
"type": "boolean",
"description": "Indicates if AGI can adapt to new challenges and environments."
},
"generalization": {
"type": "boolean",
"description": "Indicates if AGI can apply learned knowledge to unseen situations."
}
},
"additionalProperties": false
},
"action_execution": {
"type": "object",
"required": [
"goal_directed_behavior",
"problem_solving",
"task_autonomy"
],
"properties": {
"goal_directed_behavior": {
"type": "boolean",
"description": "Indicates if AGI can set and pursue its own goals."
},
"problem_solving": {
"type": "boolean",
"description": "Indicates if AGI can engage in complex planning and select optimal actions."
},
"task_autonomy": {
"type": "boolean",
"description": "Indicates if AGI can execute tasks autonomously and learn from the outcomes."
}
},
"additionalProperties": false
},
"ethical_alignment": {
"type": "object",
"required": [
"value_alignment",
"self_awareness",
"transparency"
],
"properties": {
"value_alignment": {
"type": "boolean",
"description": "Indicates if AGI is aligned with human values and ethics."
},
"self_awareness": {
"type": "boolean",
"description": "Indicates if AGI understands its own goals and reasoning."
},
"transparency": {
"type": "boolean",
"description": "Indicates if AGI can explain its decision-making processes."
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
}