JSON error :(
#4763
Replies: 1 comment
-
Have the same issue. If anyone in the future finds a solution plz kick my ass. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I am trying to export different things in .txt
However, this is what happened:
SYSTEM: Command export_file returned: Unknown command 'export_file'. Please refer to the 'COMMANDS' list for available commands and only respond in the specified JSON format.
Error parsing JSON response with literal_eval invalid syntax (, line 1)
JSON Validation Error: 'thoughts' is a required property
Failed validating 'required' in schema:
{'$schema': 'http://json-schema.org/draft-07/schema#',
'additionalProperties': False,
'properties': {'command': {'additionalProperties': False,
'properties': {'args': {'type': 'object'},
'name': {'type': 'string'}},
'required': ['name', 'args'],
'type': 'object'},
'thoughts': {'additionalProperties': False,
'properties': {'criticism': {'description': 'constructive '
'self-criticism',
'type': 'string'},
'plan': {'description': '- '
'short '
'bulleted\n'
'- '
'list '
'that '
'conveys\n'
'- '
'long-term '
'plan',
'type': 'string'},
'reasoning': {'type': 'string'},
'speak': {'description': 'thoughts '
'summary '
'to '
'say '
'to '
'user',
'type': 'string'},
'text': {'description': 'thoughts',
'type': 'string'}},
'required': ['text',
'reasoning',
'plan',
'criticism',
'speak'],
'type': 'object'}},
'required': ['thoughts', 'command'],
'type': 'object'}
On instance:
{}
JSON Validation Error: 'command' is a required property
Failed validating 'required' in schema:
{'$schema': 'http://json-schema.org/draft-07/schema#',
'additionalProperties': False,
'properties': {'command': {'additionalProperties': False,
'properties': {'args': {'type': 'object'},
'name': {'type': 'string'}},
'required': ['name', 'args'],
'type': 'object'},
'thoughts': {'additionalProperties': False,
'properties': {'criticism': {'description': 'constructive '
'self-criticism',
'type': 'string'},
'plan': {'description': '- '
'short '
'bulleted\n'
'- '
'list '
'that '
'conveys\n'
'- '
'long-term '
'plan',
'type': 'string'},
'reasoning': {'type': 'string'},
'speak': {'description': 'thoughts '
'summary '
'to '
'say '
'to '
'user',
'type': 'string'},
'text': {'description': 'thoughts',
'type': 'string'}},
'required': ['text',
'reasoning',
'plan',
'criticism',
'speak'],
'type': 'object'}},
'required': ['thoughts', 'command'],
'type': 'object'}
On instance:
{}
Beta Was this translation helpful? Give feedback.
All reactions