mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2024-11-05 06:20:10 +01:00
9f33b3dfcb
* Updates for Linux for frontend/server * frontend/server docker * updated Dockerfile for deps related to node vectordb * updates for collector in docker * docker deps for ODT processing * ignore another collector dir * storage mount improvements; run as UID * fix pypandoc version typo * permissions fixes
25 lines
758 B
Plaintext
25 lines
758 B
Plaintext
SERVER_PORT=3001
|
|
OPEN_AI_KEY=
|
|
OPEN_MODEL_PREF='gpt-3.5-turbo'
|
|
CACHE_VECTORS="true"
|
|
|
|
# Enable all below if you are using vector database: Chroma.
|
|
# VECTOR_DB="chroma"
|
|
# CHROMA_ENDPOINT='http://localhost:8000'
|
|
|
|
# Enable all below if you are using vector database: Pinecone.
|
|
VECTOR_DB="pinecone"
|
|
PINECONE_ENVIRONMENT=
|
|
PINECONE_API_KEY=
|
|
PINECONE_INDEX=
|
|
|
|
# Enable all below if you are using vector database: LanceDB.
|
|
# VECTOR_DB="lancedb"
|
|
|
|
# CLOUD DEPLOYMENT VARIRABLES ONLY
|
|
# AUTH_TOKEN="hunter2" # This is the password to your application if remote hosting.
|
|
# JWT_SECRET="my-random-string-for-seeding" # Only needed if AUTH_TOKEN is set. Please generate random string at least 12 chars long.
|
|
STORAGE_DIR="./server/storage"
|
|
GOOGLE_APIS_KEY=
|
|
UID='1000'
|
|
GID='1000' |