微調整作業をリストアップします。
GET
https://api.openai.com/v1/fine_tuning/jobs
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Query Params
after
integer
optional
limit
integer
optional
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.openai.com/v1/fine_tuning/jobs?after&limit'
Responses
🟢200成功
application/json
Body
object
string
required
data
array [object {7}]
required
object
string
optional
id
string
optional
created_at
integer
optional
level
string
optional
message
string
optional
data
null
optional
type
string
optional
has_more
boolean
required
Example
{
"object": "list",
"data": [
{
"object": "fine_tuning.job.event",
"id": "ft-event-TjX0lMfOniCZX64t9PUQT5hn",
"created_at": 1689813489,
"level": "warn",
"message": "Fine tuning process stopping due to job cancellation",
"data": null,
"type": "message"
},
{ ... },
{ ... }
], "has_more": true
}
Modified at 2024-12-17 03:32:10