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 b2bea7e commit e736500Copy full SHA for e736500
ads/llm/guardrails/base.py
@@ -78,7 +78,7 @@ def __repr__(self) -> str:
78
steps.append(f"{run_info.name} - {run_info.metrics}")
79
if run_info:
80
steps.append(str(run_info.output))
81
- return "\n".join(steps)
+ return "\n".join(steps) + "\n\n" + str(self)
82
83
84
class BlockedByGuardrail(ToolException):
0 commit comments