gitextract_us8kqexm/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── stale_issues.yml │ └── unit_tests.yml ├── LICENSE ├── README.md ├── chunkers/ │ ├── base_chunker.py │ ├── character_chunker.py │ ├── ner_chunker.py │ └── semantic_chunker.py ├── environment.yml ├── force_search_box_theme.js ├── llm_web_search.py ├── requirements.txt ├── retrieval.py ├── retrievers/ │ ├── bm25_retriever.py │ ├── faiss_retriever.py │ └── splade_retriever.py ├── script.js ├── script.py ├── style.css ├── system_prompts/ │ ├── bing_at_home │ ├── copilot_prompt │ ├── deep_search │ ├── default_system_prompt.txt │ ├── reasoning_enforce_search │ └── second_person_command_last ├── test_basics.py ├── tool.py └── utils.py