/** * hazo_llm_document_text Function * * Document input → Text output * Analyze a document (PDF) and get text description/response. * Supports document analysis, OCR, content extraction, summarization, etc. */ import type { DocumentTextParams, LLMResponse, LLMApiConfig } from './types.js'; import type { HazoConnect } from '../hazo_connect/types.js'; /** * Call the LLM with a document input and get text output * * @param params - Document input parameters * @param _hazo_connect - HazoConnect instance (unused, kept for API consistency) * @param config - LLM API configuration * @param llm - Optional LLM provider name (uses primary LLM if not specified) * @returns LLM response with generated text analysis */ export declare function hazo_llm_document_text(params: DocumentTextParams, _hazo_connect: HazoConnect, config: LLMApiConfig, llm?: string): Promise; //# sourceMappingURL=hazo_llm_document_text.d.ts.map