[Docs] Don't need open ai key for gpt4all model (#1018)

This commit is contained in:
Sidharth Mohanty
2023-12-16 08:44:47 +05:30
committed by GitHub
parent e719b5bac3
commit b348251484

View File

@@ -90,11 +90,8 @@ llm:
<CodeGroup>
```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")
```