列出微调事件
POST
list_finetune_event获取微调任务的状态更新。
请求参数
Query 参数
$GroupId
string
必需
Header 参数
authorization
string
必需
示例值:
Bear $API_KEY
content-type
string
必需
示例值:
application/json
Body 参数application/json
fine_tuning_job_id
string
任务id
after
string
可选
从第几个ID 之后开始列举
limit
integer
返回任务的数量限制
示例
{"fine_tuning_job_id": "2378728343", "after":"0", limit: 10}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
event_list
array [object {5}]
必需
id
string
训练任务ID
created_at
integer
创建时间
level
string
级别
message
string
必需
训练任务ID的训练日志信息
object
string
对象
has_more
boolean
必需
base_resp
object
必需
status_code
integer
必需
status_msg
string
必需
示例
{
"event_list": [
{
"id": "1702558479753114",
"created_at": 1702558487522,
"level": "info",
"message": "{\"job_id\":\"1702558479753114\",\"status\":\"created\",\"last_work_time\":1702558487512,\"model_id\":\"\"}",
"object": "finetune.event"
},
{
"id": "1702558479753114",
"created_at": 1702558508930,
"level": "info",
"message": "{\"job_id\":\"1702558479753114\",\"status\":\"pending\",\"last_work_time\":1702558508926,\"model_id\":\"\"}",
"object": "finetune.event"
},
{
"id": "1702558479753114",
"created_at": 1702558640176,
"level": "info",
"message": "{\"job_id\":\"1702558479753114\",\"status\":\"running\",\"last_work_time\":1702558640171,\"model_id\":\"\"}",
"object": "finetune.event"
}
],
"has_more": false,
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}
最后修改时间: 1 年前