소스 검색

Fix error message on missing replicate api token (#332)

Deshraj Yadav 2 년 전
부모
커밋
2d4c51aa16
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      embedchain/apps/Llama2App.py

+ 1 - 1
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()