diff --git a/pyproject.toml b/pyproject.toml index afd1338..aee6095 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "together" -version = "1.5.18" +version = "1.5.19" authors = ["Together AI "] description = "Python client for Together's Cloud Platform!" readme = "README.md" diff --git a/src/together/types/finetune.py b/src/together/types/finetune.py index ee160ee..72a35e8 100644 --- a/src/together/types/finetune.py +++ b/src/together/types/finetune.py @@ -67,6 +67,8 @@ class FinetuneEventType(str, Enum): MODEL_COMPRESSION_COMPLETE = "MODEL_COMPRESSION_COMPLETE" MODEL_UPLOADING = "MODEL_UPLOADING" MODEL_UPLOAD_COMPLETE = "MODEL_UPLOAD_COMPLETE" + MODEL_UPLOADING_TO_HF = "MODEL_UPLOADING_TO_HF" + MODEL_UPLOAD_TO_HF_COMPLETE = "MODEL_UPLOAD_TO_HF_COMPLETE" JOB_COMPLETE = "JOB_COMPLETE" JOB_ERROR = "JOB_ERROR" JOB_USER_ERROR = "JOB_USER_ERROR"