File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -165,6 +165,26 @@ top_p: float | None = None
165165
166166The nucleus sampling probability.
167167
168+ ### \_\_ hash\_\_
169+
170+ ``` python
171+ __hash__ () -> int
172+ ```
173+
174+ Create a hash based on the json representation of this object.
175+
176+ <Accordion title = " Source code in rigging/generator/base.py" icon = " code" >
177+ ``` python
178+ def __hash__ (self ) -> int :
179+ """
180+ Create a hash based on the json representation of this object.
181+ """
182+ return hash (self .model_dump_json())
183+ ```
184+
185+
186+ </Accordion >
187+
168188### clone
169189
170190``` python
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " rigging"
3- version = " 3.1.0 "
3+ version = " 3.1.1 "
44description = " LLM Interaction Framework"
55authors = [" Nick Landers <monoxgas@gmail.com>" ]
66license = " MIT"
You can’t perform that action at this time.
0 commit comments