We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1655075 commit 9764c33Copy full SHA for 9764c33
src/tinker_public/types/save_weights_for_sampler_response.py
@@ -5,11 +5,11 @@
5
6
from .._models import BaseModel
7
8
-__all__ = ["SaveWeightsForSamplerResponse"]
+__all__: list[str] = ["SaveWeightsForSamplerResponse"]
9
10
11
class SaveWeightsForSamplerResponse(BaseModel):
12
path: str
13
"""A tinker URI for model weights for sampling at a specific step"""
14
15
- type: Optional[Literal["save_weights_for_sampler"]] = None
+ type: Optional[Literal["save_weights_for_sampler"]] = None
0 commit comments