From 1e21785617078d6f1cb7ca7e092ae368d2115d33 Mon Sep 17 00:00:00 2001 From: newokaerinasai Date: Wed, 17 Dec 2025 15:40:13 +0000 Subject: [PATCH 1/2] Update finetune.py --- src/together/types/finetune.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/together/types/finetune.py b/src/together/types/finetune.py index 37250ae..0eb7402 100644 --- a/src/together/types/finetune.py +++ b/src/together/types/finetune.py @@ -337,8 +337,8 @@ class FinetunePriceEstimationRequest(BaseModel): model: str n_epochs: int n_evals: int - training_type: TrainingType - training_method: TrainingMethod + training_type: LoRATrainingType | FullTrainingType + training_method: TrainingMethodSFT | TrainingMethodDPO class FinetunePriceEstimationResponse(BaseModel): From 6092995ddbee4498673e4db5f41e5f86d55d91f5 Mon Sep 17 00:00:00 2001 From: newokaerinasai Date: Wed, 17 Dec 2025 15:47:47 +0000 Subject: [PATCH 2/2] version update --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 0acd08e..f06c6d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "together" -version = "1.5.32" +version = "1.5.33" authors = ["Together AI "] description = "Python client for Together's Cloud Platform! Note: SDK 2.0 is now available at https://github.com/togethercomputer/together-py" readme = "README.md"