@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
16 lines (15 loc) • 374 B
TypeScript
import type { OpenClawConfig } from "../config/config.js";
export type AgentAvatarResolution = {
kind: "none";
reason: string;
} | {
kind: "local";
filePath: string;
} | {
kind: "remote";
url: string;
} | {
kind: "data";
url: string;
};
export declare function resolveAgentAvatar(cfg: OpenClawConfig, agentId: string): AgentAvatarResolution;