From bbaf7e3cd9e2a8b80cdbd82b5be9b52f385f4de4 Mon Sep 17 00:00:00 2001 From: Egor Timofeev Date: Mon, 16 Jun 2025 17:49:41 +0200 Subject: [PATCH 1/2] Fix simpo default --- src/together/cli/api/finetune.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/together/cli/api/finetune.py b/src/together/cli/api/finetune.py index f95235cf..b77df655 100644 --- a/src/together/cli/api/finetune.py +++ b/src/together/cli/api/finetune.py @@ -163,7 +163,7 @@ def fine_tuning(ctx: click.Context) -> None: @click.option( "--simpo-gamma", type=float, - default=0.1, + default=0.0, help="SimPO gamma parameter (only used when '--training-method' is 'dpo')", ) @click.option( From 9f81b4e8e3c526e94dac271aa9191020db9fcbe0 Mon Sep 17 00:00:00 2001 From: Egor Timofeev Date: Mon, 16 Jun 2025 17:50:42 +0200 Subject: [PATCH 2/2] Bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0f22984d..b8bdfd62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "together" -version = "1.5.14" +version = "1.5.15" authors = ["Together AI "] description = "Python client for Together's Cloud Platform!" readme = "README.md"