列出微调事件
开发环境
开发环境
POST
list_finetune_event
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'http://dev-cn.your-api-server.comlist_finetune_event?$GroupId' \
--header 'authorization: Bear $API_KEY' \
--header 'content-type: application/json' \
--data-raw '{"fine_tuning_job_id": "2378728343", "after":"0", limit: 10}'
响应示例响应示例
{
"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"
}
}
请求参数
Query 参数
$GroupId
string
必需
Header 参数
authorization
string
必需
示例值:
Bear $API_KEY
content-type
string
必需
示例值:
application/json
Body 参数application/json
返回响应
修改于 2024-01-04 06:06:41