Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions guardrails/guard.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,8 @@ def __init__(
)
if not _loaded:
self._save()
else:
self.configure()

@field_validator("output_schema")
@classmethod
Expand Down
2 changes: 1 addition & 1 deletion guardrails/run/async_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ async def async_call(
return llm_response

# TODO: Refactor this to use inheritance and overrides
@async_trace(name="/validation", origin="AsyncRunner.async_validate")
# @async_trace(name="/validation", origin="AsyncRunner.async_validate")
async def async_validate(
self,
iteration: Iteration,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "guardrails-ai"
version = "0.5.13"
version = "0.5.14"
description = "Adding guardrails to large language models."
authors = ["Guardrails AI <contact@guardrailsai.com>"]
license = "Apache License 2.0"
Expand Down
Loading