@nodify_at/hailo.js
Version:
High-performance Node.js bindings for Hailo AI acceleration processors (NPU). Run neural network inference with hardware acceleration on Hailo-8 devices.
26 lines (22 loc) • 537 B
text/typescript
/**
* Hailo.js - TypeScript bindings for Hailo AI inference
*
* @packageDocumentation
*/
export { HailoDevice } from './hailo-device.js'
export * from './detection.js'
export * from './types.js'
export * from './utils.js'
// Re-export commonly used types at top level
export type {
Detection,
InferenceInputs,
InferenceOutputs,
ModelInfo,
NMSOptions,
BoundingBox,
ModelConfig,
PerformanceMetrics,
} from './types.js'
// Export model type enum for convenience
export { ModelType } from './types.js'