auto-gpt-ts
Version:
my take of Auto-GPT in typescript
32 lines (31 loc) • 966 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"thoughts": {
"type": "object",
"properties": {
"text": { "type": "string" },
"reasoning": { "type": "string" },
"plan": { "type": "string" },
"criticism": { "type": "string" },
"speak": { "type": "string" }
},
"required": ["text", "reasoning", "plan", "criticism", "speak"],
"additionalProperties": false
},
"command": {
"type": "object",
"properties": {
"name": { "type": "string" },
"args": {
"type": "object"
}
},
"required": ["name", "args"],
"additionalProperties": false
}
},
"required": ["thoughts", "command"],
"additionalProperties": false
}