2023-06-09 21:59:22 +02:00
SERVER_PORT=3001
2023-08-04 23:56:27 +02:00
JWT_SECRET="my-random-string-for-seeding" # Please generate random string at least 12 chars long.
###########################################
######## LLM API SElECTION ################
###########################################
2023-10-30 23:44:03 +01:00
# LLM_PROVIDER='openai'
2023-08-04 23:56:27 +02:00
# OPEN_AI_KEY=
2023-10-30 23:44:03 +01:00
# OPEN_MODEL_PREF='gpt-3.5-turbo'
2023-06-08 06:31:35 +02:00
2023-08-04 23:56:27 +02:00
# LLM_PROVIDER='azure'
# AZURE_OPENAI_ENDPOINT=
# AZURE_OPENAI_KEY=
# OPEN_MODEL_PREF='my-gpt35-deployment' # This is the "deployment" on Azure you want to use. Not the base model.
# EMBEDDING_MODEL_PREF='embedder-model' # This is the "deployment" on Azure you want to use for embeddings. Not the base model. Valid base model is text-embedding-ada-002
2023-10-30 23:44:03 +01:00
# LLM_PROVIDER='anthropic'
# ANTHROPIC_API_KEY=sk-ant-xxxx
# ANTHROPIC_MODEL_PREF='claude-2'
2023-11-09 21:33:21 +01:00
# LLM_PROVIDER='lmstudio'
# LMSTUDIO_BASE_PATH='http://your-server:1234/v1'
# LMSTUDIO_MODEL_TOKEN_LIMIT=4096
2023-11-14 21:31:44 +01:00
# LLM_PROVIDER='localai'
# LOCAL_AI_BASE_PATH='http://localhost:8080/v1'
# LOCAL_AI_MODEL_PREF='luna-ai-llama2'
# LOCAL_AI_MODEL_TOKEN_LIMIT=4096
2023-12-04 17:38:15 +01:00
# LOCAL_AI_API_KEY="sk-123abc"
2023-11-14 21:31:44 +01:00
2023-10-30 23:44:03 +01:00
###########################################
######## Embedding API SElECTION ##########
###########################################
# Only used if you are using an LLM that does not natively support embedding (openai or Azure)
# EMBEDDING_ENGINE='openai'
# OPEN_AI_KEY=sk-xxxx
2023-11-14 22:49:31 +01:00
# EMBEDDING_ENGINE='azure'
# AZURE_OPENAI_ENDPOINT=
# AZURE_OPENAI_KEY=
# EMBEDDING_MODEL_PREF='my-embedder-model' # This is the "deployment" on Azure you want to use for embeddings. Not the base model. Valid base model is text-embedding-ada-002
# EMBEDDING_ENGINE='localai'
# EMBEDDING_BASE_PATH='https://localhost:8080/v1'
# EMBEDDING_MODEL_PREF='text-embedding-ada-002'
2023-12-08 01:27:36 +01:00
# EMBEDDING_MODEL_MAX_CHUNK_LENGTH=1000 # The max chunk size in chars a string to embed can be
2023-11-14 22:49:31 +01:00
2023-08-04 23:56:27 +02:00
###########################################
######## Vector Database Selection ########
###########################################
2023-06-08 06:31:35 +02:00
# Enable all below if you are using vector database: Chroma.
# VECTOR_DB="chroma"
# CHROMA_ENDPOINT='http://localhost:8000'
2023-09-29 22:20:06 +02:00
# CHROMA_API_HEADER="X-Api-Key"
# CHROMA_API_KEY="sk-123abc"
2023-06-08 06:31:35 +02:00
# Enable all below if you are using vector database: Pinecone.
2023-09-12 23:58:14 +02:00
# VECTOR_DB="pinecone"
# PINECONE_ENVIRONMENT=
# PINECONE_API_KEY=
# PINECONE_INDEX=
2023-06-08 23:26:29 +02:00
2023-06-09 03:40:29 +02:00
# Enable all below if you are using vector database: LanceDB.
2023-09-12 23:58:14 +02:00
VECTOR_DB="lancedb"
2023-06-09 03:40:29 +02:00
2023-08-09 03:02:30 +02:00
# Enable all below if you are using vector database: Weaviate.
# VECTOR_DB="weaviate"
# WEAVIATE_ENDPOINT="http://localhost:8080"
# WEAVIATE_API_KEY=
2023-08-16 00:26:44 +02:00
# Enable all below if you are using vector database: Qdrant.
# VECTOR_DB="qdrant"
# QDRANT_ENDPOINT="http://localhost:6333"
# QDRANT_API_KEY=
2023-08-09 03:02:30 +02:00
2023-06-08 23:26:29 +02:00
# CLOUD DEPLOYMENT VARIRABLES ONLY
# AUTH_TOKEN="hunter2" # This is the password to your application if remote hosting.
2023-06-26 20:38:38 +02:00
# STORAGE_DIR= # absolute filesystem path with no trailing slash
2023-12-05 18:13:06 +01:00
###########################################
######## PASSWORD COMPLEXITY ##############
###########################################
# Enforce a password schema for your organization users.
# Documentation on how to use https://github.com/kamronbatman/joi-password-complexity
#PASSWORDMINCHAR=8
#PASSWORDMAXCHAR=250
#PASSWORDLOWERCASE=1
#PASSWORDUPPERCASE=1
#PASSWORDNUMERIC=1
#PASSWORDSYMBOL=1
#PASSWORDREQUIREMENTS=4