From b34825148478e8e1a083dd22e08495e2331e4650 Mon Sep 17 00:00:00 2001 From: Sidharth Mohanty Date: Sat, 16 Dec 2023 08:44:47 +0530 Subject: [PATCH] [Docs] Don't need open ai key for gpt4all model (#1018) --- docs/get-started/faq.mdx | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/get-started/faq.mdx b/docs/get-started/faq.mdx index 15516685..a0c6dcb9 100644 --- a/docs/get-started/faq.mdx +++ b/docs/get-started/faq.mdx @@ -90,11 +90,8 @@ llm: ```python main.py -import os from embedchain import Pipeline as App -os.environ['OPENAI_API_KEY'] = 'xxx' - # load llm configuration from opensource.yaml file app = App.from_config(config_path="opensource.yaml") ```