MCPcopy
hub / github.com/Zleap-AI/SAG / SearchInput

Interface SearchInput

src/types.ts:6–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4export type ChunkingMode = "heading_strict" | "token";
5
6export interface SearchInput {
7 query: string;
8 sourceIds: string[];
9 strategy?: SearchStrategy;
10 searchMode?: SearchMode;
11 subStrategy?: MultiSubStrategy;
12 topK?: number;
13 returnTrace?: boolean;
14 multi?: {
15 entityTopK?: number;
16 multiTopK?: number;
17 keySimilarityThreshold?: number;
18 similarityThreshold?: number;
19 maxHops?: number;
20 maxEvents?: number;
21 maxEventsA?: number;
22 maxEventsB?: number;
23 maxHopRetries?: number;
24 rerankTopK?: number;
25 maxSections?: number;
26 };
27}
28
29export interface SearchSection {
30 chunkId: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected