UNPKG

@promptbook/remote-client

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

21 lines (20 loc) 600 B
import type { TODO_any } from '../../../../utils/organization/TODO_any'; /** * Normalized search extraction result for chat rendering. * * @private type of extractSearchResults */ type SearchResultsExtraction = { results: Array<TODO_any>; rawText: string | null; }; /** * Extracts search results and optional raw text from mixed payload formats. * * @param resultRaw - Raw search tool output. * @returns Normalized extraction object. * * @private function of toolCallParsing */ export declare function extractSearchResults(resultRaw: TODO_any): SearchResultsExtraction; export {};