Spaces:
Running
on
Zero
Running
on
Zero
test
Browse files- .gitignore +1 -1
- babyagi/.env +51 -0
.gitignore
CHANGED
@@ -105,7 +105,7 @@ celerybeat.pid
|
|
105 |
*.sage.py
|
106 |
|
107 |
# Environments
|
108 |
-
|
109 |
.venv
|
110 |
env/
|
111 |
venv/
|
|
|
105 |
*.sage.py
|
106 |
|
107 |
# Environments
|
108 |
+
#.env
|
109 |
.venv
|
110 |
env/
|
111 |
venv/
|
babyagi/.env
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# cp .env.example .env
|
2 |
+
# Edit your .env file with your own values
|
3 |
+
# Don't commit your .env file to git/push to GitHub!
|
4 |
+
# Don't modify/delete .env.example unless adding extensions to the project
|
5 |
+
# which require new variable to be added to the .env file
|
6 |
+
|
7 |
+
# API CONFIG
|
8 |
+
# OPENAI_API_MODEL can be used instead
|
9 |
+
# Special values:
|
10 |
+
# human - use human as intermediary with custom LLMs
|
11 |
+
# llama - use llama.cpp with Llama, Alpaca, Vicuna, GPT4All, etc
|
12 |
+
LLM_MODEL=gpt-3.5-turbo # alternatively, gpt-4, text-davinci-003, etc
|
13 |
+
|
14 |
+
LLAMA_MODEL_PATH= # ex. models/llama-13B/ggml-model.bin
|
15 |
+
#LLAMA_THREADS_NUM=8 # Set the number of threads for llama (optional)
|
16 |
+
|
17 |
+
OPENAI_API_KEY=
|
18 |
+
OPENAI_TEMPERATURE=0.0
|
19 |
+
|
20 |
+
# STORE CONFIG
|
21 |
+
# TABLE_NAME can be used instead
|
22 |
+
RESULTS_STORE_NAME=baby-agi-test-table
|
23 |
+
|
24 |
+
# Weaviate config
|
25 |
+
# Uncomment and fill these to switch from local ChromaDB to Weaviate
|
26 |
+
# WEAVIATE_USE_EMBEDDED=true
|
27 |
+
# WEAVIATE_URL=
|
28 |
+
# WEAVIATE_API_KEY=
|
29 |
+
|
30 |
+
# Pinecone config
|
31 |
+
# Uncomment and fill these to switch from local ChromaDB to Pinecone
|
32 |
+
# PINECONE_API_KEY=
|
33 |
+
# PINECONE_ENVIRONMENT=
|
34 |
+
|
35 |
+
# COOPERATIVE MODE CONFIG
|
36 |
+
# BABY_NAME can be used instead
|
37 |
+
INSTANCE_NAME=BabyAGI
|
38 |
+
COOPERATIVE_MODE=none # local
|
39 |
+
|
40 |
+
# RUN CONFIG
|
41 |
+
OBJECTIVE=Solve world hunger
|
42 |
+
# For backwards compatibility
|
43 |
+
# FIRST_TASK can be used instead of INITIAL_TASK
|
44 |
+
INITIAL_TASK=Develop a task list
|
45 |
+
|
46 |
+
# Extensions
|
47 |
+
# List additional extension .env files to load (except .env.example!)
|
48 |
+
DOTENV_EXTENSIONS=
|
49 |
+
# Set to true to enable command line args support
|
50 |
+
ENABLE_COMMAND_LINE_ARGS=false
|
51 |
+
|