Return a pretty-printed JSON string of the full result.
(self, result: PluginEvalResult)
| 25 | # ------------------------------------------------------------------ |
| 26 | |
| 27 | def to_json(self, result: PluginEvalResult) -> str: |
| 28 | """Return a pretty-printed JSON string of the full result.""" |
| 29 | return result.model_dump_json(indent=2) |
| 30 | |
| 31 | # ------------------------------------------------------------------ |
| 32 | # Markdown |
no outgoing calls