-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy path.env.template
54 lines (40 loc) · 1.23 KB
/
.env.template
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
######################
### CLI (required) ###
######################
# OPENAI_API_KEY
# Get it from https://platform.openai.com/account/api-keys
OPENAI_API_KEY=
# GPT_MODEL
# choose between gpt-4-turbo and gpt-3.5-turbo
GPT_MODEL="gpt-4-turbo"
# CONTEXT_WINDOW_TOKENS:
# The size of the context window, used for the agent's short-term memory (use 16385 with gpt-3.5-turbo)
CONTEXT_WINDOW_TOKENS=128000
# MAX_RESPONSE_TOKENS
# The maximum size of the LLM's response
MAX_RESPONSE_TOKENS=4096
# SERP_API_KEY
# Get it from https://serpapi.com
# This is necessary for the webScraper.search script to work
SERP_API_KEY=
##########################
### Browser (required) ###
##########################
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
SUPABASE_SERVICE_ROLE_KEY=
SUPABASE_JWT_SECRET=super-secret-jwt-token-with-at-least-32-characters-long
NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=
###########################################
### Browser (required for `yarn start`) ###
###########################################
# Can be anything
NEXTAUTH_JWT_SECRET=
#########################
### Common (optional) ###
#########################
# Custom URL for the OpenAI API endpoint
OPENAI_API_BASE_URL=