@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
19 lines (18 loc) • 988 B
TypeScript
/**
* Content type definitions for multimodal support
*
* @deprecated This file has been reorganized. All multimodal types are now in './multimodal.js'
* These re-exports are maintained for backward compatibility.
* Please import from './multimodal.js' in new code.
*
* Migration guide:
* ```typescript
* // Old (still works)
* import type { MultimodalInput } from './types/content.js';
*
* // New (preferred)
* import type { MultimodalInput } from './types/multimodal.js';
* ```
*/
export type { TextContent, ImageContent, CSVContent, PDFContent, AudioContent, VideoContent, VideoOutputOptions, VideoGenerationResult, DirectorSegment, DirectorModeOptions, Content, ImageWithAltText, MultimodalInput, MultimodalMessage, VisionCapability, ProviderImageFormat, ProcessedImage, ProviderMultimodalPayload, } from "./multimodal.js";
export { isTextContent, isImageContent, isCSVContent, isPDFContent, isAudioContent, isVideoContent, isMultimodalInput, } from "./multimodal.js";