import { TraceClient } from "@empiricalrun/llm"; import { IChatModel } from "@empiricalrun/llm/chat"; import { Attachment, ReporterFunction } from "@empiricalrun/shared-types/chat-agent"; export declare const log: (...args: any[]) => void; export declare function getModelName(model: string): string; export declare function handleAgentError({ error, chatModel, reporter, trace, }: { error: unknown; chatModel: IChatModel; reporter: ReporterFunction; trace?: TraceClient; }): Promise; export declare function extractAttachments(userPrompt: string): { text: string; attachments: Attachment[]; }; //# sourceMappingURL=utils.d.ts.map