Extract and join any snippets of code or formatted data in the response
(self)
| 302 | |
| 303 | @property |
| 304 | def code(self) -> str: |
| 305 | """ |
| 306 | Extract and join any snippets of code or formatted data in the response |
| 307 | """ |
| 308 | return "\n\n".join(self.code_blocks) |
| 309 | |
| 310 | @property |
| 311 | def suggestions(self) -> list[str]: |
nothing calls this directly
no outgoing calls
no test coverage detected