-
Notifications
You must be signed in to change notification settings - Fork 363
/
.env-template
97 lines (59 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# REQUIRED VARIABLES
NEXT_PUBLIC_API_HOSTNAME=http://localhost:8000
DATABASE_URL=postgresql+psycopg2://postgres:postgres@db:5432
# Migrate access token, used to authenticate requests to the migrate endpoint.
# You can generate it using some random string generator.
MIGRATE_TOKEN=<MIGRATE_TOKEN>
# TOOLS
PYTHON_INTERPRETER_URL=http://terrarium:8080
TAVILY_API_KEY=<API_KEY_HERE>
WOLFRAM_APP_ID=<APP_ID_HERE>
# CORAL WEB
NEXT_PUBLIC_HAS_CUSTOM_LOGO=false
# DEPLOYMENTS
# To use the Toolkit, at least one deployment must be setup, the simplest
# being the Cohere Platform. See the README.md for more details.
# 1 - Cohere Platform
COHERE_API_KEY=<API_KEY_HERE>
# 2 - SageMaker
SAGE_MAKER_ACCESS_KEY=<ACCESS KEY>
SAGE_MAKER_SECRET_KEY=<SECRET KEY>
SAGE_MAKER_SESSION_TOKEN=<SESSION TOKEN>
SAGE_MAKER_REGION_NAME=<REGION NAME>
SAGE_MAKER_ENDPOINT_NAME=<ENDPOINT NAME>
# 3 - Azure
AZURE_API_KEY=<API KEY>
AZURE_CHAT_ENDPOINT_URL=<ENDPOINT URL>
# 4 - Bedrock
BEDROCK_ACCESS_KEY=<ACCESS KEY>
BEDROCK_SECRET_KEY=<SECRET KEY>
BEDROCK_SESSION_TOKEN=<SESSION TOKEN>
BEDROCK_REGION_NAME=<REGION NAME>
# Experimental features
USE_AGENTS_VIEW=False
# Community features
USE_COMMUNITY_FEATURES='True'
# For setting up authentication, see: docs/auth_guide.md
AUTH_SECRET_KEY=<See auth.guide.md on how to generate a secure one>
# Required for specifying OAuth Redirect URI
FRONTEND_HOSTNAME=http://localhost:4000
NEXT_PUBLIC_FRONTEND_HOSTNAME=${FRONTEND_HOSTNAME}
# Redis
REDIS_URL=redis://:redis@redis:6379
# Google OAuth
GOOGLE_CLIENT_ID=<GOOGLE_CLIENT_ID>
GOOGLE_CLIENT_SECRET=<GOOGLE_CLIENT_SECRET>
# OpenID Connect
OIDC_CLIENT_ID=<OIDC_CLIENT_ID>
OIDC_CLIENT_SECRET=<OIDC_CLIENT_SECRET>
OIDC_WELL_KNOWN_ENDPOINT=<OIDC_WELL_KNOWN_ENDPOINT>
# SCIM
SCIM_USER=<SCIM_USER>
SCIM_PASSWORD=<SCIM_PASSWORD>
# Google Drive
GOOGLE_DRIVE_CLIENT_ID=
GOOGLE_DRIVE_CLIENT_SECRET=
NEXT_PUBLIC_GOOGLE_DRIVE_CLIENT_ID=${GOOGLE_DRIVE_CLIENT_ID}
NEXT_PUBLIC_GOOGLE_DRIVE_DEVELOPER_KEY=
# Google Cloud
GOOGLE_CLOUD_API_KEY=<API_KEY_HERE>