UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

5 lines (4 loc) 261 B
import type { LLMManager, LLMManagerSendOpts, LLMManagerSendReq, LLMManagerSendRes } from '../LLMManager.js'; export declare class FakeLLMManager implements LLMManager { send(req: LLMManagerSendReq, opts?: LLMManagerSendOpts): Promise<LLMManagerSendRes>; }