@juspay/neurolink
Version:
Universal AI Development Platform with working MCP integration, multi-provider support, voice (TTS/STT/realtime), and professional CLI. 58+ external MCP servers discoverable, multimodal file processing, RAG pipelines. Build, test, and deploy AI applicatio
13 lines (12 loc) • 360 B
TypeScript
import { EventEmitter } from "events";
export declare function getCartesiaWsUrl(): string;
export declare class CartesiaStream extends EventEmitter {
private ws;
private contextId;
private isReady;
constructor(contextId: string);
ready(): Promise<void>;
send(text: string, cont?: boolean): void;
flush(): void;
close(): void;
}