Type Alias SearchRequest

type SearchRequest = {
    prompt: string;
    searchMode?: "SIMPLE" | "FULL";
    topN?: number;
}
Index

Properties

prompt: string

Query text or question to search.

searchMode?: "SIMPLE" | "FULL"
topN?: number