Documentation Index
Fetch the complete documentation index at: https://hexxladb.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
SearchCells
Convenience wrapper overQueryCells for backward compatibility. Returns []CellSearchResult sorted by score; each result includes a Coord for use as a context-pack seed.
ExcludeTags, SortBy, Explain, or temporal filters, use QueryCells directly.
CellSearchConfig fields
| Field | Description |
|---|---|
Query | Full-text search query |
RequireTags | Tags that must all be present (AND) |
AnyTags | Tags where at least one must be present (OR) |
MinConfidence | Minimum confidence threshold |
MaxConfidence | Maximum confidence threshold |
SourceID | Filter by source ID |
Center | Spatial query center coordinate |
MaxScanRadius | Maximum ring radius to scan |
Embedding | Vector for ANN-accelerated seed selection |
MaxResults | Maximum results to return |
Content search scoring
| Condition | Score contribution |
|---|---|
| Query matches a tag exactly (case-insensitive) | +1.0 |
| Query is a prefix of a tag | +0.8 |
Query found verbatim in RawContent | +0.6 |
Query found case-insensitively in RawContent | +0.5 |
Query matches SourceID exactly | +0.3 |
| Confidence bonus | +0.1 × Confidence |
CellSearchResult
Cell.Coord can be used as a seed for context assembly.
Multi-seed context assembly
A seed is aCoord — the centre point of a ring-walk expansion. SearchCells returns CellSearchResult values each carrying a Coord; those coords are the seeds passed to the assembly APIs, which expand each matched location’s neighbourhood into context. One query → N matched coords → N seeds → one merged ContextPack.