UNPKG

@gguf/claw

Version:

Multi-channel AI gateway with extensible messaging integrations

12 lines (11 loc) 379 B
import fs from "node:fs"; import os from "node:os"; import path from "node:path"; type TalkApiKeyDeps = { fs?: typeof fs; os?: typeof os; path?: typeof path; }; export declare function readTalkApiKeyFromProfile(deps?: TalkApiKeyDeps): string | null; export declare function resolveTalkApiKey(env?: NodeJS.ProcessEnv, deps?: TalkApiKeyDeps): string | null; export {};