Mistral AI
    Mistral AI
    • Create Chat Completions
      POST
    • Create FIM Completions
      POST
    • Create Embeddings
      POST
    • List Available Models
      GET
    • Delete Model
      DELETE
    • Upload File
      POST
    • List Files
      GET
    • Retrieve File
      GET
    • Delete File
      DELETE
    • List Fine Tuning Jobs
      GET
    • Create Fine Tuning Job
      POST
    • Get Fine Tuning Job
      GET
    • Cancel Fine Tuning Job
      POST

      List Fine Tuning Jobs

      Develop Env
      https://dev.your-api-server.com
      Develop Env
      https://dev.your-api-server.com
      GET
      /fine_tuning/jobs
      Get a list of fine tuning jobs for your organization and user.
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location --request GET 'https://dev.your-api-server.com/fine_tuning/jobs'
      Response Response Example
      {
          "data": [],
          "object": "list"
      }

      Request

      Query Params
      page
      integer 
      Page
      optional
      The page number of the results to be returned.
      Default:
      0
      page_size
      integer 
      Page Size
      optional
      The number of items to return per page.
      Default:
      100
      model
      string 
      Model
      optional
      The model name used for fine-tuning to filter on. When set, the other results are not displayed.
      status
      enum<string> 
      Status
      optional
      The current job state to filter on. When set, the other results are not displayed.
      Allowed values:
      QUEUEDSTARTEDRUNNINGFAILEDSUCCESSCANCELLEDCANCELLATION_REQUESTED
      created_after
      string <datetime> | null 
      optional
      The date/time to filter on. When set, the results for previous creation times are not displayed.
      created_by_me
      string 
      optional
      wandb_project
      string  | null 
      optional
      The Weights and Biases project to filter on. When set, the other results are not displayed.
      wandb_name
      string  | null 
      optional
      The Weight and Biases run name to filter on. When set, the other results are not displayed.
      suffix
      string  | null 
      optional
      The model suffix to filter on. When set, the other results are not displayed.

      Responses

      🟢200OK
      application/json
      Body
      data
      array[object (JobOut) {12}] 
      Data
      optional
      id
      string <uuid>
      Id
      required
      The ID of the job.
      hyperparameters
      object (TrainingParameters) 
      required
      The fine-tuning hyperparameter settings used in a fine-tune job.
      model
      enum<string> 
      required
      The name of the model to fine-tune.
      Allowed values:
      open-mistral-7bmistral-small-latest
      status
      enum<string> 
      Status
      required
      The current status of the fine-tuning job.
      Allowed values:
      QUEUEDSTARTEDRUNNINGFAILEDSUCCESSCANCELLEDCANCELLATION_REQUESTED
      job_type
      string 
      Job Type
      required
      The type of job (FT for fine-tuning).
      created_at
      integer 
      Created At
      required
      The UNIX timestamp (in seconds) for when the fine-tuning job was created.
      modified_at
      integer 
      Modified At
      required
      The UNIX timestamp (in seconds) for when the fine-tuning job was last modified.
      training_files
      array[string <uuid>]
      Training Files
      required
      A list containing the IDs of uploaded files that contain training data.
      validation_files
      array[string <uuid>]
      Validation Files
      optional
      A list containing the IDs of uploaded files that contain validation data.
      object
      Object
      optional
      Allowed value:
      job
      Default:
      job
      fine_tuned_model
      string 
      Fine Tuned Model
      optional
      The name of the fine-tuned model that is being created. The value will be null if the fine-tuning job is still running.
      integrations
      array[object (WandbIntegrationOut) {3}] 
      Integrations
      optional
      A list of integrations enabled for your fine-tuning job.
      object
      Object
      optional
      Allowed value:
      list
      Default:
      list
      Modified at 2024-07-29 08:30:19
      Previous
      Delete File
      Next
      Create Fine Tuning Job
      Built with