亮色模式
List fine-tuning jobs
GET
https://api.openai.com/v1/fine_tuning/jobsList your organization's fine-tuning jobs
Request
Query 参数
limit
string
必需
Number of fine-tuning jobs to retrieve.
示例值:
2
Header 参数
Authorization
string
必需
示例值:
Bearer $OPENAI_API_KEY
Request samples
返回响应
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
数据结构
object
string
必需
data
array [object {7}]
必需
object
string
可选
id
string
可选
created_at
integer
可选
level
string
可选
message
string
可选
data
null
可选
type
string
可选
has_more
boolean
必需
示例
{
"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
}
最后修改时间: 10 天前