Spaces:
Running
Running
File size: 665 Bytes
11d9dfb 5e2e4e3 11d9dfb |
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 |
# Local development configuration overrides
app:
debug: true
max_upload_size: 100 # MB for local testing
models:
embedding:
batch_size: 16 # Smaller for local development
reranker:
batch_size: 8
# Document processing (for local development)
processing:
chunk_size: 256 # Smaller chunks for faster processing
chunk_overlap: 25
max_chunks_per_doc: 500
# Search configuration (optimized for local)
search:
default_k: 5
max_k: 10
rerank_top_k: 20
final_top_k: 5
cache:
embedding_cache_size: 5000
query_cache_size: 500
logging:
level: "DEBUG"
file: "logs/rag_system_dev.log"
ui:
show_analytics: true
max_file_size: "100MB" |