Hello everyone,
I am currently developing a GPT-3 based Chatbot and i wanted to fine tune it with some Data i got. Unfortunatly i havent even made it to the part, where fine tuning would start.
I am using windows, and want to use the CMD Shell to work with GPT-3. For this i can run the first command from the fine tuning guide:
pip install --upgrade openai
But the second command, which needs to be set somehow can’t be run neither in python nor in the shell:
export OPENAI_API_KEY="<OPENAI_API_KEY>"
I understood, that i need to set my key as an environment variable, but i don’t know how this is done under windows. I know how to set normal envirnoment variables, but not keys to be used by the CMD.
When continuing the guide i stumble upon another problem, which is the execution of commands such as:
openai tools fine_tunes.prepare_data -f <LOCAL_FILE>
even though i installed openai via pip, it is not magically part of my shell.
Am I getting something compleatly wrong, because i am starting to believe this tutorial is for Linux only and i need some other shell to even work with GPT-3.
Kind regards
Fabian