import { Base } from "../base"; import type { LLMParameters, LLMResponse, ModelProvider } from "./llm.types"; import type { AnyZodObject } from "zod"; export declare class LLM extends Base { private model; constructor({ provider, id }: ModelProvider); generate(args: LLMParameters, viaAgent?: boolean): Promise>; } //# sourceMappingURL=llm.d.ts.map