Code Monkey home page Code Monkey logo

Comments (33)

FayazRahman avatar FayazRahman commented on June 22, 2024 2

@devsktlabs From your directory, can you open up python and run the following commands:

from dotenv import load_dotenv
import os
load_dotenv()
os.getenv("OPENAI_API_KEY")

Does that give you your api key?

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024 2

seems like we might be able to close this now

from loopgpt.

FayazRahman avatar FayazRahman commented on June 22, 2024 1

@tylerlindell Thanks for confirming its working on your end.
@devsktlabs Have you enabled "show file extension" on windows? The env file in our repo is .env.template, so if the "show file extension" is not enabled, the .template will be hidden. If this is the case, you need to change it so that the file name is just .env

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024 1

image

maybe its possible docker is messing it up. I can try to pull fresh

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024 1

I'm using it w/o docker

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024 1

PS C:\looptest> python ./examples/research_gpt.py WARNING: OpenAI API Key not found. Please set the OPENAI_API_KEY` environment variable. LoopGPT cannot work without it. See https://github.com/farizrahman4u/loopgpt#-requirements for more details

+------------------------------------------------------------+
| ██╗░░░░░░█████╗░░█████╗░██████╗░░██████╗░██████╗░████████╗ |
| ██║░░░░░██╔══██╗██╔══██╗██╔══██╗██╔════╝░██╔══██╗╚══██╔══╝ |
| ██║░░░░░██║░░░░██░░░░██║██████╔╝██║░░██╗░██████╔╝░░░██║░░░ |
| ██║░░░░░██║░░██║██║░░██║██╔═══╝░██║░░╚██╗██╔═══╝░░░░██║░░░ |
| ███████╗╚█████╔╝╚█████╔╝██║░░░░░╚██████╔╝██║░░░░░░░░██║░░░ |
| ╚══════╝░╚════╝░░╚════╝░╚═╝░░░░░░╚═════╝░╚═╝░░░░░░░░╚═╝░░░ |
+------------------------------------------------------------+

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Traceback (most recent call last):
File "C:\looptest\examples\research_gpt.py", line 16, in
agent.cli()
File "C:\Users\tumol\AppData\Local\Programs\Python\Python311\Lib\site-packages\loopgpt\agent.py", line 471, in cli
cli(self, continuous=continuous)
File "C:\Users\tumol\AppData\Local\Programs\Python\Python311\Lib\site-packages\loopgpt\loops\repl.py", line 114, in cli
resp = agent.chat()
^^^^^^^^^^^^
File "C:\Users\tumol\AppData\Local\Programs\Python\Python311\Lib\site-packages\loopgpt\utils\spinner.py", line 137, in inner
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\tumol\AppData\Local\Programs\Python\Python311\Lib\site-packages\loopgpt\agent.py", line 173, in chat
resp = self.model.chat(
^^^^^^^^^^^^^^^^
File "C:\Users\tumol\AppData\Local\Programs\Python\Python311\Lib\site-packages\loopgpt\models\openai_.py", line 32, in chat
api_key = getkey(self.api_key)
^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\tumol\AppData\Local\Programs\Python\Python311\Lib\site-packages\loopgpt\models\openai
.py", line 12, in _getkey
raise ValueError(
ValueError: OpenAI API Key not found. Please set the OPENAI_API_KEY environment variable. See https://github.com/farizrahman4u/loopgpt#-requirements for more details`

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024 1

naw, python and the .env should be able to handle that for you

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024 1

yes that passes the key

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024 1

ok I removed the entire directory again including .git. started over and went the process @FayazRahman suggested and it is now working. thank you for walking me through this issue. Agents releasing!

from loopgpt.

FayazRahman avatar FayazRahman commented on June 22, 2024 1

@devsktlabs ♾️🕵️‍♂️

from loopgpt.

maker57sk avatar maker57sk commented on June 22, 2024

Inside loopgpt dir rename [.env.template] to [.env] and change the "REPLACE-THIS-WITH-YOUR-API-KEY" with your open ai api key

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

even after adding .env file with open_api_key I receive environment variable error. api key not found. i've placed it in root directory as well as /loopgpt directory and still the same error. Anyone else running into this?

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024

even after adding .env file with open_api_key I receive environment variable error. api key not found. i've placed it in root directory as well as /loopgpt directory and still the same error. Anyone else running into this?

OPENAI_API_KEY should be all caps. it seems to work for me.

from loopgpt.

FayazRahman avatar FayazRahman commented on June 22, 2024

even after adding .env file with open_api_key I receive environment variable error. api key not found. i've placed it in root directory as well as /loopgpt directory and still the same error. Anyone else running into this?

Hey @devsktlabs, can you tell me if you are using windows?

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024

even after adding .env file with open_api_key I receive environment variable error. api key not found. i've placed it in root directory as well as /loopgpt directory and still the same error. Anyone else running into this?

Hey @devsktlabs, can you tell me if you are using windows?

I recognize you are addressing @devsktlabs directly but to clarify on my end, I am on Windows 10 and it is working for me.

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

Using windows 11

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024

@devsktlabs can you copy/paste your .env here? Please hide any sensitive data.

more detail would be good on the commands you're running, which cli you're using, etc. give us the ability to reproduce :-)

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

I've tried like this
OPENAI_API_KEY = "sk-mykey"

also like this
OPENAI_API_KEY=sk-mykey

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

Using autogpt daily and no issues on that one btw

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024

same here but I'm not facing issues on either repo :-)

what does the CLI output or error look like? screenshot or something?

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

image

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024

which directory is the .env file? is the name of the .env file exactly that without whitespace?

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

Same outcome with a fresh clone... hmm at a loss on this one

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024

what directory are you within while trying to run your python command?

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

the fresh clone is in /looptest, .env is in /looptest and I am running "loopgpt run" in the same directory.

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

image

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024

try python ./examples/research_gpt.py

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

is there supposed to be a specific path in my environment variables on windows that i'm missing?

from loopgpt.

devsktlabs avatar devsktlabs commented on June 22, 2024

its so strange that autogpt find .env in that directory but cannot with loop

from loopgpt.

FayazRahman avatar FayazRahman commented on June 22, 2024

@devsktlabs That makes it even worse because this is the same code we use in the repo 😨 Let me do all the steps just like you did and get back to you. In the meantime, you can set your environment variable OPENAI_API_KEY to your key and that will definitely work. See how to set environment variables on windows here: https://www.architectryan.com/2018/08/31/how-to-change-environment-variables-on-windows-10/

from loopgpt.

tylerlindell avatar tylerlindell commented on June 22, 2024

yes that passes the key

looks like you're using vscode! you could try a breakpoint in the code you have there and inspect for more details.

also, I'm not as familiar with powershell - do you have git bash as a terminal option for vscode?

from loopgpt.

FayazRahman avatar FayazRahman commented on June 22, 2024

@devsktlabs I tried the exact same steps and it worked:

git clone https://github.com/farizrahman4u/loopgpt.git looptest
cd looptest
pip install -e .

rename .env.template -> .env
replace api-key

loopgpt run

from loopgpt.

swapneils avatar swapneils commented on June 22, 2024

This seems to still be an issue if downloaded via pip? Using git and pip install -e work fine, but pip install loopgpt and putting .env in the directory with my runagent.py can't find the openai key, even though the os.getenv works fine.

I think we might want users to optionally provide the agent with an environment (and propagate that to the tools, of course), so that the pip package can work without having to set environment variables.

from loopgpt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.