-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
43 lines (34 loc) · 1.16 KB
/
.env.example
File metadata and controls
43 lines (34 loc) · 1.16 KB
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
CLIENT_ORIGINS=https://fake-origin.example.com
CLIENT_ORIGINS_REGEX="^http://fake-localhost:.*"
ENV=development
##### AZURE #####
AZURE_MISTRAL_API_BASE=https://fake-mistral.example.com/models
AZURE_MISTRAL_API_KEY=FAKE_MISTRAL_API_KEY
AZURE_APIM_API_BASE=https://fake-apim-mistral.example.com/models
AZURE_APIM_API_KEY=FAKE_APIM_API_KEY
##### MISTRAL #####
MISTRAL_API_KEY=FAKE_MISTRAL_API_KEY
MISTRAL_LLM_MODEL_NAME=fake-mistral-llm-model
############ FOR RAG METRICS ###########
AZURE_API_KEY=FAKE_AZURE_API_KEY
AZURE_API_BASE=https://fake-openai.example.com
AZURE_API_VERSION=0000-00-00-preview
LLM_MODEL_NAME=fake-llm-model
##### POSTGRES #########
# PG_HOST=fake-prod-postgres.example.com
PG_HOST=fake-dev-postgres.example.com
# PG_PASSWORD=FAKE_PROD_PASSWORD #PROD
PG_PASSWORD=FAKE_DEV_PASSWORD #DEV
PG_USER=fake_user
PG_DATABASE=fake_database
PG_PORT='1234'
PG_DRIVER=fake_driver
##### QDRANT ###############
QDRANT_HOST="https://fake-qdrant.example.com"
QDRANT_PORT=1234
######## TIKA ##############
TIKA_URL_BASE=https://fake-tika.example.com/
HASH_SALT="FAKE_HASH_SALT"
HASH_ALGO="FAKE_HASH_ALGO"
AUTH_TOKEN_EXPIRATION=9999
DATA_COLLECTION_ORIGIN_PREFIX="fake_prefix"