From fc5c2ffc31e1c24df78ee3c4fec5a63dadb0d9b1 Mon Sep 17 00:00:00 2001 From: Geoffrey Angus Date: Tue, 19 Mar 2024 14:26:09 -0700 Subject: [PATCH] fix: change PROMPT constant to reduce collision --- ludwig/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ludwig/constants.py b/ludwig/constants.py index b963f0d6884..0297f87bde6 100644 --- a/ludwig/constants.py +++ b/ludwig/constants.py @@ -286,7 +286,7 @@ TARGET_MODULES = "target_modules" GENERATION = "generation" -PROMPT = "prompt" +PROMPT = "__prompt__" ADAPTER = "adapter" QUANTIZATION = "quantization" MIN_QUANTIZATION_BITS_FOR_MERGE_AND_UNLOAD = 8