Docker image blueprint of OpenAI CLI (Command line interface) with all the dependencies installed (python, pip etc) that can be used to fine-tune/train a model with custom data sets. OpenAI CLI Fine-Tuning Docs
#.env.local
OPENAI_API_KEY="<YOUR_OPENAI_API_KEY>"
Execute the following commands in the given order:
First build the image:
./dev-tools.sh build
Then start the container:
./dev-tools.sh start
Then execute commands in the running container:
./dev-tools.sh exec
At this point you can start using openai CLI:
openai
Finally once finished, you can stop the running container:
./dev-tools.sh stop