-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
48 lines (38 loc) · 1.83 KB
/
Copy path.env.example
File metadata and controls
48 lines (38 loc) · 1.83 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
44
45
46
47
48
# ingestlib secrets
# reranker: jina — https://jina.ai/api-dashboard/
JINA_API_KEY=
# openai backend — https://platform.openai.com/api-keys
OPENAI_API_KEY=
# vector_store: sqlite — nothing needed, no keys, no server.
# vector_store: pinecone — https://app.pinecone.io/ → API Keys
PINECONE_API_KEY=
# vector_store: qdrant — Qdrant Cloud, or a local server:
# docker run -p 6333:6333 qdrant/qdrant
# (key stays empty for a local/unsecured server)
QDRANT_URL=http://localhost:6333
QDRANT_API_KEY=
# vector_store: pgvector — RDS/Supabase/Neon, self-hosted, or:
# docker run -p 5432:5432 pgvector/pgvector:pg18
PGVECTOR_URL=postgresql://postgres:password@localhost:5432/postgres
# vector_store: mongodb — Atlas connection string (any tier), or:
# docker run -p 27017:27017 mongodb/mongodb-atlas-local
MONGODB_URL=mongodb+srv://user:password@cluster.mongodb.net/
# vector_store: milvus — Zilliz Cloud (set the token), or a local server:
# docker run -p 19530:19530 milvusdb/milvus
# (token stays empty for a local/unsecured server)
MILVUS_URL=http://localhost:19530
MILVUS_TOKEN=
# vector_store: opensearch — an Amazon OpenSearch domain endpoint (requests
# sign with your aws profile), or a local server:
# docker run -p 9200:9200 -e discovery.type=single-node \
# -e DISABLE_SECURITY_PLUGIN=true opensearchproject/opensearch
OPENSEARCH_URL=https://search-your-domain.us-east-1.es.amazonaws.com
# vector_store: weaviate — Weaviate Cloud (set the key), or a local server
# (publish BOTH ports; the v4 client speaks gRPC on 50051):
# docker run -p 8080:8080 -p 50051:50051 \
# -e AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED=true \
# -e PERSISTENCE_DATA_PATH=/var/lib/weaviate \
# cr.weaviate.io/semitechnologies/weaviate
# (key stays empty for a local/unsecured server)
WEAVIATE_URL=http://localhost:8080
WEAVIATE_API_KEY=