Commit c1e272a
Fix technical inaccuracies identified via ChatGPT validation
Corrects three technical issues found through external LLM validation:
1. Line 250: Fix HNSW m parameter description
- OLD: "Number of bidirectional links per node in the HNSW graph"
- NEW: "The number of neighbors each node will be connected to in the HNSW graph"
- REASON: HNSW graphs in Elasticsearch use directional connections, not bidirectional
2. Line 174: Fix bbq_flat description
- OLD: "Use disk-optimized BBQ for simpler use cases with fewer vectors"
- NEW: "Use BBQ without HNSW for smaller datasets. This uses brute-force search and requires less compute resources during indexing but more during querying"
- REASON: bbq_flat is NOT disk-optimized (it keeps data in memory). The term "disk-optimized" only applies to bbq_disk
3. Line 225: Add qualifier for int4 memory reduction
- OLD: "which provides 8x memory reduction"
- NEW: "which provides up to 8x memory reduction"
- REASON: 8x is theoretical maximum; actual reduction varies by dataset
All changes validated via ChatGPT API technical review and approved by documentation owner.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent ba95752 commit c1e272a
File tree
1 file changed
+3
-3
lines changed- solutions/search/semantic-search
1 file changed
+3
-3
lines changedLines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
171 | 171 | | |
172 | 172 | | |
173 | 173 | | |
174 | | - | |
| 174 | + | |
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
| |||
222 | 222 | | |
223 | 223 | | |
224 | 224 | | |
225 | | - | |
| 225 | + | |
226 | 226 | | |
227 | 227 | | |
228 | 228 | | |
| |||
247 | 247 | | |
248 | 248 | | |
249 | 249 | | |
250 | | - | |
| 250 | + | |
251 | 251 | | |
252 | 252 | | |
253 | 253 | | |
| |||
0 commit comments