IntelligenzaArtificiale / Free-Auto-GPT

Free Auto GPT with NO paids API is a repository that offers a simple version of Auto GPT, an autonomous AI agent capable of performing tasks independently. Unlike other versions, our implementation does not rely on any paid OpenAI API, making it accessible to anyone.
MIT License
2.47k stars 383 forks source link

AutoGPT.py doesn't start beacuse of the module Bard although it is installed #93

Closed MMM1706 closed 1 year ago

MMM1706 commented 1 year ago

Hi I can't start AutoGPT because (I think) it says I didn't install Bard although I did:

C:\Users\ASUS\Desktop\MENA\AutoGPT\Free Auto GPT\Free-Auto-GPT>python -m pip install bard Requirement already satisfied: bard in c:\users\asus\appdata\local\packages\pythonsoftwarefoundation.python.3.10_qbz5n2kfra8p0\localcache\local-packages\python310\site-packages (0.1)

C:\Users\ASUS\Desktop\MENA\AutoGPT\Free Auto GPT\Free-Auto-GPT>python AutoGpt.py Traceback (most recent call last): File "C:\Users\ASUS\Desktop\MENA\AutoGPT\Free Auto GPT\Free-Auto-GPT\AutoGpt.py", line 15, in from FreeLLM import BardChatAPI # FREE GOOGLE BARD API File "C:\Users\ASUS\Desktop\MENA\AutoGPT\Free Auto GPT\Free-Auto-GPT\FreeLLM\BardChatAPI.py", line 1, in from Bard import Chatbot ModuleNotFoundError: No module named 'Bard'

TheManWhoLikesToCode commented 1 year ago

Try running pip3 install GoogleBard

or comment out the import to see if that's the issue

IntelligenzaArtificiale commented 1 year ago

try python3 -m pip3 install -U GoogleBard

MMM1706 commented 1 year ago

worked, thank you