(self)
| 71 | return self |
| 72 | |
| 73 | def model_dump_for_context(self) -> dict[str, Any]: |
| 74 | data = self.model_dump() |
| 75 | if self._no_save: |
| 76 | data["_no_save"] = True |
| 77 | return data |
| 78 | |
| 79 | |
| 80 | class TextPart(ContentPart): |
no outgoing calls
no test coverage detected