NAME
OpenAPI::Client::OpenAI::Path::fine_tuning-jobs-fine_tuning_job_id-events - Documentation for the /fine_tuning/jobs/{fine_tuning_job_id}/events path.
OPERATIONS
GET /fine_tuning/jobs/{fine_tuning_job_id}/events
listFineTuningEvents
$client->list_fine_tuning_events({
body => { ... },
});
Get status updates for a fine-tuning job.
Path/query parameters
fine_tuning_job_id(in path, required, string) - The ID of the fine-tuning job to get events for.after(in query, optional, string) - Identifier for the last event from the previous pagination request.limit(in query, optional, integer) - Number of events to retrieve.Default: 20
Responses
200 - OK
Content-Type: application/json
Example:
{
"data" : [
"{\n \"object\": \"fine_tuning.job.event\",\n \"id\": \"ftevent-abc123\"\n \"created_at\": 1677610602,\n \"level\": \"info\",\n \"message\": \"Created fine-tuning job\",\n \"data\": {},\n \"type\": \"message\"\n}\n"
],
"has_more" : false,
"object" : "list"
}
SCHEMAS
FineTuningJobEvent
Properties:
created_at(integer, required) - The Unix timestamp (in seconds) for when the fine-tuning job was created.data(object) - The data associated with the event.id(string, required) - The object identifier.level(string, required) - The log level of the event.Allowed values: info, warn, error
message(string, required) - The message of the event.object(string, required) - The object type, which is always "fine_tuning.job.event".Allowed values: fine_tuning.job.event
type(string) - The type of event.Allowed values: message, metrics
ListFineTuningJobEventsResponse
Properties:
data(array of FineTuningJobEvent, required)has_more(boolean, required)object(string, required)Allowed values: list
SEE ALSO
COPYRIGHT AND LICENSE
Copyright (C) 2023-2026 by Nelson Ferraz
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.0 or, at your option, any later version of Perl 5 you may have available.