Skip to content

Commit

Permalink
Cleanup constants defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
techleadhd committed Jun 29, 2023
1 parent 7c02777 commit b5f6b33
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Install [Langchain](https://github.com/hwchase17/langchain) and other required p
```
pip install langchain openai chromadb tiktoken unstructured
```
Modify `constants.py` to use your own [OpenAI API key](https://platform.openai.com/account/api-keys).
Modify `constants.py.default` to use your own [OpenAI API key](https://platform.openai.com/account/api-keys), and rename it to `constants.py`.

Place your own data into `data/data.txt`.

Expand Down
1 change: 0 additions & 1 deletion constants.py

This file was deleted.

3 changes: 3 additions & 0 deletions constants.py.default
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Replace with your own OpenAI API Key https://platform.openai.com/account/api-keys
# and rename this file to constants.py.
APIKEY = "<your OpenAI API key>"

0 comments on commit b5f6b33

Please sign in to comment.