aboutsummaryrefslogtreecommitdiff
path: root/autogpt/json_utils/llm_response_format_1.json
diff options
context:
space:
mode:
Diffstat (limited to 'autogpt/json_utils/llm_response_format_1.json')
-rw-r--r--autogpt/json_utils/llm_response_format_1.json45
1 files changed, 0 insertions, 45 deletions
diff --git a/autogpt/json_utils/llm_response_format_1.json b/autogpt/json_utils/llm_response_format_1.json
deleted file mode 100644
index 17101dda1..000000000
--- a/autogpt/json_utils/llm_response_format_1.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "$schema": "http://json-schema.org/draft-07/schema#",
- "type": "object",
- "properties": {
- "thoughts": {
- "type": "object",
- "properties": {
- "text": {
- "type": "string",
- "description": "thoughts"
- },
- "reasoning": {
- "type": "string"
- },
- "plan": {
- "type": "string",
- "description": "- short bulleted\n- list that conveys\n- long-term plan"
- },
- "criticism": {
- "type": "string",
- "description": "constructive self-criticism"
- },
- "speak": {
- "type": "string",
- "description": "thoughts summary to say to user"
- }
- },
- "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
-}