UNPKG

newo

Version:

NEWO CLI: Professional command-line tool with modular architecture for NEWO AI Agent development. Features account migration, integration management, webhook automation, AKB knowledge base, project attributes, sandbox testing, IDN-based file management, r

14 lines 542 B
/** * AKB (Knowledge Base) synchronization module * Handles pull/push of AKB articles for personas with agents */ import type { AxiosInstance } from 'axios'; /** * Pull AKB articles for all personas linked to agents */ export declare function pullAkb(client: AxiosInstance, customerDir: string, verbose?: boolean): Promise<void>; /** * Push AKB articles from local files to NEWO platform */ export declare function pushAkb(client: AxiosInstance, customerDir: string, verbose?: boolean): Promise<void>; //# sourceMappingURL=akb.d.ts.map