Skip to content

Commit b9071dc

Browse files
authored
Fix event system (#338)
1 parent b8a91fc commit b9071dc

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-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.18"
15+
version = "1.5.19"
1616
authors = ["Together AI <[email protected]>"]
1717
description = "Python client for Together's Cloud Platform!"
1818
readme = "README.md"

src/together/types/finetune.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ class FinetuneEventType(str, Enum):
6767
MODEL_COMPRESSION_COMPLETE = "MODEL_COMPRESSION_COMPLETE"
6868
MODEL_UPLOADING = "MODEL_UPLOADING"
6969
MODEL_UPLOAD_COMPLETE = "MODEL_UPLOAD_COMPLETE"
70+
MODEL_UPLOADING_TO_HF = "MODEL_UPLOADING_TO_HF"
71+
MODEL_UPLOAD_TO_HF_COMPLETE = "MODEL_UPLOAD_TO_HF_COMPLETE"
7072
JOB_COMPLETE = "JOB_COMPLETE"
7173
JOB_ERROR = "JOB_ERROR"
7274
JOB_USER_ERROR = "JOB_USER_ERROR"

0 commit comments

Comments
 (0)