Skip to content

Commit

Permalink
add empty string finish reason as a valid type (#239)
Browse files Browse the repository at this point in the history
* add empty string finish reason as a valid type

* bump version to 1.3.12
  • Loading branch information
orangetin authored Jan 23, 2025
1 parent 5cd3742 commit 83bd56f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "together"
version = "1.3.11"
version = "1.3.12"
authors = [
"Together AI <[email protected]>"
]
Expand Down
1 change: 1 addition & 0 deletions src/together/types/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ class FinishReason(str, Enum):
EOS = "eos"
ToolCalls = "tool_calls"
Error = "error"
Null = ""


class UsageData(BaseModel):
Expand Down

0 comments on commit 83bd56f

Please sign in to comment.