Sync contents

This commit is contained in:
Daniel Xu 2026-01-25 05:52:42 +00:00
parent ad03d44978
commit ca40e08bb4
12 changed files with 358 additions and 27 deletions

View file

@ -26,7 +26,7 @@ Weight decay for the optimizer. Uses decoupled weight decay.
#### `grad_clip_norm`
Gradient clip norm for the optimizer. 0.0 means no clipping.
Maximum global gradient norm. If the global gradient norm is greater than this value, it will be clipped to this value. 0.0 means no clipping.
## `SupportedModel` Objects
@ -159,6 +159,10 @@ The size of the checkpoint in bytes
Whether the checkpoint is publicly accessible
#### `expires_at`
When this checkpoint expires (None = never expires)
## `ParsedCheckpointTinkerPath` Objects
```python
@ -725,6 +729,10 @@ class SaveWeightsRequest(StrictBase)
A file/directory name for the weights
#### `ttl_seconds`
TTL in seconds for this checkpoint (None = never expires)
## `LoraConfig` Objects
```python
@ -834,6 +842,10 @@ class SaveWeightsForSamplerRequest(StrictBase)
A file/directory name for the weights
#### `ttl_seconds`
TTL in seconds for this checkpoint (None = never expires)
## `SamplingParams` Objects
```python