/** * hazo_llm_text_text Function * * Text input → Text output * Standard text generation using LLM. * Supports static prompts, dynamic prompts from database, and variable substitution. */ import type { TextTextParams, LLMResponse, LLMApiConfig } from './types.js'; import type { HazoConnect } from '../hazo_connect/types.js'; /** * Call the LLM with text input and get text output * * @param params - Text input parameters * @param hazo_connect - HazoConnect instance for database access * @param config - LLM API configuration * @param llm - Optional LLM provider name (uses primary LLM if not specified) * @returns LLM response with generated text */ export declare function hazo_llm_text_text(params: TextTextParams, hazo_connect: HazoConnect, config: LLMApiConfig, llm?: string): Promise; //# sourceMappingURL=hazo_llm_text_text.d.ts.map