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

# Update training status for a fine-tune job

> Update the training status of a fine-tune job.



## OpenAPI

````yaml https://dev.hub.oxen.ai/api/_spec/oxen_hub_api.json put /api/repos/{namespace}/{repo_name}/fine_tunes/{id}/train_status/{new_status}
openapi: 3.0.0
info:
  title: oxen
  version: 0.224.2
servers:
  - url: https://dev.hub.oxen.ai
    variables: {}
security: []
tags: []
paths:
  /api/repos/{namespace}/{repo_name}/fine_tunes/{id}/train_status/{new_status}:
    put:
      tags:
        - fine_tunes
      summary: Update training status for a fine-tune job
      description: Update the training status of a fine-tune job.
      operationId: OxenApiWeb.Controllers.FineTuneController.update_train_status
      parameters:
        - description: Fine-tune ID
          example: ft_123
          in: path
          name: id
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              properties:
                new_status:
                  description: New training status
                  type: string
              required:
                - new_status
              type: object
        description: Training status update
        required: false
      responses:
        '200':
          content:
            application/json:
              schema:
                description: Updated training status
                type: object
          description: Training status updated
        '404':
          content:
            application/json:
              schema:
                type: object
          description: Fine-tune not found
      callbacks: {}
      security:
        - authorization: []
components:
  securitySchemes:
    authorization:
      scheme: bearer
      type: http

````