From 010e24382c22fd3edb4f887b2c2d7639baffcc1b Mon Sep 17 00:00:00 2001 From: simister Date: Tue, 17 Dec 2024 12:14:45 -0500 Subject: [PATCH] Fix typo in code example. (#1588) --- examples/How_to_use_guardrails.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/How_to_use_guardrails.ipynb b/examples/How_to_use_guardrails.ipynb index dba07f0d62..23ec5e3682 100644 --- a/examples/How_to_use_guardrails.ipynb +++ b/examples/How_to_use_guardrails.ipynb @@ -217,7 +217,7 @@ } ], "source": [ - "# Call the main function with the good request - this should get blocked\n", + "# Call the main function with the bad request - this should get blocked\n", "response = await execute_chat_with_guardrail(bad_request)\n", "print(response)" ]