feat: Introduce new core components for conversation and speech management

- Added ConversationManager for managing conversation history with configurable limits.
- Implemented InputQueue for serial processing of input items.
- Created SpeechManager for handling text-to-speech generation and streaming.
- Developed StreamProcessor for processing LLM streams and forwarding events.
- Added TranscriptionManager for audio transcription using AI SDK.
- Introduced WebSocketManager for managing WebSocket connections and messaging.
- Updated VoiceAgent to support new architecture and improved socket handling.
- Refactored index files to export new core components.
This commit is contained in:
Bijit Mondal
2026-02-23 16:15:49 +05:30
parent 4dd30b89c0
commit 5e7eb469ae
71 changed files with 5175 additions and 19 deletions

View File

@@ -1,5 +1,5 @@
// Agents
export { VoiceAgent, type VoiceAgentOptions } from "./VoiceAgent";
export { VoiceAgent, type VoiceAgentOptions } from "./VoiceAgent.new";
export {
VideoAgent,
type VideoAgentOptions,
@@ -8,7 +8,7 @@ export {
type VideoAgentConfig,
type FrameContext,
type FrameTriggerReason,
} from "./VideoAgent";
} from "./VideoAgent.new";
// Shared types
export {