forked from kroll-software/babyagi4all
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.env.example
36 lines (29 loc) · 950 Bytes
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# cp .env.example .env
# Edit your .env file with your own values
# Don't commit your .env file to git/push to GitHub!
# Don't modify/delete .env.example unless adding extensions to the project
# which require new variable to be added to the .env file
# Temperature between 0 .. 1, default = 0.2
TEMPERATURE=0.2
# Max new tokens for each reply
MAX_NEW_TOKENS=256
# Max tasks in a list
MAX_TASKS=10
# STORE CONFIG
# TABLE_NAME can be used instead
RESULTS_STORE_NAME=baby-agi-test-table
# COOPERATIVE MODE CONFIG
# BABY_NAME can be used instead
INSTANCE_NAME=BabyAGI
COOPERATIVE_MODE=none # local
# RUN CONFIG
OBJECTIVE=Become president of the United States of America.
# Extensions
# List additional extension .env files to load (except .env.example!)
DOTENV_EXTENSIONS=
# Set to true to enable command line args support
ENABLE_COMMAND_LINE_ARGS=false
# Output extra messages for debugging
VERBOSE=false
API_HOST=http://localhost
API_PORT=5000