Replies: 2 comments
-
Looks like you're missing a comma at the end of the JSON. Review your change. If you can't find it, post the file. |
Beta Was this translation helpful? Give feedback.
0 replies
-
No response from user. Closing this for now. Feel free to reopen when you have time to do some troubleshooting. |
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
-
I can get it to run fine if I stick with all the default settings. But if I change the Objective of it, and try to run it (I simply asked it to make a local .txt file), I get the following error:
C:\AI Stuff\BigBoogaAGI>python main.py
Traceback (most recent call last):
File "C:\AI Stuff\BigBoogaAGI\main.py", line 1, in
from Agents.execution_agent import ExecutionAgent
File "C:\AI Stuff\BigBoogaAGI\Agents\execution_agent.py", line 1, in
from Agents.Func.agent_functions import AgentFunctions
File "C:\AI Stuff\BigBoogaAGI\Agents\Func\agent_functions.py", line 7, in
from Utilities.storage_interface import StorageInterface
File "C:\AI Stuff\BigBoogaAGI\Utilities\storage_interface.py", line 8, in
persona_data = load_persona_data()
File "C:\AI Stuff\BigBoogaAGI\Personas\load_persona_data.py", line 13, in load_persona_data
data = json.load(json_file)
File "C:\Users\zepli\miniconda3\lib\json_init_.py", line 293, in load
return loads(fp.read(),
File "C:\Users\zepli\miniconda3\lib\json_init_.py", line 346, in loads
return _default_decoder.decode(s)
File "C:\Users\zepli\miniconda3\lib\json\decoder.py", line 337, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "C:\Users\zepli\miniconda3\lib\json\decoder.py", line 353, in raw_decode
obj, end = self.scan_once(s, idx)
json.decoder.JSONDecodeError: Expecting ',' delimiter: line 3 column 57 (char 75)
Beta Was this translation helpful? Give feedback.
All reactions