feat: reduce default max search results from 5 to 3 (#1)

- Optimizes token usage by ~28% while maintaining result quality
- BM25 ranking ensures best matches are in top results
- Updated core.py MAX_RESULTS constant
- Synced changes to .shared/ui-ux-pro-max/

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Viet Tran
2025-11-30 23:26:45 +07:00
committed by GitHub
parent a9a9715e0c
commit 98b57e270c
4 changed files with 6 additions and 6 deletions

View File

@@ -12,7 +12,7 @@ from collections import defaultdict
# ============ CONFIGURATION ============
DATA_DIR = Path(__file__).parent.parent / "data"
MAX_RESULTS = 5
MAX_RESULTS = 3
CSV_CONFIG = {
"style": {