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 24383b9 commit 682f946Copy full SHA for 682f946
guardrails/classes/history/iteration.py
@@ -215,7 +215,9 @@ def create_msg_history_table(
215
self.raw_output or "", title="Raw LLM Output", style="on #F5F5DC"
216
),
217
Panel(
218
- pretty_repr(self.validation_response),
+ self.validation_response
219
+ if isinstance(self.validation_response, str)
220
+ else pretty_repr(self.validation_response),
221
title="Validated Output",
222
style="on #F0FFF0",
223
0 commit comments