> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mountsea.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 定制模型创建

> 提交训练请求以创建定制模型

<Info>
  这是 Custom Model 工作流程的**第三步**。您必须先完成[第二步：Upload](/zh/api-reference/suno/customModelUpload)（至少 6 个文件）。详情请参阅[完整工作流程指南](/zh/api-reference/suno/customModel)。
</Info>

<Warning>
  此步骤消耗 **100 积分**，训练大约需要 **2-3 分钟**。返回的 `taskId` 与您的 `sessionId` 相同。
</Warning>

成功后，任务结果包含定制模型详情。模型 ID（格式：`chirp-custom:<uuid>`）可直接用于 [Generate](/zh/api-reference/suno/generate) 端点的 `model` 字段。

<Tip>
  如果 create 因参数错误而失败，您可以使用相同的 `sessionId` 重试 — 系统会自动重置会话状态。
</Tip>


## OpenAPI

````yaml POST /suno/v2/customModel/create
openapi: 3.0.0
info:
  title: Suno AI
  description: API documentation for Suno AI
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.mountsea.ai
    description: API Gateway
security: []
tags:
  - name: suno
    description: ''
paths:
  /suno/v2/customModel/create:
    post:
      tags:
        - suno
      summary: create custom model
      description: >-
        Submit the session for model creation. Provide clipIds (>= 6) from the
        upload step. Costs 100 credits. Takes 2-3 min. Returns taskId (=
        sessionId) to poll via /status.
      operationId: ApiPublicController_customModelCreate
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCustomModelDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TaskIdDto'
      security:
        - bearerAuth: []
components:
  schemas:
    CreateCustomModelDto:
      type: object
      properties:
        sessionId:
          type: string
          format: uuid
          description: prepare 返回的会话 sessionId
        clipIds:
          minItems: 6
          description: 用于训练定制模型的 clip IDs（至少 6 个，来自 upload 步骤返回的 id）
          example:
            - cd0440d8-ae0f-4c0b-af4f-149eaa0c38c0
          type: array
          items:
            type: string
        name:
          type: string
          description: 定制模型名称
          example: v6Pro
      required:
        - sessionId
        - clipIds
        - name
    TaskIdDto:
      type: object
      properties:
        taskId:
          type: string
          description: task id. Use this id to query task status.
          example: 15c257ff-43f7-4678-bd41-202ad6b8488b
      required:
        - taskId
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````