From 630522cd4bceed8de84ece730fea2ac28174d089 Mon Sep 17 00:00:00 2001 From: connermanuel Date: Thu, 6 Nov 2025 14:05:51 -0800 Subject: [PATCH 1/2] Add eval output to FilePurpose enum --- src/together/types/files.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/together/types/files.py b/src/together/types/files.py index 9f5ea52..2eccc54 100644 --- a/src/together/types/files.py +++ b/src/together/types/files.py @@ -15,6 +15,7 @@ class FilePurpose(str, Enum): FineTune = "fine-tune" BatchAPI = "batch-api" Eval = "eval" + EvalOutput = "eval-output" class FileType(str, Enum): From d879f6448d11b80e5f09478258f118a418f94c5f Mon Sep 17 00:00:00 2001 From: connermanuel Date: Thu, 6 Nov 2025 14:07:18 -0800 Subject: [PATCH 2/2] version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fc9c08a..7acfa3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "together" -version = "1.5.30" +version = "1.5.31" authors = ["Together AI "] description = "Python client for Together's Cloud Platform!" readme = "README.md"