UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

7 lines (6 loc) 481 B
import type { NodeListNode } from "../../shared/node-list-types.js"; import { type GatewayCallOptions } from "./gateway.js"; export type { NodeListNode }; export declare function listNodes(opts: GatewayCallOptions): Promise<NodeListNode[]>; export declare function resolveNodeIdFromList(nodes: NodeListNode[], query?: string, allowDefault?: boolean): string; export declare function resolveNodeId(opts: GatewayCallOptions, query?: string, allowDefault?: boolean): Promise<string>;