@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
16 lines (15 loc) • 353 B
TypeScript
import type { FrameBus } from "./frameBus.js";
export declare enum TurnState {
IDLE = 0,
USER_SPEAKING = 1,
PROCESSING = 2,
ASSISTANT_SPEAKING = 3
}
export declare class TurnManager {
state: TurnState;
constructor(bus: FrameBus);
private onVadStart;
private onVadStop;
assistantSpeaking(): void;
reset(): void;
}