Skip to content

Commit 4075837

Browse files
authored
Fix from_checkpoint fields (#265)
1 parent a4fd112 commit 4075837

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.4.3"
15+
version = "1.4.4"
1616
authors = [
1717
"Together AI <[email protected]>"
1818
]

src/together/types/finetune.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ class FinetuneRequest(BaseModel):
208208
default_factory=TrainingMethodSFT
209209
)
210210
# from step
211-
from_checkpoint: str
211+
from_checkpoint: str | None = None
212212

213213

214214
class FinetuneResponse(BaseModel):

0 commit comments

Comments
 (0)