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.
from wauldo import WauldoError, ServerError, ValidationError try: result = client.guard(text="test", source_context="test") except ServerError as e: print(f"Server error [{e.code}]: {e}") except ValidationError as e: print(f"Invalid input: {e}") except WauldoError as e: print(f"Error: {e}")
The SDK retries transient errors (429, 5xx) with exponential backoff.