接口
DELETE/v1/gpu-nodes/:id
认证:需要 Bearer API 密钥。
路径参数
string
required
GPU 节点标识符,例如 gn_a1b2c3d4。
响应
integer
响应码(成功为 0)。
object
required
删除确认。
string
成功时为空。
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
从咏唱引擎 PIN 移除一个 GPU 节点,并级联删除其智能体与训练任务。
/v1/gpu-nodes/:id
认证:需要 Bearer API 密钥。
curl -s -X DELETE http://<pin-host>:8001/v1/gpu-nodes/gn_a1b2c3d4 \
-H "Authorization: Bearer $ARIA_PIN_KEY"
{
"code": 0,
"data": {
"node_id": "gn_a1b2c3d4",
"deleted": true
},
"message": ""
}
Was this page helpful?