@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
9 lines (8 loc) • 400 B
TypeScript
import type { OpenClawConfig } from "../../config/config.js";
export type OutboundIdentity = {
name?: string;
avatarUrl?: string;
emoji?: string;
};
export declare function normalizeOutboundIdentity(identity?: OutboundIdentity | null): OutboundIdentity | undefined;
export declare function resolveAgentOutboundIdentity(cfg: OpenClawConfig, agentId: string): OutboundIdentity | undefined;