Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enviroment file #16

Closed
oyvindhagen2 opened this issue Apr 23, 2023 · 33 comments
Closed

Enviroment file #16

oyvindhagen2 opened this issue Apr 23, 2023 · 33 comments

Comments

@oyvindhagen2
Copy link

Hi, Could you include and inviroment file that can be edited directly?

@maker57sk
Copy link
Contributor

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

@devsktlabs
Copy link

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?

@tylerlindell
Copy link

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.

@FayazRahman
Copy link
Collaborator

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?

@tylerlindell
Copy link

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.

@devsktlabs
Copy link

Using windows 11

@tylerlindell
Copy link

tylerlindell commented Apr 28, 2023

@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 :-)

@devsktlabs
Copy link

devsktlabs commented Apr 28, 2023

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

also like this
OPENAI_API_KEY=sk-mykey

@devsktlabs
Copy link

Using autogpt daily and no issues on that one btw

@tylerlindell
Copy link

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

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

@devsktlabs
Copy link

image

@tylerlindell
Copy link

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

@FayazRahman
Copy link
Collaborator

@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

@devsktlabs
Copy link

image

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

@tylerlindell
Copy link

I'm using it w/o docker

@devsktlabs
Copy link

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

@tylerlindell
Copy link

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

@devsktlabs
Copy link

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

@devsktlabs
Copy link

image

@tylerlindell
Copy link

try python ./examples/research_gpt.py

@devsktlabs
Copy link

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`

@devsktlabs
Copy link

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

@tylerlindell
Copy link

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

@devsktlabs
Copy link

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

@FayazRahman
Copy link
Collaborator

@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?

@devsktlabs
Copy link

yes that passes the key

@FayazRahman
Copy link
Collaborator

@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/

@tylerlindell
Copy link

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?

@FayazRahman
Copy link
Collaborator

@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

@devsktlabs
Copy link

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!

@FayazRahman
Copy link
Collaborator

@devsktlabs ♾️🕵️‍♂️

@tylerlindell
Copy link

seems like we might be able to close this now

@swapneils
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants