embed-anything-gpu 0.4.3__tar.gz → 0.4.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/PKG-INFO +1 -1
  2. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/python/Cargo.toml +1 -1
  3. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/LICENSE +0 -0
  4. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/README.md +0 -0
  5. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/pyproject.toml +0 -0
  6. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/python/Cargo.lock +0 -0
  7. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/python/python/embed_anything/__init__.py +0 -0
  8. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/python/python/embed_anything/_embed_anything.pyi +0 -0
  9. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/python/python/embed_anything/libiomp5md.dll +0 -0
  10. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/python/python/embed_anything/py.typed +0 -0
  11. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/python/python/embed_anything/vectordb.py +0 -0
  12. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/python/src/config.rs +0 -0
  13. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/python/src/lib.rs +0 -0
  14. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/Cargo.lock +0 -0
  15. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/Cargo.toml +0 -0
  16. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/README.md +0 -0
  17. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/examples/audio.rs +0 -0
  18. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/examples/bert.rs +0 -0
  19. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/examples/chunkers.rs +0 -0
  20. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/examples/clip.rs +0 -0
  21. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/examples/cloud.rs +0 -0
  22. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/examples/web_embed.rs +0 -0
  23. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/chunkers/cumulative.rs +0 -0
  24. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/chunkers/mod.rs +0 -0
  25. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/chunkers/statistical.rs +0 -0
  26. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/config.rs +0 -0
  27. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/embeddings/cloud/cohere.rs +0 -0
  28. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/embeddings/cloud/mod.rs +0 -0
  29. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/embeddings/cloud/openai.rs +0 -0
  30. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/embeddings/embed.rs +0 -0
  31. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/embeddings/local/bert.rs +0 -0
  32. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/embeddings/local/clip.rs +0 -0
  33. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/embeddings/local/jina.rs +0 -0
  34. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/embeddings/local/mod.rs +0 -0
  35. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/embeddings/mod.rs +0 -0
  36. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_loader.rs +0 -0
  37. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/audio/audio_processor.rs +0 -0
  38. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/audio/melfilters.bytes +0 -0
  39. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/audio/melfilters128.bytes +0 -0
  40. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/audio/mod.rs +0 -0
  41. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/audio/pcm_decode.rs +0 -0
  42. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/markdown_processor.rs +0 -0
  43. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/mod.rs +0 -0
  44. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/pdf_processor.rs +0 -0
  45. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/txt_processor.rs +0 -0
  46. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/file_processor/website_processor.rs +0 -0
  47. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/lib.rs +0 -0
  48. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/models/bert.rs +0 -0
  49. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/models/clip/mod.rs +0 -0
  50. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/models/clip/text_model.rs +0 -0
  51. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/models/clip/vision_model.rs +0 -0
  52. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/models/colpali.rs +0 -0
  53. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/models/jina_bert.rs +0 -0
  54. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/models/mod.rs +0 -0
  55. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/models/with_tracing.rs +0 -0
  56. {embed_anything_gpu-0.4.3 → embed_anything_gpu-0.4.4}/rust/src/text_loader.rs +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: embed_anything_gpu
3
- Version: 0.4.3
3
+ Version: 0.4.4
4
4
  Classifier: Programming Language :: Python :: 3.8
5
5
  Classifier: Programming Language :: Python :: 3.9
6
6
  Classifier: Programming Language :: Python :: 3.10
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "embed_anything_python"
3
- version = "0.4.3"
3
+ version = "0.4.4"
4
4
  edition = "2021"
5
5
 
6
6
  [lib]