/** * LangChain factory for creating LLM instances */ import type { BaseChatModel } from '@langchain/core/language_models/chat_models'; import type { LLMConfig } from '../schemas'; export declare class LangChainFactory { /** * Create LLM instance from configuration */ createLLM(config: LLMConfig): BaseChatModel; } //# sourceMappingURL=langchain.d.ts.map