Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check_code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: pre-commit/[email protected]
2 changes: 1 addition & 1 deletion .github/workflows/upload-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
python-version: ["3.10"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
Expand Down
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.4.1"
version = "1.4.2"
authors = [
"Together AI <[email protected]>"
]
Expand Down
2 changes: 1 addition & 1 deletion src/together/types/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class BaseEndpoint(TogetherJSONModel):
model: str = Field(description="The model deployed on this endpoint")
type: str = Field(description="The type of endpoint")
owner: str = Field(description="The owner of this endpoint")
state: Literal["PENDING", "STARTING", "STARTED", "STOPPING", "STOPPED", "ERROR"] = (
state: Literal["PENDING", "STARTING", "STARTED", "STOPPING", "STOPPED", "FAILED", "ERROR"] = (
Field(description="Current state of the endpoint")
)
created_at: datetime = Field(description="Timestamp when the endpoint was created")
Expand Down
Loading