-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (43 loc) · 1.99 KB
/
Copy path.env.example
File metadata and controls
53 lines (43 loc) · 1.99 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
49
50
51
52
53
# 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: 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
# format: postgresql://user:password@host:5432/dbname
PGVECTOR_URL=
# vector_store: mongodb — Atlas connection string (any tier), or:
# docker run -p 27017:27017 mongodb/mongodb-atlas-local
# format: mongodb+srv://user:password@cluster.mongodb.net/ (or mongodb://...)
MONGODB_URL=
# 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
# format: https://search-your-domain.us-east-1.es.amazonaws.com (or http://localhost:9200)
OPENSEARCH_URL=
# 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=
# ingestlib mcp --transport http — bearer token required to start the HTTP
# server (any strong random string). stdio transport needs no token.
MCP_TOKEN=