From 2d4c51aa167eb2840e6560dfd9959b72662ef09e Mon Sep 17 00:00:00 2001 From: Deshraj Yadav Date: Thu, 20 Jul 2023 00:12:27 -0700 Subject: [PATCH] Fix error message on missing replicate api token (#332) --- embedchain/apps/Llama2App.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedchain/apps/Llama2App.py b/embedchain/apps/Llama2App.py index 12e88a29..b1a13341 100644 --- a/embedchain/apps/Llama2App.py +++ b/embedchain/apps/Llama2App.py @@ -20,7 +20,7 @@ class Llama2App(EmbedChain): :param config: AppConfig instance to load as configuration. Optional. """ if "REPLICATE_API_TOKEN" not in os.environ: - raise ValueError("Please set the REPLICATE_API_TOKEN environment variable to your OpenAI API key.") + raise ValueError("Please set the REPLICATE_API_TOKEN environment variable.") if config is None: config = AppConfig()