I fine-tuned the davinci model with this command:
openai api fine_tunes.create -t ./sql_finetune.jsonl -m davinci
After a while, I was able to execute
openai api fine_tunes.get -i ft-Q6dZms23dQdlkBvBIcM7983l
and see this
result_files": [
{
“bytes”: 1370,
“created_at”: 1671735102,
“filename”: “compiled_results.csv”,
“id”: “file-XECcknYqLFN9crSZH0UCfPsS”,
“object”: “file”,
“purpose”: “fine-tune-results”,
“status”: “processed”,
“status_details”: null
}
],
“status”: “succeeded”,
“training_files”: [
{
“bytes”: 1023,
“created_at”: 1671726002,
“filename”: “./sql_finetune.jsonl”,
“id”: “file-skxxIxIHtRwBo7YGO2DY7Sa3”,
“object”: “file”,
“purpose”: “fine-tune”,
“status”: “processed”,
“status_details”: null
}
],
“updated_at”: 1671735103,
“validation_files”:
…so it appears that the model was successfully created, yet when I try to use it with the command
openai api completions.create -m ft-Q6dZms23dQdlkBvBIcM7983l -p “Get count of the Workers whose SALARY is more than 5000.”
I get this error message:
Error: That model does not exist (HTTP status code: 404)
Any idea why I can’t find the model? Thanks in advance!!