From a26d99d31ce19f7865f638a7c34be98d78a46d66 Mon Sep 17 00:00:00 2001 From: jli Date: Thu, 5 Mar 2026 15:33:47 -0800 Subject: [PATCH 1/5] update API doc --- openapi.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 13d9f86..d9c10c3 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -2589,6 +2589,9 @@ paths: format: float default: 0.0 description: Weight decay. Regularization parameter for the optimizer. + random_seed: + type: integer + description: Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init). If not provided, a default seed `42` is used. suffix: type: string description: Suffix that will be added to your fine-tuned model name @@ -10809,6 +10812,10 @@ components: type: number format: float description: Weight decay value used + random_seed: + type: integer + nullable: true + description: Random seed used for reproducible training, if set wandb_project_name: type: string description: Weights & Biases project name From 65d92f258577371d00daff491fc820ba1e505c2e Mon Sep 17 00:00:00 2001 From: jli Date: Mon, 9 Mar 2026 16:00:13 -0700 Subject: [PATCH 2/5] update api doc --- openapi.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index d9c10c3..9ae90b1 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -2590,8 +2590,8 @@ paths: default: 0.0 description: Weight decay. Regularization parameter for the optimizer. random_seed: - type: integer - description: Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init). If not provided, a default seed `42` is used. + type: string + description: Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init). If not provided, a default seed is used. Pass a numeric string (e.g. "42"). suffix: type: string description: Suffix that will be added to your fine-tuned model name @@ -10813,9 +10813,9 @@ components: format: float description: Weight decay value used random_seed: - type: integer + type: string nullable: true - description: Random seed used for reproducible training, if set + description: Random seed used for reproducible training (e.g. "42"), if set wandb_project_name: type: string description: Weights & Biases project name From 151af4a79effe1301e28990b177220d3c3207bfe Mon Sep 17 00:00:00 2001 From: jli Date: Tue, 17 Mar 2026 09:11:21 -0700 Subject: [PATCH 3/5] update --- openapi.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index 9ae90b1..6d09de4 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -2590,8 +2590,8 @@ paths: default: 0.0 description: Weight decay. Regularization parameter for the optimizer. random_seed: - type: string - description: Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init). If not provided, a default seed is used. Pass a numeric string (e.g. "42"). + type: integer + description: Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init). If not provided, the server uses its default seed (e.g. 42). suffix: type: string description: Suffix that will be added to your fine-tuned model name @@ -10813,9 +10813,9 @@ components: format: float description: Weight decay value used random_seed: - type: string + type: integer nullable: true - description: Random seed used for reproducible training (e.g. "42"), if set + description: Random seed used for reproducible training, if set wandb_project_name: type: string description: Weights & Biases project name From d59f2d2f4654625e8ca429f1cfa319d142efe92c Mon Sep 17 00:00:00 2001 From: jli Date: Tue, 17 Mar 2026 12:45:06 -0700 Subject: [PATCH 4/5] update default to none --- openapi.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/openapi.yaml b/openapi.yaml index 6d09de4..c2fe953 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -2591,6 +2591,7 @@ paths: description: Weight decay. Regularization parameter for the optimizer. random_seed: type: integer + default: none description: Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init). If not provided, the server uses its default seed (e.g. 42). suffix: type: string From c151d751a75e40d699dea57ae20e87d3672711fd Mon Sep 17 00:00:00 2001 From: jli Date: Tue, 17 Mar 2026 13:12:20 -0700 Subject: [PATCH 5/5] update desp --- openapi.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/openapi.yaml b/openapi.yaml index c2fe953..758b291 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -2591,8 +2591,10 @@ paths: description: Weight decay. Regularization parameter for the optimizer. random_seed: type: integer - default: none - description: Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init). If not provided, the server uses its default seed (e.g. 42). + nullable: true + description: > + Random seed for reproducible training. When set, the same seed produces the same run (e.g. data shuffle, init). + If omitted or null, the server applies its default seed (e.g. 42). suffix: type: string description: Suffix that will be added to your fine-tuned model name @@ -10816,7 +10818,8 @@ components: random_seed: type: integer nullable: true - description: Random seed used for reproducible training, if set + description: > + Random seed used for training. Integer when set; null if not stored (e.g. legacy jobs) or no explicit seed was recorded. wandb_project_name: type: string description: Weights & Biases project name