From 19fa48cffe23e3a591a4eb069b44caa48c71bf34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?El=C3=ADas=20Snorrason?= Date: Thu, 20 Mar 2025 23:36:47 +0000 Subject: [PATCH 1/2] clarify response_validation module is alternative to Validator --- src/cleanlab_codex/response_validation.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/cleanlab_codex/response_validation.py b/src/cleanlab_codex/response_validation.py index e3bf78a..e357b5d 100644 --- a/src/cleanlab_codex/response_validation.py +++ b/src/cleanlab_codex/response_validation.py @@ -1,5 +1,7 @@ """ -Validation functions for evaluating LLM responses and determining if they should be replaced with Codex-generated alternatives. +Alternative validation functions for evaluating LLM responses and determining if they should be replaced with Codex-generated alternatives. + +For Codex-as-a-Backup integrations, please use the Validator class instead of these standalone functions. """ from __future__ import annotations From 39b6be50b61f6181dd2d9b9e4d48c1d1f68dbb7b Mon Sep 17 00:00:00 2001 From: Jonas Mueller <1390638+jwmueller@users.noreply.github.com> Date: Thu, 27 Mar 2025 00:13:11 -0400 Subject: [PATCH 2/2] deprecated --- src/cleanlab_codex/response_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cleanlab_codex/response_validation.py b/src/cleanlab_codex/response_validation.py index e357b5d..6be4ee7 100644 --- a/src/cleanlab_codex/response_validation.py +++ b/src/cleanlab_codex/response_validation.py @@ -1,5 +1,5 @@ """ -Alternative validation functions for evaluating LLM responses and determining if they should be replaced with Codex-generated alternatives. +Deprecated validation functions for evaluating LLM responses and determining if they should be replaced with Codex-generated alternatives. For Codex-as-a-Backup integrations, please use the Validator class instead of these standalone functions. """