UNPKG

@elevenlabs/convai-cli

Version:

CLI tool to manage ElevenLabs conversational AI agents

13 lines 455 B
/** * ElevenLabs Conversational AI Agent Manager * TypeScript/Node.js implementation */ export * from './utils.js'; export * from './templates.js'; export * from './elevenlabs-api.js'; export * from './config.js'; export type { LockFileData, LockFileAgent } from './utils.js'; export type { AgentConfig } from './templates.js'; export type { CliConfig } from './config.js'; export { version } from '../package.json'; //# sourceMappingURL=index.d.ts.map