Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,3 +311,16 @@ This directory contains classes related to managing products. It includes `Produ
#### reasoning_engines ####

This directory contains logic and interfaces for reasoning engines, including `GPTModels.py`.

## Environment Variables ##

The application expects several API keys to be available through environment
variables:

- `SERP_API_KEY`
- `BROWSERLESS_API_KEY`
- `OPENROUTER_API_KEY`

Copy `example.env` and populate these values, then place the resulting file in a
`vars/` directory at the project root. Keep the `vars/` directory unversioned so
your credentials remain private.
3 changes: 1 addition & 2 deletions example.env
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
OPEN_API_KEY = "xxx"
SERP_API_KEY = "xxx"
BROWSERLESS_API_KEY = "xxx"
OPENROUTER_API_KEY = "xxx"

Example file for illustrative purposes, populate with real values and place into a vars/ directory at root of project.

Keep the vars/ directory unversioned and in gitignore!
Keep the vars/ directory unversioned and in gitignore!