Local Collections Configuration File

To edit your local collections configuration, open this file with your preferred text editor:

{{ collections_file_path }}

Default Configuration Example

[project_docs]
name = "Project Documents"
description = "Project documentation and specifications"
paths = ["/path/to/project_documents"]
enabled = true
embedding_model = "all-MiniLM-L6-v2"
embedding_device = "cpu"  # "cpu" or "cuda" for GPU
embedding_model_type = "sentence_transformers"
max_results = 20
max_filtered_results = 5
chunk_size = 1000
chunk_overlap = 200
cache_dir = ".cache/local_search/project_docs"

# Default embedding settings for all collections
[DEFAULT_EMBEDDING_SETTINGS]
DEFAULT_EMBEDDING_MODEL = "all-MiniLM-L6-v2"
DEFAULT_EMBEDDING_DEVICE = "cpu"
DEFAULT_EMBEDDING_MODEL_TYPE = "sentence_transformers"
FORCE_REINDEX = false
CACHE_DIR = ".cache/local_search"