cognee/.env.template
Igor Ilic d68a3be32e feat: Add config support for pgvector
Added config support for using pgvector

Feature #COG-170
2024-10-11 13:23:11 +02:00

31 lines
655 B
Text

ENV="local"
TOKENIZERS_PARALLELISM="false"
LLM_API_KEY=
GRAPHISTRY_USERNAME=
GRAPHISTRY_PASSWORD=
SENTRY_REPORTING_URL=
GRAPH_DATABASE_PROVIDER="neo4j" # "neo4j" or "networkx"
# Not needed if using networkx
GRAPH_DATABASE_URL=
GRAPH_DATABASE_USERNAME=
GRAPH_DATABASE_PASSWORD=
VECTOR_ENGINE_PROVIDER="qdrant" # or "qdrant", "pgvector", "weaviate" or "lancedb"
# Not needed if using "lancedb"
VECTOR_DB_URL=
VECTOR_DB_KEY=
# Database provider
DB_PROVIDER="sqlite" # "sqlite" or "postgres"
# Database name
DB_NAME=cognee_db
# Postgres specific parameters (Only if Postgres is run)
DB_HOST=127.0.0.1
DB_PORT=5432
DB_USERNAME=cognee
DB_PASSWORD=cognee