@gguf/claw
Version:
Multi-channel AI gateway with extensible messaging integrations
10 lines (9 loc) • 412 B
TypeScript
export type NodeMatchCandidate = {
nodeId: string;
displayName?: string;
remoteIp?: string;
connected?: boolean;
};
export declare function normalizeNodeKey(value: string): string;
export declare function resolveNodeMatches(nodes: NodeMatchCandidate[], query: string): NodeMatchCandidate[];
export declare function resolveNodeIdFromCandidates(nodes: NodeMatchCandidate[], query: string): string;