Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,7 @@ paths:
type: boolean
default: auto
description: Whether to mask the user messages in conversational data or prompts in instruction data.
deprecated: true
training_method:
type: object
oneOf:
Expand Down Expand Up @@ -2865,15 +2866,25 @@ components:
- type
- lora_r
- lora_alpha

TrainingMethodSFT:
type: object
properties:
method:
type: string
enum: ["sft"]
train_on_inputs:
oneOf:
- type: boolean
- type: string
enum:
- auto
type: boolean
default: auto
description: Whether to mask the user messages in conversational data or prompts in instruction data.
required:
- method

- train_on_inputs
TrainingMethodDPO:
type: object
properties:
Expand Down