forked from shroominic/codeinterpreter-api
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
29d1a70
commit 469b99e
Showing
1 changed file
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,20 @@ | ||
# (set True to enable logging) | ||
VERBOSE=False | ||
|
||
# (required) | ||
OPENAI_API_KEY= | ||
# ANTHROPIC_API_KEY= | ||
|
||
# (optional, required for production) | ||
# CODEBOX_API_KEY= | ||
# (set True to enable logging) | ||
VERBOSE=False | ||
|
||
# (optional, required for Azure OpenAI) | ||
# OPENAI_API_TYPE=azure | ||
# OPENAI_API_VERSION=2023-07-01-preview | ||
# OPENAI_API_BASE= | ||
# DEPLOYMENT_NAME= | ||
|
||
STORAGE_TYPE="file" # "file" or "redis" | ||
|
||
RD_HOST= | ||
RD_PORT= | ||
|
||
SESSION_STORAGE_FOLDER="session_storage" | ||
# (optional, [codebox, postgres or redis]) | ||
# HISTORY_BACKEND=postgres | ||
# REDIS_URL= | ||
# POSTGRES_URL= |