Qubrid AI · Capability

Qubrid AI Fine-Tuning API — Fine-Tuning Jobs

Qubrid AI Fine-Tuning API — Fine-Tuning Jobs. 4 operations. Lead operation: List fine-tuning jobs. Self-contained Naftiko capability covering one Qubrid Ai business surface.

Run with Naftiko Qubrid AiFine-Tuning Jobs

What You Can Do

GET
Listfinetuningjobs — List fine-tuning jobs
/v1/fine-tuning/jobs
POST
Createfinetuningjob — Create a fine-tuning job
/v1/fine-tuning/jobs
GET
Getfinetuningjob — Retrieve a fine-tuning job
/v1/fine-tuning/jobs/{job-id}
POST
Cancelfinetuningjob — Cancel a fine-tuning job
/v1/fine-tuning/jobs/{job-id}/cancel

MCP Tools

list-fine-tuning-jobs

List fine-tuning jobs

read-only idempotent
create-fine-tuning-job

Create a fine-tuning job

retrieve-fine-tuning-job

Retrieve a fine-tuning job

read-only idempotent
cancel-fine-tuning-job

Cancel a fine-tuning job

Capability Spec

fine-tuning-fine-tuning-jobs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Qubrid AI Fine-Tuning API — Fine-Tuning Jobs
  description: 'Qubrid AI Fine-Tuning API — Fine-Tuning Jobs. 4 operations. Lead operation: List fine-tuning jobs. Self-contained
    Naftiko capability covering one Qubrid Ai business surface.'
  tags:
  - Qubrid Ai
  - Fine-Tuning Jobs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    QUBRID_AI_API_KEY: QUBRID_AI_API_KEY
capability:
  consumes:
  - type: http
    namespace: fine-tuning-fine-tuning-jobs
    baseUri: https://platform.qubrid.com/api/v1
    description: Qubrid AI Fine-Tuning API — Fine-Tuning Jobs business capability. Self-contained, no shared references.
    resources:
    - name: fine-tuning-jobs
      path: /fine-tuning/jobs
      operations:
      - name: listfinetuningjobs
        method: GET
        description: List fine-tuning jobs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createfinetuningjob
        method: POST
        description: Create a fine-tuning job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: fine-tuning-jobs-job_id
      path: /fine-tuning/jobs/{job_id}
      operations:
      - name: getfinetuningjob
        method: GET
        description: Retrieve a fine-tuning job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: fine-tuning-jobs-job_id-cancel
      path: /fine-tuning/jobs/{job_id}/cancel
      operations:
      - name: cancelfinetuningjob
        method: POST
        description: Cancel a fine-tuning job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.QUBRID_AI_API_KEY}}'
  exposes:
  - type: rest
    namespace: fine-tuning-fine-tuning-jobs-rest
    port: 8080
    description: REST adapter for Qubrid AI Fine-Tuning API — Fine-Tuning Jobs. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/fine-tuning/jobs
      name: fine-tuning-jobs
      description: REST surface for fine-tuning-jobs.
      operations:
      - method: GET
        name: listfinetuningjobs
        description: List fine-tuning jobs
        call: fine-tuning-fine-tuning-jobs.listfinetuningjobs
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createfinetuningjob
        description: Create a fine-tuning job
        call: fine-tuning-fine-tuning-jobs.createfinetuningjob
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/fine-tuning/jobs/{job-id}
      name: fine-tuning-jobs-job-id
      description: REST surface for fine-tuning-jobs-job_id.
      operations:
      - method: GET
        name: getfinetuningjob
        description: Retrieve a fine-tuning job
        call: fine-tuning-fine-tuning-jobs.getfinetuningjob
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/fine-tuning/jobs/{job-id}/cancel
      name: fine-tuning-jobs-job-id-cancel
      description: REST surface for fine-tuning-jobs-job_id-cancel.
      operations:
      - method: POST
        name: cancelfinetuningjob
        description: Cancel a fine-tuning job
        call: fine-tuning-fine-tuning-jobs.cancelfinetuningjob
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: fine-tuning-fine-tuning-jobs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Qubrid AI Fine-Tuning API — Fine-Tuning Jobs. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-fine-tuning-jobs
      description: List fine-tuning jobs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: fine-tuning-fine-tuning-jobs.listfinetuningjobs
      outputParameters:
      - type: object
        mapping: $.
    - name: create-fine-tuning-job
      description: Create a fine-tuning job
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: fine-tuning-fine-tuning-jobs.createfinetuningjob
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-fine-tuning-job
      description: Retrieve a fine-tuning job
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: fine-tuning-fine-tuning-jobs.getfinetuningjob
      outputParameters:
      - type: object
        mapping: $.
    - name: cancel-fine-tuning-job
      description: Cancel a fine-tuning job
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: fine-tuning-fine-tuning-jobs.cancelfinetuningjob
      outputParameters:
      - type: object
        mapping: $.