Fine Tuning Model ID Missing or Being Missed?

I’ve uploaded data for a fine-tuning job, it uploaded and returned:

{ [226 bytes data]
100 19787  100   226  100 19561    246  21301 --:--:-- --:--:-- --:--:-- 21554
*Uploaded file. Received TRAINING_FILE_ID:
Full upload response: {
  "object": "file",
  "id": "*****************",
  "purpose": "fine-tune",
  "filename": "transformed_data.jsonl",
  "bytes": 19242,
  "created_at": ******,
  "status": "uploaded",
  "status_details": null
}
Fine-tuning job initiated.

I am not sure where to get my fine-tuned model ID to proceed with further testing?

I checked the documentation and API - forgive me if I missed it.

When you submit a fine-tine job it goes into a queue to be processed. You can use the API to list your fine-tunes and look for status: succeeded to know it is complete. Then you use the value in fine_tuned_model as your model for future requests.

1 Like