Skip to content

Commit b294927

Browse files
authored
Video was missing from modeltype enum-resulting in pydantic response from get models endpoint (#383)
1 parent 0a1524f commit b294927

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api"
1212

1313
[tool.poetry]
1414
name = "together"
15-
version = "1.5.27"
15+
version = "1.5.28"
1616
authors = ["Together AI <[email protected]>"]
1717
description = "Python client for Together's Cloud Platform!"
1818
readme = "README.md"

src/together/types/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ class ModelType(str, Enum):
1717
RERANK = "rerank"
1818
AUDIO = "audio"
1919
TRANSCRIBE = "transcribe"
20+
VIDEO = "video"
2021

2122

2223
class PricingObject(BaseModel):

0 commit comments

Comments
 (0)