@botonic/react
Version:
Build Chatbots using React
10 lines (9 loc) • 342 B
TypeScript
import type { ToolExecuted } from './types';
export declare const RETRIEVE_KNOWLEDGE_TOOL = "retrieve_knowledge";
export declare function parseTools(tools: ToolExecuted[]): {
retrieveKnowledgeTools: ToolExecuted[];
otherTools: ToolExecuted[];
allSourcesIds: string[];
allChunksIds: string[];
query: string | undefined;
};