-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.env
42 lines (33 loc) · 1.05 KB
/
default.env
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
# rename this file .env
# own API secret has to be changed
API_KEYS = ["CHANGE-THIS"]
API_KEY_NAME = "X-API-KEY"
# The below file is the service account used by Google Vision and Vertex
# The setup_googlecloud.sh script could help you create it
# GOOGLE_CREDENTIALS="./google-credentials-thedig.json"
# Bing Search Secrets
# https://www.microsoft.com/en-us/bing/apis/bing-web-search-api
# BING_API_KEY=""
# BING_CUSTOMCONFIG=""
# Brave Search Secrets
# https://api.search.brave.com/register
# BRAVE_API_KEY=""
# Google Vertex API
# https://cloud.google.com/generative-ai-app-builder/docs/migrate-from-cse
# Should be on the same project as Google Vision
# GOOGLE_VERTEXAI_PROJECTID = ""
# GOOGLE_VERTEXAI_DATASTORE = ""
# Use also GOOGLE_CREDENTIALS
# Nubela.co Proxycurl API Key
# Free API but requires an account on https://nubela.co/proxycurl/
# PROXYCURL_API_KEY = ""
# GitHub token
# GITHUB_TOKEN=""
# Proxy (requests syntax)
# HTTPS_PROXY = ""
# HTTP_PROXY = ""
# Redis configuration
# REDIS_USER=""
# REDIS_PASSWORD=""
REDIS_HOST = "redis"
REDIS_PORT = 6379