Remove deprecated storage backends and Kubernetes deployment configuration: - Delete unused storage implementations: FAISS, JSON, Memgraph, Milvus, MongoDB, Nano Vector DB, Neo4j, NetworkX, Qdrant, Redis - Remove Kubernetes deployment manifests and installation scripts - Delete legacy examples for deprecated backends - Consolidate to PostgreSQL-only storage backend Streamline dependencies and add new capabilities: - Remove deprecated code documentation and migration guides - Add full-text search caching layer with FTS cache module - Implement metrics collection and monitoring pipeline - Add explain and metrics API routes - Simplify configuration with PostgreSQL-focused setup Update documentation and configuration: - Rewrite README to focus on supported features - Update environment and configuration examples - Remove Kubernetes-specific documentation - Add new utility scripts for PDF uploads and pipeline monitoring
15 lines
325 B
Text
15 lines
325 B
Text
[postgres]
|
|
host = localhost
|
|
port = 5432
|
|
user = your_username
|
|
password = your_password
|
|
database = your_database
|
|
# workspace = default
|
|
max_connections = 12
|
|
vector_index_type = HNSW # HNSW, IVFFLAT or VCHORDRQ
|
|
hnsw_m = 16
|
|
hnsw_ef = 64
|
|
ivfflat_lists = 100
|
|
vchordrq_build_options =
|
|
vchordrq_probes =
|
|
vchordrq_epsilon = 1.9
|