nexaai 1.0.21rc5__cp313-cp313-win_arm64.whl → 1.0.21rc16__cp313-cp313-win_arm64.whl

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.

Potentially problematic release.


This version of nexaai might be problematic. Click here for more details.

Files changed (104) hide show
  1. nexaai/__init__.py +95 -95
  2. nexaai/_stub.cp313-win_arm64.pyd +0 -0
  3. nexaai/_version.py +4 -1
  4. nexaai/asr.py +68 -65
  5. nexaai/asr_impl/mlx_asr_impl.py +92 -92
  6. nexaai/asr_impl/pybind_asr_impl.py +127 -44
  7. nexaai/base.py +39 -39
  8. nexaai/binds/__init__.py +6 -5
  9. nexaai/binds/asr_bind.cp313-win_arm64.pyd +0 -0
  10. nexaai/binds/common_bind.cp313-win_arm64.pyd +0 -0
  11. nexaai/binds/cpu_gpu/ggml-base.dll +0 -0
  12. nexaai/binds/cpu_gpu/ggml-cpu.dll +0 -0
  13. nexaai/binds/cpu_gpu/ggml-opencl.dll +0 -0
  14. nexaai/binds/cpu_gpu/ggml.dll +0 -0
  15. nexaai/binds/cpu_gpu/mtmd.dll +0 -0
  16. nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll +0 -0
  17. nexaai/binds/cpu_gpu/nexa_plugin.dll +0 -0
  18. nexaai/binds/embedder_bind.cp313-win_arm64.pyd +0 -0
  19. nexaai/binds/libcrypto-3-arm64.dll +0 -0
  20. nexaai/binds/libssl-3-arm64.dll +0 -0
  21. nexaai/binds/llm_bind.cp313-win_arm64.pyd +0 -0
  22. nexaai/binds/nexa_bridge.dll +0 -0
  23. nexaai/binds/npu/convnext-sdk.dll +0 -0
  24. nexaai/binds/npu/embed-gemma-sdk.dll +0 -0
  25. nexaai/binds/npu/ggml-base.dll +0 -0
  26. nexaai/binds/npu/ggml-cpu.dll +0 -0
  27. nexaai/binds/{nexaml → npu}/ggml-opencl.dll +0 -0
  28. nexaai/binds/npu/ggml.dll +0 -0
  29. nexaai/binds/npu/granite-nano-sdk.dll +0 -0
  30. nexaai/binds/npu/granite4-sdk.dll +0 -0
  31. nexaai/binds/npu/jina-rerank-sdk.dll +0 -0
  32. nexaai/binds/npu/liquid-sdk.dll +0 -0
  33. nexaai/binds/npu/llama3-3b-sdk.dll +0 -0
  34. nexaai/binds/npu/nexa-mm-process.dll +0 -0
  35. nexaai/binds/npu/nexa-sampling.dll +0 -0
  36. nexaai/binds/npu/nexa_plugin.dll +0 -0
  37. nexaai/binds/npu/omni-neural-sdk.dll +0 -0
  38. nexaai/binds/npu/openblas.dll +0 -0
  39. nexaai/binds/npu/paddleocr-sdk.dll +0 -0
  40. nexaai/binds/npu/parakeet-sdk.dll +0 -0
  41. nexaai/binds/npu/phi3-5-sdk.dll +0 -0
  42. nexaai/binds/npu/phi4-sdk.dll +0 -0
  43. nexaai/binds/npu/pyannote-sdk.dll +0 -0
  44. nexaai/binds/npu/qwen3-4b-sdk.dll +0 -0
  45. nexaai/binds/npu/qwen3vl-sdk.dll +0 -0
  46. nexaai/binds/npu/qwen3vl-vision.dll +0 -0
  47. nexaai/binds/npu/yolov12-sdk.dll +0 -0
  48. nexaai/binds/npu/zlib1.dll +0 -0
  49. nexaai/binds/rerank_bind.cp313-win_arm64.pyd +0 -0
  50. nexaai/binds/vlm_bind.cp313-win_arm64.pyd +0 -0
  51. nexaai/common.py +105 -105
  52. nexaai/cv.py +93 -93
  53. nexaai/cv_impl/mlx_cv_impl.py +89 -89
  54. nexaai/cv_impl/pybind_cv_impl.py +32 -32
  55. nexaai/embedder.py +73 -73
  56. nexaai/embedder_impl/mlx_embedder_impl.py +118 -118
  57. nexaai/embedder_impl/pybind_embedder_impl.py +96 -96
  58. nexaai/image_gen.py +141 -141
  59. nexaai/image_gen_impl/mlx_image_gen_impl.py +292 -292
  60. nexaai/image_gen_impl/pybind_image_gen_impl.py +85 -85
  61. nexaai/llm.py +98 -98
  62. nexaai/llm_impl/mlx_llm_impl.py +271 -271
  63. nexaai/llm_impl/pybind_llm_impl.py +220 -220
  64. nexaai/log.py +92 -92
  65. nexaai/rerank.py +57 -57
  66. nexaai/rerank_impl/mlx_rerank_impl.py +94 -94
  67. nexaai/rerank_impl/pybind_rerank_impl.py +136 -136
  68. nexaai/runtime.py +68 -68
  69. nexaai/runtime_error.py +24 -24
  70. nexaai/tts.py +75 -75
  71. nexaai/tts_impl/mlx_tts_impl.py +94 -94
  72. nexaai/tts_impl/pybind_tts_impl.py +43 -43
  73. nexaai/utils/decode.py +17 -17
  74. nexaai/utils/manifest_utils.py +531 -531
  75. nexaai/utils/model_manager.py +1562 -1562
  76. nexaai/utils/model_types.py +49 -49
  77. nexaai/utils/progress_tracker.py +384 -384
  78. nexaai/utils/quantization_utils.py +245 -245
  79. nexaai/vlm.py +129 -129
  80. nexaai/vlm_impl/mlx_vlm_impl.py +258 -258
  81. nexaai/vlm_impl/pybind_vlm_impl.py +256 -256
  82. {nexaai-1.0.21rc5.dist-info → nexaai-1.0.21rc16.dist-info}/METADATA +1 -1
  83. nexaai-1.0.21rc16.dist-info/RECORD +154 -0
  84. nexaai/binds/nexaml/FLAC.dll +0 -0
  85. nexaai/binds/nexaml/fftw3.dll +0 -0
  86. nexaai/binds/nexaml/fftw3f.dll +0 -0
  87. nexaai/binds/nexaml/ggml-base.dll +0 -0
  88. nexaai/binds/nexaml/ggml-cpu.dll +0 -0
  89. nexaai/binds/nexaml/ggml.dll +0 -0
  90. nexaai/binds/nexaml/libmp3lame.DLL +0 -0
  91. nexaai/binds/nexaml/mpg123.dll +0 -0
  92. nexaai/binds/nexaml/nexa-mm-process.dll +0 -0
  93. nexaai/binds/nexaml/nexa-sampling.dll +0 -0
  94. nexaai/binds/nexaml/nexa_plugin.dll +0 -0
  95. nexaai/binds/nexaml/nexaproc.dll +0 -0
  96. nexaai/binds/nexaml/ogg.dll +0 -0
  97. nexaai/binds/nexaml/opus.dll +0 -0
  98. nexaai/binds/nexaml/qwen3-vl.dll +0 -0
  99. nexaai/binds/nexaml/qwen3vl-vision.dll +0 -0
  100. nexaai/binds/nexaml/vorbis.dll +0 -0
  101. nexaai/binds/nexaml/vorbisenc.dll +0 -0
  102. nexaai-1.0.21rc5.dist-info/RECORD +0 -162
  103. {nexaai-1.0.21rc5.dist-info → nexaai-1.0.21rc16.dist-info}/WHEEL +0 -0
  104. {nexaai-1.0.21rc5.dist-info → nexaai-1.0.21rc16.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,154 @@
1
+ nexaai/__init__.py,sha256=gOd7sNsqEESopw_24xgnOSkIRENrk4Fa-RMtmVv62eA,2421
2
+ nexaai/_stub.cp313-win_arm64.pyd,sha256=gAs8QCA4inmM8UfzSS5j9rhTwt8EXFzM4nN7DjW6q5w,10240
3
+ nexaai/_version.py,sha256=GIUuor8eMW9bhPo5f6Hz0496TdPqvaYxc7lqogiZ8Hg,147
4
+ nexaai/asr.py,sha256=wqtq71cxIMGE4KvOIYZebHdWik8dy4LyKrDI98PDvzQ,2294
5
+ nexaai/base.py,sha256=N8PRgDFA-XPku2vWnQIofQ7ipz3pPlO6f8YZGnuhquE,982
6
+ nexaai/common.py,sha256=MRWZ6a7pnci_OUHxZRm3YqgKLAtZFD7b88STYDfeIF8,3460
7
+ nexaai/cv.py,sha256=gpE3F__6bjh8OQKNJZs-QrBuCxqMj2eH-u6HR90vGZE,3302
8
+ nexaai/embedder.py,sha256=lXOT16PEvd_hT23d77dZH38VHNOAk-3JvoOUdQTEaGI,2552
9
+ nexaai/image_gen.py,sha256=MkGw1HXqqv8cJzbiGERNPKFXfq9vMOlvuq0pgekXw68,4385
10
+ nexaai/llm.py,sha256=-agVJuj0FOaDvDiT-fFSOpoyVt-MpNudBucsod3Vp1M,3673
11
+ nexaai/log.py,sha256=Kwo2CIfWN6iP4M4F5EUIV8KIO5hAsvz6HZAaOwJ27Og,2628
12
+ nexaai/rerank.py,sha256=rFKm1Y_ou__0lU82OTy4j_AYIGVBGfID0gzuZ6zXYsM,1968
13
+ nexaai/runtime.py,sha256=JvllhlNPgYGLbgGyX2yNvmGzT0lZ5XbvTvEo8sZG_Ho,2067
14
+ nexaai/runtime_error.py,sha256=sO87LyCA0qzm0hVqBrmG2FDzGQH865EMbTMop2OfZto,779
15
+ nexaai/tts.py,sha256=jvgDZIyo47NBDny6z74IQT2SDDVo7Mpp-QZwl6YxARU,2196
16
+ nexaai/vlm.py,sha256=LUrd1_SGHOsYpWyUymX93oEIsNJv7XzHIHo4hBZOhQA,4800
17
+ nexaai/asr_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ nexaai/asr_impl/mlx_asr_impl.py,sha256=eosd8-TIWAOwV0HltmoFrLwzXHcU4jyxtncvuZE9pgA,3257
19
+ nexaai/asr_impl/pybind_asr_impl.py,sha256=FLOWIph37q_nIiNx8xYi-VnhQ6CrPuc4HFAJZQKc42w,4680
20
+ nexaai/binds/__init__.py,sha256=2-Rr0NwyWygqwS8Xlxq0BJ2ltyID-WbGuzEYNlSanCI,155
21
+ nexaai/binds/asr_bind.cp313-win_arm64.pyd,sha256=bOHc6D-yPBATiF-tdgYLn6NYlhh-m-jo1Dx90uhROtQ,267776
22
+ nexaai/binds/common_bind.cp313-win_arm64.pyd,sha256=n3tnGLVqhV0I7k9KAvEqgaohcbp0LE7ih3VoxhDIiPQ,291328
23
+ nexaai/binds/embedder_bind.cp313-win_arm64.pyd,sha256=BDZoFFWmD4u8tL04vfpybRDBa0fO3r8OmbCEWNR9Dm0,243712
24
+ nexaai/binds/libcrypto-3-arm64.dll,sha256=jl9ZGYpUKEfkqU2HosjSJQ4Mg0tQdkEka7mKI371NcQ,7297536
25
+ nexaai/binds/libssl-3-arm64.dll,sha256=GeAhDqjiuxhc792cpJIzjEx03noAWUM6R3w2ekHKnJw,1722368
26
+ nexaai/binds/llm_bind.cp313-win_arm64.pyd,sha256=fgN4KyfrkvJf5AybKMX5SPUYD38ULUMm75a7GamRvZU,226304
27
+ nexaai/binds/nexa_bridge.dll,sha256=r1OrBfWbA29MREfHDO6RXfnS9rbM24cDLVHsjirVj1c,231936
28
+ nexaai/binds/rerank_bind.cp313-win_arm64.pyd,sha256=q2HDV6_V1Dj4WVCXIdy7j_cZp0MWQ91wzQMJncXnSE4,239616
29
+ nexaai/binds/vlm_bind.cp313-win_arm64.pyd,sha256=fF9ixCR-n_HIMyDEIyFdQN54obC43y2GxhwcUOJ2RUI,237568
30
+ nexaai/binds/cpu_gpu/ggml-base.dll,sha256=l6T5CLuBtFpsNSaBrSnjXgXT82ar7dkBYhuNoPbWWf0,534016
31
+ nexaai/binds/cpu_gpu/ggml-cpu.dll,sha256=4OxOhQnyRj6gMiaj-H_BaElFFgsDq8TgFXmKX1diA3U,555520
32
+ nexaai/binds/cpu_gpu/ggml-opencl.dll,sha256=r21HRSgfn1qNlFf800g1zjPIHozxyPC80yI0tsGkXUA,620544
33
+ nexaai/binds/cpu_gpu/ggml.dll,sha256=5RH-0ZHWGkFwKLJSkSPmTp3miZaiiy1ITdRL_txhtLg,70656
34
+ nexaai/binds/cpu_gpu/libomp140.aarch64.dll,sha256=0mSWmPxoRm7ojPWK46sPqxBvKTJug6qqVkPTBlGpYuM,599504
35
+ nexaai/binds/cpu_gpu/mtmd.dll,sha256=y8jKzB4zbPCkmbN4iuPX_r2OzuxTcqXalhAPW5bfHvg,551936
36
+ nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll,sha256=1Ddk_UWTE5-nE1_ZlAanmpTOgPhmmVeebSLw1qohio8,1581056
37
+ nexaai/binds/cpu_gpu/nexa_plugin.dll,sha256=aYNCzeROt8VPcjLBNBUFi7dXX5hAXZXqds7FKaxZf8g,2177024
38
+ nexaai/binds/npu/FLAC.dll,sha256=KieFm07q-TkzZ-NoOzaLutkwlMoYNnMD3IuI1iMAt9s,224256
39
+ nexaai/binds/npu/convnext-sdk.dll,sha256=90dv6IKyGUnsW61V8byEVxn9sOkRT_bAoOjVr2QE7rU,1210368
40
+ nexaai/binds/npu/embed-gemma-sdk.dll,sha256=s5BpKtksG2syKEXeTpcOyXd64w_Oqwjq11xjEy2tjw8,4647936
41
+ nexaai/binds/npu/fftw3.dll,sha256=UHNc9Fdpo50qWP6jOIVftyGJeoFbExBV4taNrI-rcG8,569856
42
+ nexaai/binds/npu/fftw3f.dll,sha256=Qeeq1HxRdRReCBihEpEBz4AfcPrJZ994u1hy4OwSv5M,565760
43
+ nexaai/binds/npu/ggml-base.dll,sha256=l6T5CLuBtFpsNSaBrSnjXgXT82ar7dkBYhuNoPbWWf0,534016
44
+ nexaai/binds/npu/ggml-cpu.dll,sha256=4OxOhQnyRj6gMiaj-H_BaElFFgsDq8TgFXmKX1diA3U,555520
45
+ nexaai/binds/npu/ggml-opencl.dll,sha256=r21HRSgfn1qNlFf800g1zjPIHozxyPC80yI0tsGkXUA,620544
46
+ nexaai/binds/npu/ggml.dll,sha256=5RH-0ZHWGkFwKLJSkSPmTp3miZaiiy1ITdRL_txhtLg,70656
47
+ nexaai/binds/npu/granite-nano-sdk.dll,sha256=H2ThNUaTaYa8U2qyDdXnSV3AAqHvq3aUx9q1gGBiitU,4732928
48
+ nexaai/binds/npu/granite4-sdk.dll,sha256=aNlT_Db8CYO4-A6gegxINhU9VbiGAXkArenruym4Jvs,4735488
49
+ nexaai/binds/npu/jina-rerank-sdk.dll,sha256=FpNwS2opIegM6dkY2X8g8gyfgjBrkUKtuhTXdMMENDc,4597248
50
+ nexaai/binds/npu/libcrypto-3-arm64.dll,sha256=Zdx-VmPlmvRbagtlOdhjOsmZSGTcRoUCm_K-_6XcDe8,7309432
51
+ nexaai/binds/npu/libmp3lame.DLL,sha256=ema4xU_fXnvSXmq5W2_EWdDJ6ZBP0idzsSeEnSGFpPI,320512
52
+ nexaai/binds/npu/libomp140.aarch64.dll,sha256=0mSWmPxoRm7ojPWK46sPqxBvKTJug6qqVkPTBlGpYuM,599504
53
+ nexaai/binds/npu/libssl-3-arm64.dll,sha256=YbBpztXYi15lGe445EyV9DL0Q4rI0k23gta1dXFKs3c,1734264
54
+ nexaai/binds/npu/liquid-sdk.dll,sha256=la2-wwueKuq8gzNtb-PVbfXUXB7TkG04HFrPKrxwg9k,4849664
55
+ nexaai/binds/npu/llama3-3b-sdk.dll,sha256=C9SS6tYpll8yAb_xBqBkmweuVTk2aA-9sPE6DPlBl4Y,4738048
56
+ nexaai/binds/npu/mpg123.dll,sha256=1iTmvrgIVievsDXO1RaWLntnE-TIAVPpbqEV8C-yaC0,253952
57
+ nexaai/binds/npu/nexa-mm-process.dll,sha256=rZvP8d8eVjSqKGTkeoNV7Ill_gSjSzJ4XJ1p-Tt92rk,5470208
58
+ nexaai/binds/npu/nexa-sampling.dll,sha256=eYclqTHNOGn8bEzS2yarCULnh1PwXsPgQO8ePGeZKx8,3795968
59
+ nexaai/binds/npu/nexa_plugin.dll,sha256=h0F2_qAhy1wlfKRBTzgIq27v-AmFxud6BhK_s--j6pQ,773632
60
+ nexaai/binds/npu/nexaproc.dll,sha256=uWp5ENzDwlavO06t4SfcKBnc7JlF1OmAGsJCrV39TCw,2561024
61
+ nexaai/binds/npu/ogg.dll,sha256=bgpqQM-OLactFaqZYmZcIDjkaTRCinrny8_6SBUU8B0,30720
62
+ nexaai/binds/npu/omni-neural-sdk.dll,sha256=jA8XFNirsiK5uAZbnoU01RohWj33Bf2uv8Y8g8GySDQ,5257728
63
+ nexaai/binds/npu/openblas.dll,sha256=jayUYCto57nHAYWh7pbKHUaq_1iwb4-X5dk8RgSU66k,1043968
64
+ nexaai/binds/npu/opus.dll,sha256=yMljsUvjOuEIP-3GU4Bl1SNrmQ0hSjYz-66pd2Tceww,333824
65
+ nexaai/binds/npu/paddle-ocr-proc-lib.dll,sha256=GP3Vf3LWOQFCa1qz0O7AGvReEglIaqp463nuPGkn05k,2165760
66
+ nexaai/binds/npu/paddleocr-sdk.dll,sha256=dJer3VBQRbUIqRDe8DjpTFVjOm18h9IJQYjoznLr6bk,1584640
67
+ nexaai/binds/npu/parakeet-sdk.dll,sha256=REkIVi5YLasAOiDql2J60ipQJjT0_GcRpzGi5JsyNZs,1732608
68
+ nexaai/binds/npu/phi3-5-sdk.dll,sha256=__Q5BgnYarK9yWBrRDO-UKvFQq9gfFVF5JQCThrJl6A,4737024
69
+ nexaai/binds/npu/phi4-sdk.dll,sha256=uBJL70m0qOAAlV_hEGi-tB753A2dGFSpD8JsxTDW3HA,4737536
70
+ nexaai/binds/npu/pyannote-sdk.dll,sha256=ptzE3gdX57P8AU8M1i-eoAbParNROPAr7jVstb14Wlc,1217536
71
+ nexaai/binds/npu/qwen3-4b-sdk.dll,sha256=94FRAX6LrXGsp0BgwRR2TS7MCwUD-dbqVxbUeIzNGPo,4730368
72
+ nexaai/binds/npu/qwen3vl-sdk.dll,sha256=pmI701PrrYAj3J0nJsEa9zmSR5iqsmDuLrstanshrm8,5152256
73
+ nexaai/binds/npu/qwen3vl-vision.dll,sha256=kCJBlpWv_4YQCgCIL4b99a6eFd9Ok3_V8TWB_X77w5A,546816
74
+ nexaai/binds/npu/rtaudio.dll,sha256=Yt_BpQh3lfZVe5Xvg52dM1EdHAluPonGHCKj7XeeGYs,97280
75
+ nexaai/binds/npu/vorbis.dll,sha256=I-dM07E1rTZGzuhtnDvziChdUCuMGh1pBamHEUxxCHA,691200
76
+ nexaai/binds/npu/vorbisenc.dll,sha256=kOLDGx90EC3pNFE7H_SmDN47yRtTwWzfNRCkJrtU7gs,561152
77
+ nexaai/binds/npu/yolov12-sdk.dll,sha256=z4llSWCge-33WNGQc5Z_7zddNROAfZQQh4LgEH5pmbk,1540096
78
+ nexaai/binds/npu/zlib1.dll,sha256=5lgnoWv4RxtQZJLcnTGOmhMuoeKFDfdRlsYj9gxQo1k,88064
79
+ nexaai/binds/npu/htp-files/Genie.dll,sha256=v9NBdDjaVqEpfIAaeoeRig8LopOJF1jR-_7mT55oN7Y,6076928
80
+ nexaai/binds/npu/htp-files/PlatformValidatorShared.dll,sha256=cs78NOSkmbE4llNDQqeQRaWpGvpFAlizwMQ9ggvAKIU,10964992
81
+ nexaai/binds/npu/htp-files/QnnChrometraceProfilingReader.dll,sha256=3BTgItZm3pgHQE1mmsiQ2uGOKxazgkEQ5kh_z4cimMA,274432
82
+ nexaai/binds/npu/htp-files/QnnCpu.dll,sha256=kmiMA59uqDHxur4rX4t9fWtnhAUsWrCl5LwyyHI4Uqc,3850240
83
+ nexaai/binds/npu/htp-files/QnnCpuNetRunExtensions.dll,sha256=bHEa156SDlyNMBv_7TQZv7KwGIlEBibCGDH5dTJcb_E,253952
84
+ nexaai/binds/npu/htp-files/QnnDsp.dll,sha256=CkCfYYbNTqHin5D7l23OBae_AkQyxE7mEtkNBA_tlNo,1283584
85
+ nexaai/binds/npu/htp-files/QnnDspNetRunExtensions.dll,sha256=vZu_opnOqBOcpQONVK7elJuDJFwG0i2_16jB__RNTWM,267264
86
+ nexaai/binds/npu/htp-files/QnnDspV66CalculatorStub.dll,sha256=aAtfYoz6sqQ6TmyJFLSWEK4fSxm76oGQL8zVGx67Bc0,25088
87
+ nexaai/binds/npu/htp-files/QnnDspV66Stub.dll,sha256=r0umMfezlzQ8M6y6vu6SvFr1u-uGu1Fa5mS3U-P4lwQ,74752
88
+ nexaai/binds/npu/htp-files/QnnGenAiTransformer.dll,sha256=tNbgqKmIIIdaMJu2dSPLJ4jNovx0RSmvMBQacsOoQDE,516096
89
+ nexaai/binds/npu/htp-files/QnnGenAiTransformerCpuOpPkg.dll,sha256=HG6i7MTgArwR2w7ZgmDJQ-O-S2AJ1vL5GhEoTYJDrVk,461312
90
+ nexaai/binds/npu/htp-files/QnnGenAiTransformerModel.dll,sha256=-y8VLwNGBFz9oPK6mnwruCEFtUNO02II2VzNwKtI_3U,65024
91
+ nexaai/binds/npu/htp-files/QnnGpu.dll,sha256=VwZ3xXa0M9v9diuwZ1uIAQbHACS_-fBQPsoPUJV175w,5603840
92
+ nexaai/binds/npu/htp-files/QnnGpuNetRunExtensions.dll,sha256=YA-gRxyvdXphMDDwliGwpktDGzYU91PS6abQQUNEuVY,263168
93
+ nexaai/binds/npu/htp-files/QnnGpuProfilingReader.dll,sha256=4vWngql0p7PgoDzj5F7Bo2WiNE0PCrRkZA4PfSvorms,275456
94
+ nexaai/binds/npu/htp-files/QnnHtp.dll,sha256=tjHfezKmyn8CP28J8_sDcah43YsrFmyA5871TaW9EMk,2169344
95
+ nexaai/binds/npu/htp-files/QnnHtpNetRunExtensions.dll,sha256=m7pe982DUa6jEIQFeTE6h6XQsfiEm2CSDV8SuWWYrok,835584
96
+ nexaai/binds/npu/htp-files/QnnHtpOptraceProfilingReader.dll,sha256=IUu0psT3W7BmrLelgBh9qbXAMiecn2rjXorOo3tgoUM,2953728
97
+ nexaai/binds/npu/htp-files/QnnHtpPrepare.dll,sha256=tSb9W0ZipdDk-GxLKAc5GD_oYIp6UdURaU0VOg89SGc,62590464
98
+ nexaai/binds/npu/htp-files/QnnHtpProfilingReader.dll,sha256=PEAxdFsZZBbbi_93-kbmedNLuCc3OMWDDvwciYJm4a4,255488
99
+ nexaai/binds/npu/htp-files/QnnHtpV68CalculatorStub.dll,sha256=r_GE12WQ3-EV9F1xywDDgOFcvTaL9vC12cQUQhw126o,25088
100
+ nexaai/binds/npu/htp-files/QnnHtpV68Stub.dll,sha256=TUbCCNalMU8nV1FxxujOLxQ9bfwq74nL_mUWwCJzk4c,171520
101
+ nexaai/binds/npu/htp-files/QnnHtpV73CalculatorStub.dll,sha256=d_3wvJhKziDWzDwyk7fdaHGZE_dH5G2rC1ScFITMNJw,25088
102
+ nexaai/binds/npu/htp-files/QnnHtpV73Stub.dll,sha256=aT1mKepe7SU31VeNXYP2LOPl0XnUpXFU-y4OVDrkm8A,328704
103
+ nexaai/binds/npu/htp-files/QnnIr.dll,sha256=6pBAZwmn99sHXL3BgRcFH33QR0PC85mzstnSoTCFttM,1424384
104
+ nexaai/binds/npu/htp-files/QnnJsonProfilingReader.dll,sha256=Blr0B7sz9QQHGSddTko8t9GhFSBnjtnJ9PLEJpt-NAQ,315392
105
+ nexaai/binds/npu/htp-files/QnnModelDlc.dll,sha256=DMVptJnucEv8tuve-6az3zm712mUgzTFDVNvXulv72A,2192896
106
+ nexaai/binds/npu/htp-files/QnnSaver.dll,sha256=FIIQicCQ1-CWJYe01Qy01CTYpdiMUbiUFemmzFAK4FU,573440
107
+ nexaai/binds/npu/htp-files/QnnSystem.dll,sha256=yDMNu93p52Rv7KLD72o0WRmj64cEEHI4KUHoJyISB8A,2276352
108
+ nexaai/binds/npu/htp-files/SNPE.dll,sha256=SfCIJXgkD-evK7wXVyxFJBy4Na9X8Wuto3ZUlpOcHyw,17891840
109
+ nexaai/binds/npu/htp-files/SnpeDspV66Stub.dll,sha256=4Z5I0Cxwo6-_sWETe6oEBco6F2DSFeI5iLb5kDsFVGY,1084416
110
+ nexaai/binds/npu/htp-files/SnpeHtpPrepare.dll,sha256=_-PuRSyBHXoI4zDEXpQQZwof6vlyyeCysxHZxKPUIJU,62590464
111
+ nexaai/binds/npu/htp-files/SnpeHtpV68Stub.dll,sha256=jEWgCA4afTuHckgkPLonxpVzw0jeuLXofNDrbhNDh1o,171520
112
+ nexaai/binds/npu/htp-files/SnpeHtpV73Stub.dll,sha256=BETBjJ0FliASy5V9DSGyXUO4qhYgk4VV43Al3oIYZSA,328704
113
+ nexaai/binds/npu/htp-files/calculator.dll,sha256=aAtfYoz6sqQ6TmyJFLSWEK4fSxm76oGQL8zVGx67Bc0,25088
114
+ nexaai/binds/npu/htp-files/calculator_htp.dll,sha256=r_GE12WQ3-EV9F1xywDDgOFcvTaL9vC12cQUQhw126o,25088
115
+ nexaai/binds/npu/htp-files/libCalculator_skel.so,sha256=rD4LE4sow2yO51ef9zd60jIgeVMQuOD51s-v2xO_3E8,5600
116
+ nexaai/binds/npu/htp-files/libQnnHtpV73.so,sha256=Xm7dBOSpfbPvn0qU6tut_iyG1ONXEpePDXj92RmF300,11986280
117
+ nexaai/binds/npu/htp-files/libQnnHtpV73QemuDriver.so,sha256=FrvhuCQ54XU0rRBlgtd8CbojitFnuwhaQt7acDAdf-4,9332172
118
+ nexaai/binds/npu/htp-files/libQnnHtpV73Skel.so,sha256=pGFhVtbA1UjFscyK32wXaN4xhBs9RobBpq-NcEU8bSE,9311684
119
+ nexaai/binds/npu/htp-files/libQnnSaver.so,sha256=F8xQxrins4xuSQPEf2om-7kVjXw2vREx9F0ve0Ws3IQ,293736
120
+ nexaai/binds/npu/htp-files/libQnnSystem.so,sha256=etpCCdo99y1gLaRs79WaruVZz6sWVK70bWd8tTv5rx4,108340
121
+ nexaai/binds/npu/htp-files/libSnpeHtpV73Skel.so,sha256=v2q1ef7B8c2S__9lHAje7a3dc9LWUROFgLlaXZeR-xg,9592252
122
+ nexaai/binds/npu/htp-files/libqnnhtpv73.cat,sha256=RECsV8-Xhlo4bgiYw3RUIZ0M2JpA7WLFbcqeo6IhIu0,12167
123
+ nexaai/binds/npu/htp-files/libsnpehtpv73.cat,sha256=hNtz9-i_cZjR5xLVEI_56jjD8pQrKqR3xMqykN_nVlg,12189
124
+ nexaai/cv_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
+ nexaai/cv_impl/mlx_cv_impl.py,sha256=gKECQOv8iaWwG3bl7xeqVy2NN_9K7tYerIFzfn4eLo4,3228
126
+ nexaai/cv_impl/pybind_cv_impl.py,sha256=uSmwBste4cT7c8DQmXzRLmzwDf773PAbXNYWW1UzVls,1064
127
+ nexaai/embedder_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ nexaai/embedder_impl/mlx_embedder_impl.py,sha256=pFPraUAjm9EVvVbwIp1cjbtXUysF5pqxEcK2CAFvcDw,4639
129
+ nexaai/embedder_impl/pybind_embedder_impl.py,sha256=lFpf0wI2d7kfO2GUyUuUS1U2L_PyZMJVGmAvF8EuQ0g,3653
130
+ nexaai/image_gen_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
+ nexaai/image_gen_impl/mlx_image_gen_impl.py,sha256=BuDkksvXyb4J02GsdnbGAmYckfUU0Eah6BimoMD3QqY,11219
132
+ nexaai/image_gen_impl/pybind_image_gen_impl.py,sha256=ms34VYoD5AxZFG6cIG0QAJDjCtfphaZ1bHzKzey1xF8,3692
133
+ nexaai/llm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
+ nexaai/llm_impl/mlx_llm_impl.py,sha256=dPtaEribluHZZY_f9M114glcQhtDEckukw4Sfd5zJos,11296
135
+ nexaai/llm_impl/pybind_llm_impl.py,sha256=-OFruPYQlAQvy0py6JoBQapBLbRCSgwuZ84WymHtLT0,8163
136
+ nexaai/rerank_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
+ nexaai/rerank_impl/mlx_rerank_impl.py,sha256=3nbqCdzyAugc4P_6K9mowEgy4LFdfzhy7GUvn9GMpSE,3377
138
+ nexaai/rerank_impl/pybind_rerank_impl.py,sha256=tmzrpRYCCV3ATxbE9G1Io6SUtgYPO8BFe48nTae6_xw,4490
139
+ nexaai/tts_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
+ nexaai/tts_impl/mlx_tts_impl.py,sha256=i_uNPdvlXYtL3e01oKjDlP9jgkWCRt1bBHsExaaiJi8,3101
141
+ nexaai/tts_impl/pybind_tts_impl.py,sha256=mpn44r6pfYLIl-NrEy2dXHjGtWtNCmM7HRyxiANxUI4,1444
142
+ nexaai/utils/decode.py,sha256=61n4Zf6c5QLyqGoctEitlI9BX3tPlP2a5aaKNHbw3T4,404
143
+ nexaai/utils/manifest_utils.py,sha256=OOp_BmFWH1ZHMYkS2VGAby5Rpm4f4GLCRBJEBYm-kys,21489
144
+ nexaai/utils/model_manager.py,sha256=OnL87zCPn3cBcScCKo-bHnBUpr24-Po293QC6Bwgx1Q,66112
145
+ nexaai/utils/model_types.py,sha256=ONWjjo8CFPdhxki6qo7MXnSZaEzjBcxa_Kkf_y5NXus,1483
146
+ nexaai/utils/progress_tracker.py,sha256=jdUqtmPqyhwC9uSKvQcJEYETwSt-OhP4oitdJ94614o,15394
147
+ nexaai/utils/quantization_utils.py,sha256=FYcNSAKGlBqFDUTx3jSKOr2lnq4nyiyC0ZG8oSxFwiU,7825
148
+ nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
+ nexaai/vlm_impl/mlx_vlm_impl.py,sha256=sgHqnX5OCSGLccCnTuRiktIbqThNn3AAIvYE2_Dy4TI,10833
150
+ nexaai/vlm_impl/pybind_vlm_impl.py,sha256=stJKHdhYhBuWUQkky-nHgCv625qDB_1geI3v5BLNGpM,9765
151
+ nexaai-1.0.21rc16.dist-info/METADATA,sha256=Q4uPjPtrdcI55-RFjAf_zB4Nw0sPX3deFX-tFXYBXj8,1219
152
+ nexaai-1.0.21rc16.dist-info/WHEEL,sha256=QL7uMKXoDJRpSwAf1VOVpjVXYPYll2YWTJ-omqdO8-4,101
153
+ nexaai-1.0.21rc16.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
154
+ nexaai-1.0.21rc16.dist-info/RECORD,,
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,162 +0,0 @@
1
- nexaai/__init__.py,sha256=Yt2YPVcRfwdA6DQoUR4ZI34CHBUYoY2cVsrG7Zp6IrI,2516
2
- nexaai/_stub.cp313-win_arm64.pyd,sha256=Ej7Sk8UD6q5EFqVIB2fXoO3F-QZltzqfmRIFKo0zSQ0,10240
3
- nexaai/_version.py,sha256=EPC43o1wJ_Cd_Om7fgz6NJJ2xjfxwnvHGpWvEgc5Nx8,25
4
- nexaai/asr.py,sha256=eeFMFKsaEKiJ2PCGmgedRR4fTfrhaDcnZBuhCChMAio,2148
5
- nexaai/base.py,sha256=qQBCiQVNzgpkQjZX9aiFDEdbAAe56TROKC3WnWra2Zg,1021
6
- nexaai/common.py,sha256=XRwjvRNxS2xRVb0CMR5NbPQ4E-PAewJ0m6VGbZOw19A,3565
7
- nexaai/cv.py,sha256=PhgqK5hO8FlXLR6QxE_pHtXjdtzLSEPzkCda-qrNpOs,3395
8
- nexaai/embedder.py,sha256=fzIdlE52SSVNurIFZgf9gKtRf2SXysARsETQmkiCWs0,2625
9
- nexaai/image_gen.py,sha256=_kLLCbvhc30a-YGidkB13ZXYoPOS-sKMo8bKVRkUado,4526
10
- nexaai/llm.py,sha256=woB98NQmaNf3_BH0Ogig3niU1rcD8YtHPiSpzyrbVmo,3771
11
- nexaai/log.py,sha256=F_Qe169kLbnFV25WJmS_ZtmBfOdcGic8BYFIsYVoD_o,2720
12
- nexaai/rerank.py,sha256=kzNpC3RG6fr1WnG60fm0ixuORBeG7gq90h6BnS9vIK4,2025
13
- nexaai/runtime.py,sha256=_BoAtTUv5ZR7wtOlJL5TldR3AZTP0OnMWjB9p71k-8E,2135
14
- nexaai/runtime_error.py,sha256=7TvjMJO7MpvVRQCYEDwcFPOgZsIILQtN-ZJ74JlARrE,803
15
- nexaai/tts.py,sha256=5lEzv50Q5iLTNHLg3kX-4J_mi1T_t-rVdZzOwd6sALY,2271
16
- nexaai/vlm.py,sha256=uglZ5g0VFizwIYOYjXg-LNrr5baFanTRlAppEkkF-Yw,4929
17
- nexaai/asr_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- nexaai/asr_impl/mlx_asr_impl.py,sha256=XwMX3LYMeulp8cDS0TCCYcjvttFHAyDWQ_oMvABwQmI,3349
19
- nexaai/asr_impl/pybind_asr_impl.py,sha256=20o5SOPzhF9x41ra8L_qIM7YxCkYeLb5csSrNde-dds,1560
20
- nexaai/binds/__init__.py,sha256=GA7iQMqrGSH1U4DSGzrjwt0rqw25F_9nSjNNhw0FSto,136
21
- nexaai/binds/common_bind.cp313-win_arm64.pyd,sha256=foyJs9iI3AMdhFqKXlytWbNz7l5yVTSPGJhLQHSg-Es,326144
22
- nexaai/binds/embedder_bind.cp313-win_arm64.pyd,sha256=4SY-qN-u27MjMlWCsD6hhvLZVW8pAqn9ePemAQXgzZc,277504
23
- nexaai/binds/libcrypto-3-arm64.dll,sha256=FJt4IgWdDXZvWqnPsCmPcag1aNhnhsK5q8GgufdAaJ8,7300096
24
- nexaai/binds/libssl-3-arm64.dll,sha256=W3hdVzKm3NKJe1dya0UKvdOca5EnxQdG28xrVo_xroM,1723904
25
- nexaai/binds/llm_bind.cp313-win_arm64.pyd,sha256=xZu3Ou044xBkN19jWJWRfmwcXG5ksHs15Jh-kIBtGI4,251904
26
- nexaai/binds/nexa_bridge.dll,sha256=_gpMtY2wkyYGnboXRVRU8yh88-0gg9h4V_AYx88rZPw,452096
27
- nexaai/binds/rerank_bind.cp313-win_arm64.pyd,sha256=sWr0FQuJMKMFsG8P2o9eIY-L3YTEVrsOs_0g6IU9F4c,272384
28
- nexaai/binds/vlm_bind.cp313-win_arm64.pyd,sha256=5HoKN1b7ee5eU0Gkbj7s3GDrX8q11oW8nrRHLSDBO90,263680
29
- nexaai/binds/cpu_gpu/ggml-base.dll,sha256=danPDLSirmnBhKz61zvVkUtPZ8B5Zoix8gqAT-hdsts,480256
30
- nexaai/binds/cpu_gpu/ggml-cpu.dll,sha256=UMuYc1k41ksybxP0vUymfkRyt5aebJwf89Tghfu38ok,512512
31
- nexaai/binds/cpu_gpu/ggml-opencl.dll,sha256=J-L1qnmMyRaqlMAp9kLQwzYtmoReiSOtLzV_X89-6Oo,632832
32
- nexaai/binds/cpu_gpu/ggml.dll,sha256=6UuyAync23xzBlIOCgWKj3aiialR2HhxgBtLqH6jTYA,95744
33
- nexaai/binds/cpu_gpu/libomp140.aarch64.dll,sha256=0mSWmPxoRm7ojPWK46sPqxBvKTJug6qqVkPTBlGpYuM,599504
34
- nexaai/binds/cpu_gpu/mtmd.dll,sha256=y81PY-j86puGASbsevzrxxGb0ugcabHn070m_wX1Haw,549376
35
- nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll,sha256=WnjXaqMeiACAf3T8Sc13ZThLn8c8GXUgb5xtPNfLifQ,1629184
36
- nexaai/binds/cpu_gpu/nexa_plugin.dll,sha256=VT903hEVnW5m9d3jztMiepVv-EzSg7-9iIuXFhjtnmU,2332160
37
- nexaai/binds/nexaml/FLAC.dll,sha256=KieFm07q-TkzZ-NoOzaLutkwlMoYNnMD3IuI1iMAt9s,224256
38
- nexaai/binds/nexaml/fftw3.dll,sha256=tDAt5qa3LM22H-y8iYq1Q6RQfZsYeQPRZASkH19jIJM,569344
39
- nexaai/binds/nexaml/fftw3f.dll,sha256=ckM6visO8sMBCx7vd5cGYFVySO5eYcSeEyrquKDBPg4,565760
40
- nexaai/binds/nexaml/ggml-base.dll,sha256=danPDLSirmnBhKz61zvVkUtPZ8B5Zoix8gqAT-hdsts,480256
41
- nexaai/binds/nexaml/ggml-cpu.dll,sha256=UMuYc1k41ksybxP0vUymfkRyt5aebJwf89Tghfu38ok,512512
42
- nexaai/binds/nexaml/ggml-opencl.dll,sha256=J-L1qnmMyRaqlMAp9kLQwzYtmoReiSOtLzV_X89-6Oo,632832
43
- nexaai/binds/nexaml/ggml.dll,sha256=6UuyAync23xzBlIOCgWKj3aiialR2HhxgBtLqH6jTYA,95744
44
- nexaai/binds/nexaml/libmp3lame.DLL,sha256=S-xvrZtyOOCWIJ1FkcSsQgyXNwu9TfZyT49nhJIUXL8,320000
45
- nexaai/binds/nexaml/mpg123.dll,sha256=koE52qKRgriYueOmngg1XJBkF46ayY_vXL_qcHCrGGw,253440
46
- nexaai/binds/nexaml/nexa-mm-process.dll,sha256=U30rhFOx1mqFJb_jS0DLaPr2lHjLKBnZ5iT5_EY7Nbs,5166080
47
- nexaai/binds/nexaml/nexa-sampling.dll,sha256=ORc76G--N3anRBxee1ez__GIpax784j9tviyNqN0_QY,3791360
48
- nexaai/binds/nexaml/nexa_plugin.dll,sha256=D-7OuseDGyXpeJVGocRpz4nvmQWR4_vByQKL8Kqcxhs,744448
49
- nexaai/binds/nexaml/nexaproc.dll,sha256=D85VPLmhVBVd4AuNfuvRcAYrlVBQfEb-6tpO29X5bEY,1111552
50
- nexaai/binds/nexaml/ogg.dll,sha256=bgpqQM-OLactFaqZYmZcIDjkaTRCinrny8_6SBUU8B0,30720
51
- nexaai/binds/nexaml/opus.dll,sha256=yMljsUvjOuEIP-3GU4Bl1SNrmQ0hSjYz-66pd2Tceww,333824
52
- nexaai/binds/nexaml/qwen3-vl.dll,sha256=t3fmu-NRnPCh6E3ybS8C6i2_4Wm0Pr8C385-ZdTbAO4,4449792
53
- nexaai/binds/nexaml/qwen3vl-vision.dll,sha256=DsnR7n_5_mfYC1A9KMr7PbTxOXtHOq75dd8xjB8UoIE,546816
54
- nexaai/binds/nexaml/vorbis.dll,sha256=I-dM07E1rTZGzuhtnDvziChdUCuMGh1pBamHEUxxCHA,691200
55
- nexaai/binds/nexaml/vorbisenc.dll,sha256=kOLDGx90EC3pNFE7H_SmDN47yRtTwWzfNRCkJrtU7gs,561152
56
- nexaai/binds/npu/FLAC.dll,sha256=KieFm07q-TkzZ-NoOzaLutkwlMoYNnMD3IuI1iMAt9s,224256
57
- nexaai/binds/npu/embed-gemma-sdk.dll,sha256=bSLjR8ilH036J9ScE2CJEwl3k5ZpCpeN9dY7lyxmgU0,4309504
58
- nexaai/binds/npu/fftw3.dll,sha256=UHNc9Fdpo50qWP6jOIVftyGJeoFbExBV4taNrI-rcG8,569856
59
- nexaai/binds/npu/fftw3f.dll,sha256=Qeeq1HxRdRReCBihEpEBz4AfcPrJZ994u1hy4OwSv5M,565760
60
- nexaai/binds/npu/granite4-sdk.dll,sha256=9PbRk3fE1FLuHm_Sdz8ffzlx6MnAkoHW3MKd4IVXXW8,4399104
61
- nexaai/binds/npu/jina-rerank-sdk.dll,sha256=XjFPKkEznUviP4U9sBvLbqds1FMUzVNrw08_OrW3XCA,4260352
62
- nexaai/binds/npu/libcrypto-3-arm64.dll,sha256=Zdx-VmPlmvRbagtlOdhjOsmZSGTcRoUCm_K-_6XcDe8,7309432
63
- nexaai/binds/npu/libmp3lame.DLL,sha256=ema4xU_fXnvSXmq5W2_EWdDJ6ZBP0idzsSeEnSGFpPI,320512
64
- nexaai/binds/npu/libomp140.aarch64.dll,sha256=0mSWmPxoRm7ojPWK46sPqxBvKTJug6qqVkPTBlGpYuM,599504
65
- nexaai/binds/npu/libssl-3-arm64.dll,sha256=YbBpztXYi15lGe445EyV9DL0Q4rI0k23gta1dXFKs3c,1734264
66
- nexaai/binds/npu/llama3-3b-sdk.dll,sha256=qZ_C3KKAAVH4H4iNMruEtxv3nq41cWHP9b3X2nPF6JA,4402688
67
- nexaai/binds/npu/mpg123.dll,sha256=1iTmvrgIVievsDXO1RaWLntnE-TIAVPpbqEV8C-yaC0,253952
68
- nexaai/binds/npu/nexa-mm-process.dll,sha256=UyfQK1ij4gDUN-stOaczIKNIr4-YZSu38zQUVQI9DPM,5152768
69
- nexaai/binds/npu/nexa-sampling.dll,sha256=BF1MuTIeO7TvVJTemT6Gq0FtIoTUl1vzlQtcH3yzL2c,3827712
70
- nexaai/binds/npu/nexa_plugin.dll,sha256=isiNM9U6DjTaqSVV-aOnpbPfNwjH__ymVZZ91zFhC6k,862720
71
- nexaai/binds/npu/nexaproc.dll,sha256=uWp5ENzDwlavO06t4SfcKBnc7JlF1OmAGsJCrV39TCw,2561024
72
- nexaai/binds/npu/ogg.dll,sha256=bgpqQM-OLactFaqZYmZcIDjkaTRCinrny8_6SBUU8B0,30720
73
- nexaai/binds/npu/omni-neural-sdk.dll,sha256=wlHRaPF9i8Vt5m6ryiGNl8rsjsoZolKuoqxmh2c82rk,4922880
74
- nexaai/binds/npu/opus.dll,sha256=yMljsUvjOuEIP-3GU4Bl1SNrmQ0hSjYz-66pd2Tceww,333824
75
- nexaai/binds/npu/paddle-ocr-proc-lib.dll,sha256=GP3Vf3LWOQFCa1qz0O7AGvReEglIaqp463nuPGkn05k,2165760
76
- nexaai/binds/npu/paddleocr-sdk.dll,sha256=7XA7_FqjUpVI2zGc77f1erWY4H5rSXrP7rSjgzarwUc,1204736
77
- nexaai/binds/npu/parakeet-sdk.dll,sha256=zmasgaNOw1AhQ9Mx4SAYnm-FL-F0zhQjSwTkPWFAFjc,1402880
78
- nexaai/binds/npu/phi3-5-sdk.dll,sha256=7OcCesvNOTHUcbFLtl5sxaTcwx0yOqQDxXe_vULzUHE,4502016
79
- nexaai/binds/npu/phi4-sdk.dll,sha256=B6YYdDVdtJvni_o4CWeYARfTVMJNFtNYm7wu-3T6hCY,4504576
80
- nexaai/binds/npu/qwen3-4b-sdk.dll,sha256=fzWGYF56X6-TmToEeKq28hMuFLB979iSxrxE_Zgps6U,4496896
81
- nexaai/binds/npu/qwen3vl-sdk.dll,sha256=uxqxcouKTF-9jNJ2z87erYbbtCSxjmrts2M_1XFTtwk,5172224
82
- nexaai/binds/npu/qwen3vl-vision.dll,sha256=_qw0MlyS6WXQsuZfMbcER0YJ1JLXergqSxv20woNIU0,1689088
83
- nexaai/binds/npu/rtaudio.dll,sha256=Yt_BpQh3lfZVe5Xvg52dM1EdHAluPonGHCKj7XeeGYs,97280
84
- nexaai/binds/npu/vorbis.dll,sha256=I-dM07E1rTZGzuhtnDvziChdUCuMGh1pBamHEUxxCHA,691200
85
- nexaai/binds/npu/vorbisenc.dll,sha256=kOLDGx90EC3pNFE7H_SmDN47yRtTwWzfNRCkJrtU7gs,561152
86
- nexaai/binds/npu/yolov12-sdk.dll,sha256=i4iSXn1K8dc3wctYUcBb1z4yeviTU4xCSHECv7TmRao,1169920
87
- nexaai/binds/npu/htp-files/Genie.dll,sha256=v9NBdDjaVqEpfIAaeoeRig8LopOJF1jR-_7mT55oN7Y,6076928
88
- nexaai/binds/npu/htp-files/PlatformValidatorShared.dll,sha256=cs78NOSkmbE4llNDQqeQRaWpGvpFAlizwMQ9ggvAKIU,10964992
89
- nexaai/binds/npu/htp-files/QnnChrometraceProfilingReader.dll,sha256=3BTgItZm3pgHQE1mmsiQ2uGOKxazgkEQ5kh_z4cimMA,274432
90
- nexaai/binds/npu/htp-files/QnnCpu.dll,sha256=kmiMA59uqDHxur4rX4t9fWtnhAUsWrCl5LwyyHI4Uqc,3850240
91
- nexaai/binds/npu/htp-files/QnnCpuNetRunExtensions.dll,sha256=bHEa156SDlyNMBv_7TQZv7KwGIlEBibCGDH5dTJcb_E,253952
92
- nexaai/binds/npu/htp-files/QnnDsp.dll,sha256=CkCfYYbNTqHin5D7l23OBae_AkQyxE7mEtkNBA_tlNo,1283584
93
- nexaai/binds/npu/htp-files/QnnDspNetRunExtensions.dll,sha256=vZu_opnOqBOcpQONVK7elJuDJFwG0i2_16jB__RNTWM,267264
94
- nexaai/binds/npu/htp-files/QnnDspV66CalculatorStub.dll,sha256=aAtfYoz6sqQ6TmyJFLSWEK4fSxm76oGQL8zVGx67Bc0,25088
95
- nexaai/binds/npu/htp-files/QnnDspV66Stub.dll,sha256=r0umMfezlzQ8M6y6vu6SvFr1u-uGu1Fa5mS3U-P4lwQ,74752
96
- nexaai/binds/npu/htp-files/QnnGenAiTransformer.dll,sha256=tNbgqKmIIIdaMJu2dSPLJ4jNovx0RSmvMBQacsOoQDE,516096
97
- nexaai/binds/npu/htp-files/QnnGenAiTransformerCpuOpPkg.dll,sha256=HG6i7MTgArwR2w7ZgmDJQ-O-S2AJ1vL5GhEoTYJDrVk,461312
98
- nexaai/binds/npu/htp-files/QnnGenAiTransformerModel.dll,sha256=-y8VLwNGBFz9oPK6mnwruCEFtUNO02II2VzNwKtI_3U,65024
99
- nexaai/binds/npu/htp-files/QnnGpu.dll,sha256=VwZ3xXa0M9v9diuwZ1uIAQbHACS_-fBQPsoPUJV175w,5603840
100
- nexaai/binds/npu/htp-files/QnnGpuNetRunExtensions.dll,sha256=YA-gRxyvdXphMDDwliGwpktDGzYU91PS6abQQUNEuVY,263168
101
- nexaai/binds/npu/htp-files/QnnGpuProfilingReader.dll,sha256=4vWngql0p7PgoDzj5F7Bo2WiNE0PCrRkZA4PfSvorms,275456
102
- nexaai/binds/npu/htp-files/QnnHtp.dll,sha256=tjHfezKmyn8CP28J8_sDcah43YsrFmyA5871TaW9EMk,2169344
103
- nexaai/binds/npu/htp-files/QnnHtpNetRunExtensions.dll,sha256=m7pe982DUa6jEIQFeTE6h6XQsfiEm2CSDV8SuWWYrok,835584
104
- nexaai/binds/npu/htp-files/QnnHtpOptraceProfilingReader.dll,sha256=IUu0psT3W7BmrLelgBh9qbXAMiecn2rjXorOo3tgoUM,2953728
105
- nexaai/binds/npu/htp-files/QnnHtpPrepare.dll,sha256=tSb9W0ZipdDk-GxLKAc5GD_oYIp6UdURaU0VOg89SGc,62590464
106
- nexaai/binds/npu/htp-files/QnnHtpProfilingReader.dll,sha256=PEAxdFsZZBbbi_93-kbmedNLuCc3OMWDDvwciYJm4a4,255488
107
- nexaai/binds/npu/htp-files/QnnHtpV68CalculatorStub.dll,sha256=r_GE12WQ3-EV9F1xywDDgOFcvTaL9vC12cQUQhw126o,25088
108
- nexaai/binds/npu/htp-files/QnnHtpV68Stub.dll,sha256=TUbCCNalMU8nV1FxxujOLxQ9bfwq74nL_mUWwCJzk4c,171520
109
- nexaai/binds/npu/htp-files/QnnHtpV73CalculatorStub.dll,sha256=d_3wvJhKziDWzDwyk7fdaHGZE_dH5G2rC1ScFITMNJw,25088
110
- nexaai/binds/npu/htp-files/QnnHtpV73Stub.dll,sha256=aT1mKepe7SU31VeNXYP2LOPl0XnUpXFU-y4OVDrkm8A,328704
111
- nexaai/binds/npu/htp-files/QnnIr.dll,sha256=6pBAZwmn99sHXL3BgRcFH33QR0PC85mzstnSoTCFttM,1424384
112
- nexaai/binds/npu/htp-files/QnnJsonProfilingReader.dll,sha256=Blr0B7sz9QQHGSddTko8t9GhFSBnjtnJ9PLEJpt-NAQ,315392
113
- nexaai/binds/npu/htp-files/QnnModelDlc.dll,sha256=DMVptJnucEv8tuve-6az3zm712mUgzTFDVNvXulv72A,2192896
114
- nexaai/binds/npu/htp-files/QnnSaver.dll,sha256=FIIQicCQ1-CWJYe01Qy01CTYpdiMUbiUFemmzFAK4FU,573440
115
- nexaai/binds/npu/htp-files/QnnSystem.dll,sha256=yDMNu93p52Rv7KLD72o0WRmj64cEEHI4KUHoJyISB8A,2276352
116
- nexaai/binds/npu/htp-files/SNPE.dll,sha256=SfCIJXgkD-evK7wXVyxFJBy4Na9X8Wuto3ZUlpOcHyw,17891840
117
- nexaai/binds/npu/htp-files/SnpeDspV66Stub.dll,sha256=4Z5I0Cxwo6-_sWETe6oEBco6F2DSFeI5iLb5kDsFVGY,1084416
118
- nexaai/binds/npu/htp-files/SnpeHtpPrepare.dll,sha256=_-PuRSyBHXoI4zDEXpQQZwof6vlyyeCysxHZxKPUIJU,62590464
119
- nexaai/binds/npu/htp-files/SnpeHtpV68Stub.dll,sha256=jEWgCA4afTuHckgkPLonxpVzw0jeuLXofNDrbhNDh1o,171520
120
- nexaai/binds/npu/htp-files/SnpeHtpV73Stub.dll,sha256=BETBjJ0FliASy5V9DSGyXUO4qhYgk4VV43Al3oIYZSA,328704
121
- nexaai/binds/npu/htp-files/calculator.dll,sha256=aAtfYoz6sqQ6TmyJFLSWEK4fSxm76oGQL8zVGx67Bc0,25088
122
- nexaai/binds/npu/htp-files/calculator_htp.dll,sha256=r_GE12WQ3-EV9F1xywDDgOFcvTaL9vC12cQUQhw126o,25088
123
- nexaai/binds/npu/htp-files/libCalculator_skel.so,sha256=rD4LE4sow2yO51ef9zd60jIgeVMQuOD51s-v2xO_3E8,5600
124
- nexaai/binds/npu/htp-files/libQnnHtpV73.so,sha256=Xm7dBOSpfbPvn0qU6tut_iyG1ONXEpePDXj92RmF300,11986280
125
- nexaai/binds/npu/htp-files/libQnnHtpV73QemuDriver.so,sha256=FrvhuCQ54XU0rRBlgtd8CbojitFnuwhaQt7acDAdf-4,9332172
126
- nexaai/binds/npu/htp-files/libQnnHtpV73Skel.so,sha256=pGFhVtbA1UjFscyK32wXaN4xhBs9RobBpq-NcEU8bSE,9311684
127
- nexaai/binds/npu/htp-files/libQnnSaver.so,sha256=F8xQxrins4xuSQPEf2om-7kVjXw2vREx9F0ve0Ws3IQ,293736
128
- nexaai/binds/npu/htp-files/libQnnSystem.so,sha256=etpCCdo99y1gLaRs79WaruVZz6sWVK70bWd8tTv5rx4,108340
129
- nexaai/binds/npu/htp-files/libSnpeHtpV73Skel.so,sha256=v2q1ef7B8c2S__9lHAje7a3dc9LWUROFgLlaXZeR-xg,9592252
130
- nexaai/binds/npu/htp-files/libqnnhtpv73.cat,sha256=RECsV8-Xhlo4bgiYw3RUIZ0M2JpA7WLFbcqeo6IhIu0,12167
131
- nexaai/binds/npu/htp-files/libsnpehtpv73.cat,sha256=hNtz9-i_cZjR5xLVEI_56jjD8pQrKqR3xMqykN_nVlg,12189
132
- nexaai/cv_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
- nexaai/cv_impl/mlx_cv_impl.py,sha256=QLd_8w90gtxH8kmssaDYatCTRvQNIJuUGKZNnYrmx6E,3317
134
- nexaai/cv_impl/pybind_cv_impl.py,sha256=aSOCAxmHrwJbEkSN6VX3Cykqlj_9RIpVrZXILul04GA,1096
135
- nexaai/embedder_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
- nexaai/embedder_impl/mlx_embedder_impl.py,sha256=WWTQrUWEMq1kLGg4CBQyu59zD2hIptghVEQXQAcx7hM,4757
137
- nexaai/embedder_impl/pybind_embedder_impl.py,sha256=Xsf4nczEzpRDqdx96DEu5GwLxGcSV06ZVnEV3a5-q68,3749
138
- nexaai/image_gen_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
139
- nexaai/image_gen_impl/mlx_image_gen_impl.py,sha256=peUE9ue9ApaPlZVOICBWiHtd13sY40OWQbE8EjfIUMU,11511
140
- nexaai/image_gen_impl/pybind_image_gen_impl.py,sha256=514RFQMSO0Rhacq0IYzlEhEr6QfaprnGew0Rjz8HZI4,3777
141
- nexaai/llm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
142
- nexaai/llm_impl/mlx_llm_impl.py,sha256=qJY0zwb6jfVFQnTsp1W7BDnIMdgcJlqnU5UJgSoU-Vs,11567
143
- nexaai/llm_impl/pybind_llm_impl.py,sha256=zzZZ2FovnNn9EJxjovNhLI_SDjt3MAXMi8jsR6N57Ng,8359
144
- nexaai/rerank_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- nexaai/rerank_impl/mlx_rerank_impl.py,sha256=fZtf9lKT6dCiiFUmRkm4EDWRPTkRBl7pG3mHEZMp6_o,3471
146
- nexaai/rerank_impl/pybind_rerank_impl.py,sha256=_1pkeD76kZK-S-2IFJzRxvxvQdgoS3Yi2WhIbWq4bxU,4626
147
- nexaai/tts_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
148
- nexaai/tts_impl/mlx_tts_impl.py,sha256=LcH9bVdIl3Q6lOzSUB_X2s-_nWFmlCl1yL7XSUK0fYI,3195
149
- nexaai/tts_impl/pybind_tts_impl.py,sha256=n3z4zmPQayQJgAwcvETw0IBUCp8IYROuYFSg0tAy_8Y,1487
150
- nexaai/utils/decode.py,sha256=0Z9jDH4ICzw4YXj8nD4L-sMouDaev-TISGRQ4KzidWE,421
151
- nexaai/utils/manifest_utils.py,sha256=BoKqnI6N5CkEPTDZCRWSx7wga6aH8h6cr4nbff7gVwg,22020
152
- nexaai/utils/model_manager.py,sha256=7T_UKinRrZyNXYwJUjada81MHf2eMPgUD_DrDHMNox4,67678
153
- nexaai/utils/model_types.py,sha256=q2m7diYLOpLvRl1ixL2eMq5_kdTj8KqPBGWX4p6Ob08,1532
154
- nexaai/utils/progress_tracker.py,sha256=BztrFqtjwNUmeREwZ5m7H6ZcrVzQEbpZfsxndWh4z0A,15778
155
- nexaai/utils/quantization_utils.py,sha256=FxnZ6-uAE_bl_vQ5jsRXlpU0NBn-U4Y8iN9_O6aCdPA,8070
156
- nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
157
- nexaai/vlm_impl/mlx_vlm_impl.py,sha256=gI09QJcok68QG-36csXr3c2yPCZXTE0dlq1MUBEo_Ms,11091
158
- nexaai/vlm_impl/pybind_vlm_impl.py,sha256=w8gAZNW2lk3mCKolg4iKgD58RhHCEk4v9aYI1RwVGqc,10021
159
- nexaai-1.0.21rc5.dist-info/METADATA,sha256=Q9HoGXvCpAaEI1l53jSQJQThZC3Ob-Dv-8g759MxIw4,1218
160
- nexaai-1.0.21rc5.dist-info/WHEEL,sha256=QL7uMKXoDJRpSwAf1VOVpjVXYPYll2YWTJ-omqdO8-4,101
161
- nexaai-1.0.21rc5.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
162
- nexaai-1.0.21rc5.dist-info/RECORD,,