[model] support qwen3.6 models (#10415)

Co-authored-by: frozenleaves <frozen@Mac.local>
This commit is contained in:
浮梦
2026-04-22 19:44:01 +08:00
committed by GitHub
parent 28a6ea1cdc
commit ecca167eb4
4 changed files with 53 additions and 4 deletions

View File

@@ -125,6 +125,10 @@ class DataArguments:
default=True,
metadata={"help": "Whether or not to enable thinking mode for reasoning models."},
)
preserve_thinking: bool = field(
default=False,
metadata={"help": "Whether or not to preserve thinking content in historical turns for reasoning models."},
)
tokenized_path: str | None = field(
default=None,
metadata={
@@ -186,3 +190,4 @@ class DataArguments:
def to_dict(self) -> dict[str, Any]:
return asdict(self)