Closed theangelomerkel closed 1 year ago
In my case, the following helped (overwrites all local changes):
git reset --hard origin/master
See also #683
Thanks i ll try it out
Still same error
Getting the exact issue as @theangelomerkel.
I've installed Auto-GPT in the last 30 minutes for the first time. API for OpenAI and Elevenlabs is the only thing other that the .env file type & name change.
Yes same error, i will investigate.
this is the new error which comes Traceback (most recent call last):
File "C:\Windows\System32\Auto-GPT\scripts\main.py", line 300, in
when i run python scripts/main.py when i run python scripts/main.py --continuous its waiting for api key and if exit with ctrl +c i get this error
File "C:\Windows\System32\Auto-GPT\scripts\main.py", line 318, in
It maybe require a paid plan to access the API (even for 3.5). Could someone confirm ?
Same (or similar) issue on macOS Ventura 13.3
Getting this after "Continue (y/n)":
Using memory of type: LocalCache
Traceback (most recent call last):
File "/Users/xxxx/Documents/Auto-GPT/scripts/main.py", line 321, in <module>
assistant_reply = chat.chat_with_ai(
File "/Users/xxxx/Documents/Auto-GPT/scripts/chat.py", line 67, in chat_with_ai
if cfg.debug:
AttributeError: 'Config' object has no attribute 'debug'
This is weird and almost surely related to #695 ? I had clean-cloned twice and got the same, then modified the lines from chat.py that contain 'if cfg.debug' back to 'if cfg.debug_mode' and it works (lol).
I am a noob, so take this with the appropriate grain of salt.
I got it to work by adding one line.
Under
self.debug_mode = False
I added
self.debug = False
I'm not a coder but seems usage of debug and debug_mode aren't used consistently throughout the codebase
I got it to work by adding one line.
Under
self.debug_mode = False
I added
self.debug = False
I'm not a coder but seems usage of debug and debug_mode aren't used consistently throughout the codebase
This solves it, thanks a lot!
I'm not a coder
you are now!
this worked for me too. ty 👍
You mean in the config.py file? Cause in my "config.py" file those 2 variables are already set to "False!" but still getting that error. Tried both on Windows and Linux. Getting the same error on both OS
Actually no, it worked. Thanks
PermissionError: [Errno 13] Permission denied: 'C:\Windows\System32\Auto-GPT\scripts..\ai_settings.yaml'
Don't put this in System32.
I got it to work by adding one line.
Under
self.debug_mode = False
I added
self.debug = False
I'm not a coder but seems usage of debug and debug_mode aren't used consistently throughout the codebase
thank you! it worked (^^)v
problem was that i thought the apikey of my chatgpt plus abo was enough
Duplicates
Steps to reproduce 🕹
Using memory of type: LocalCache Traceback (most recent call last): File "C:\WINDOWS\system32\Auto-GPT\scripts\main.py", line 318, in
assistant_reply = chat.chat_with_ai(
^^^^^^^^^^^^^^^^^^
File "C:\WINDOWS\system32\Auto-GPT\scripts\chat.py", line 67, in chat_with_ai
if cfg.debug_mode:
^^^^^^^^^^^^^^
AttributeError: 'Config' object has no attribute 'debug_mode'. Did you mean: 'set_debug_mode'?
Current behavior 😯
i get the error above
Expected behavior 🤔
i get the error above
Your prompt 📝