Skip to content

List of Powershell Commands

racarr202 edited this page Mar 10, 2023 · 1 revision

Remember that Shift + F10 will can be used to open the PowerShell window

Shows the help for the openai API

openai -h

Shows a list of all fine-tuned models associated with your API Key

openai api fine_tunes.list

Gives live updates about the Fine Tuning Job

openai api fine_tunes.follow -i <FINE_TUNE_JOB_ID>

Gets the full details of a Fine Tuning job

openai api fine_tunes.get -i <FINE_TUNE_JOB_ID>

Starts the creation of a fine-tuned model, defaults to curie unless given -m is given as a parameter

openai api fine_tunes.create -t <JSONL-FILE-PATH> -m <MODEL>

Turns the .py into an .exe

pyinstaller --onefile <SCRIPT NAME.py>

Clone this wiki locally