Issue: Inconsistent Export of Inference Parameter Types
In the current index.ts, there is an inconsistency in how inference parameter types are exported.
ImageInferenceParams is exported correctly.
- However,
VideoInferenceParams and RemoveBackgroundParams are not exported, even though they appear to be part of the same module/category.
Expected Behavior
All related inference parameter types (ImageInferenceParams, VideoInferenceParams, RemoveBackgroundParams) should be consistently exported from index.ts for external usage.
Actual Behavior
Only ImageInferenceParams is exported, while:
VideoInferenceParams
RemoveBackgroundParams
are not accessible when importing from the package entry point.
Impact
This inconsistency makes it difficult to use video and background removal inference features externally, as their parameter types are not available.
Please ensure all public-facing types are consistently exported to maintain API usability and developer experience.
Issue: Inconsistent Export of Inference Parameter Types
In the current
index.ts, there is an inconsistency in how inference parameter types are exported.ImageInferenceParamsis exported correctly.VideoInferenceParamsandRemoveBackgroundParamsare not exported, even though they appear to be part of the same module/category.Expected Behavior
All related inference parameter types (
ImageInferenceParams,VideoInferenceParams,RemoveBackgroundParams) should be consistently exported fromindex.tsfor external usage.Actual Behavior
Only
ImageInferenceParamsis exported, while:VideoInferenceParamsRemoveBackgroundParamsare not accessible when importing from the package entry point.
Impact
This inconsistency makes it difficult to use video and background removal inference features externally, as their parameter types are not available.
Please ensure all public-facing types are consistently exported to maintain API usability and developer experience.