@multiface.js/context
Version:
Context awareness and memory management for multimodal interactions
24 lines (21 loc) • 416 B
text/typescript
// Core context manager
export { ContextManager } from './ContextManager';
// Types
export type {
UserProfile,
ContextualData,
ConversationMemory,
ContextualIntent,
ContextState,
ContextConfig,
ContextCallbacks,
ContextEventType,
ContextEvent
} from './types';
// React hooks
export {
useContext,
useConversationMemory,
useIntentDetection,
usePersonalization
} from './hooks/useContext';