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.
The issue is same in described in #400 The safe_get function is applied to validate_dependents, but not applied to async validate_dependents.
safe_get
validate_dependents
async validate_dependents
Change line 250 in guardrails/validator_service.py from
guardrails/validator_service.py
child_value = value[child_setup.key]
to
child_value = safe_get(value, child_setup.key)