UNPKG

@botonic/plugin-knowledge-bases

Version:

Botonic plugin for **knowledge base** features (retrieval, grounding, etc.) on the **current** framework line.

16 lines (15 loc) 313 B
export interface PluginKnowledgeBaseOptions { host: string; timeout?: number; } export interface KnowledgeBaseResponse { inferenceId: string; hasKnowledge: boolean; isFaithful: boolean; chunkIds: string[]; answer: string; } export interface Chunk { id: string; text: string; }