From 2ba055294b4e4e47a1b67fe33f06c42a42bff63c Mon Sep 17 00:00:00 2001 From: Together-Jonathan Date: Thu, 10 Jul 2025 13:32:07 -0400 Subject: [PATCH 1/2] Adding transcribe to models.py to resolve error with getmodels call --- src/together/types/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/together/types/models.py b/src/together/types/models.py index 9d08a4c1..fce0c482 100644 --- a/src/together/types/models.py +++ b/src/together/types/models.py @@ -16,6 +16,7 @@ class ModelType(str, Enum): MODERATION = "moderation" RERANK = "rerank" AUDIO = "audio" + TRANSCRIBE = "transcribe" class PricingObject(BaseModel): From 49a329585dee9380f696ace1292078330875046b Mon Sep 17 00:00:00 2001 From: Together-Jonathan Date: Thu, 10 Jul 2025 14:15:34 -0400 Subject: [PATCH 2/2] updating vserion in pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index aee60959..35bc164a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "together" -version = "1.5.19" +version = "1.5.20" authors = ["Together AI "] description = "Python client for Together's Cloud Platform!" readme = "README.md"