UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

6 lines (5 loc) 464 B
import type { AgentMessage } from "@mariozechner/pi-agent-core"; import type { ImageContent } from "@mariozechner/pi-ai"; import type { EmbeddedRunAttemptParams, EmbeddedRunAttemptResult } from "./types.js"; export declare function injectHistoryImagesIntoMessages(messages: AgentMessage[], historyImagesByIndex: Map<number, ImageContent[]>): boolean; export declare function runEmbeddedAttempt(params: EmbeddedRunAttemptParams): Promise<EmbeddedRunAttemptResult>;