nexaai 1.0.21rc14__cp313-cp313-win_arm64.whl → 1.0.22__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 (43) hide show
  1. nexaai/_stub.cp313-win_arm64.pyd +0 -0
  2. nexaai/_version.py +1 -1
  3. nexaai/binds/asr_bind.cp313-win_arm64.pyd +0 -0
  4. nexaai/binds/common_bind.cp313-win_arm64.pyd +0 -0
  5. nexaai/binds/cpu_gpu/ggml-base.dll +0 -0
  6. nexaai/binds/cpu_gpu/ggml-cpu.dll +0 -0
  7. nexaai/binds/cpu_gpu/ggml-opencl.dll +0 -0
  8. nexaai/binds/cpu_gpu/ggml.dll +0 -0
  9. nexaai/binds/cpu_gpu/mtmd.dll +0 -0
  10. nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll +0 -0
  11. nexaai/binds/cpu_gpu/nexa_plugin.dll +0 -0
  12. nexaai/binds/embedder_bind.cp313-win_arm64.pyd +0 -0
  13. nexaai/binds/llm_bind.cp313-win_arm64.pyd +0 -0
  14. nexaai/binds/nexa_bridge.dll +0 -0
  15. nexaai/binds/npu/convnext-sdk.dll +0 -0
  16. nexaai/binds/npu/embed-gemma-sdk.dll +0 -0
  17. nexaai/binds/npu/ggml-base.dll +0 -0
  18. nexaai/binds/npu/ggml-cpu.dll +0 -0
  19. nexaai/binds/npu/ggml-opencl.dll +0 -0
  20. nexaai/binds/npu/ggml.dll +0 -0
  21. nexaai/binds/npu/granite-nano-sdk.dll +0 -0
  22. nexaai/binds/npu/granite4-sdk.dll +0 -0
  23. nexaai/binds/npu/jina-rerank-sdk.dll +0 -0
  24. nexaai/binds/npu/llama3-3b-sdk.dll +0 -0
  25. nexaai/binds/npu/nexa-mm-process.dll +0 -0
  26. nexaai/binds/npu/nexa_plugin.dll +0 -0
  27. nexaai/binds/npu/omni-neural-sdk.dll +0 -0
  28. nexaai/binds/npu/paddleocr-sdk.dll +0 -0
  29. nexaai/binds/npu/parakeet-sdk.dll +0 -0
  30. nexaai/binds/npu/phi3-5-sdk.dll +0 -0
  31. nexaai/binds/npu/phi4-sdk.dll +0 -0
  32. nexaai/binds/npu/pyannote-sdk.dll +0 -0
  33. nexaai/binds/npu/qwen3-4b-sdk.dll +0 -0
  34. nexaai/binds/npu/qwen3vl-sdk.dll +0 -0
  35. nexaai/binds/npu/yolov12-sdk.dll +0 -0
  36. nexaai/binds/rerank_bind.cp313-win_arm64.pyd +0 -0
  37. nexaai/binds/vlm_bind.cp313-win_arm64.pyd +0 -0
  38. nexaai/llm_impl/pybind_llm_impl.py +1 -1
  39. nexaai/utils/model_manager.py +2 -0
  40. {nexaai-1.0.21rc14.dist-info → nexaai-1.0.22.dist-info}/METADATA +1 -1
  41. {nexaai-1.0.21rc14.dist-info → nexaai-1.0.22.dist-info}/RECORD +43 -43
  42. {nexaai-1.0.21rc14.dist-info → nexaai-1.0.22.dist-info}/WHEEL +0 -0
  43. {nexaai-1.0.21rc14.dist-info → nexaai-1.0.22.dist-info}/top_level.txt +0 -0
Binary file
nexaai/_version.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # This file is generated by CMake from _version.py.in
2
2
  # Do not modify this file manually - it will be overwritten
3
3
 
4
- __version__ = "1.0.21rc14"
4
+ __version__ = "1.0.22"
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
nexaai/binds/npu/ggml.dll CHANGED
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
@@ -77,7 +77,7 @@ class PyBindLLMImpl(LLM):
77
77
  {"role": m["role"], "content": m["content"]}
78
78
  for m in messages
79
79
  ]
80
- return llm_bind.ml_llm_apply_chat_template(self._handle, message_dicts)
80
+ return llm_bind.ml_llm_apply_chat_template(self._handle, message_dicts, tools, enable_thinking)
81
81
 
82
82
  def generate_stream(self, prompt: str, g_cfg: GenerationConfig = GenerationConfig()) -> Generator[str, None, None]:
83
83
  """Generate text with streaming."""
@@ -1495,6 +1495,8 @@ def auto_download_model(func: Callable) -> Callable:
1495
1495
  token = None
1496
1496
  if 'token' in kwargs:
1497
1497
  token = kwargs.pop('token') # Remove from kwargs to avoid passing to original func
1498
+ if token is None or token == '':
1499
+ token = os.getenv('HF_TOKEN') or os.getenv('NEXA_HFTOKEN')
1498
1500
 
1499
1501
  # Handle name_or_path parameter
1500
1502
  name_or_path = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nexaai
3
- Version: 1.0.21rc14
3
+ Version: 1.0.22
4
4
  Summary: Python bindings for NexaSDK C-lib backend
5
5
  Author-email: "Nexa AI, Inc." <dev@nexa.ai>
6
6
  Project-URL: Homepage, https://github.com/NexaAI/nexasdk-bridge
@@ -1,6 +1,6 @@
1
1
  nexaai/__init__.py,sha256=gOd7sNsqEESopw_24xgnOSkIRENrk4Fa-RMtmVv62eA,2421
2
- nexaai/_stub.cp313-win_arm64.pyd,sha256=3pqEpTZyptumA_eJns83fpS9RddOfWYem_DYTCd3vTQ,10240
3
- nexaai/_version.py,sha256=7bnE3zL4KgIovapOBYV61ITGdivL9E8kUxAftp10RBc,147
2
+ nexaai/_stub.cp313-win_arm64.pyd,sha256=_WotippIivUlFXSYo3aEmFK8u7ScSYR7mTlJ4uaTj38,10240
3
+ nexaai/_version.py,sha256=ivY4bEQ0jgel7C15vIMosfWJgA8mHuZ-du5RS_0fPko,143
4
4
  nexaai/asr.py,sha256=wqtq71cxIMGE4KvOIYZebHdWik8dy4LyKrDI98PDvzQ,2294
5
5
  nexaai/base.py,sha256=N8PRgDFA-XPku2vWnQIofQ7ipz3pPlO6f8YZGnuhquE,982
6
6
  nexaai/common.py,sha256=MRWZ6a7pnci_OUHxZRm3YqgKLAtZFD7b88STYDfeIF8,3460
@@ -18,63 +18,63 @@ nexaai/asr_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
18
  nexaai/asr_impl/mlx_asr_impl.py,sha256=eosd8-TIWAOwV0HltmoFrLwzXHcU4jyxtncvuZE9pgA,3257
19
19
  nexaai/asr_impl/pybind_asr_impl.py,sha256=FLOWIph37q_nIiNx8xYi-VnhQ6CrPuc4HFAJZQKc42w,4680
20
20
  nexaai/binds/__init__.py,sha256=2-Rr0NwyWygqwS8Xlxq0BJ2ltyID-WbGuzEYNlSanCI,155
21
- nexaai/binds/asr_bind.cp313-win_arm64.pyd,sha256=ny_5qBUjxv3OHXPSPLZJXLvCa54s0Dy65lQWNhe1mNY,267776
22
- nexaai/binds/common_bind.cp313-win_arm64.pyd,sha256=vzUwLMCINLDrXUnOfEbdOaAw4_uW9eB4ct6IcJUPnJE,291328
23
- nexaai/binds/embedder_bind.cp313-win_arm64.pyd,sha256=rZicuc-vsQZOQQ8ginMKLdPBbx4WfqaqWrqEeeSH_9Q,243712
21
+ nexaai/binds/asr_bind.cp313-win_arm64.pyd,sha256=_xk2Kr6cJ0-GqvI1NmcyAfogUGXzu3WCc1z4RtEvIBI,267776
22
+ nexaai/binds/common_bind.cp313-win_arm64.pyd,sha256=p6n80qgcssb7pBVNtghxGlaMEGO8ow-gage5sD7GsKU,291328
23
+ nexaai/binds/embedder_bind.cp313-win_arm64.pyd,sha256=hRwNzgBKO0RdyAKqOKQa6D9fROW3-WMnHucO2tciHGE,243712
24
24
  nexaai/binds/libcrypto-3-arm64.dll,sha256=jl9ZGYpUKEfkqU2HosjSJQ4Mg0tQdkEka7mKI371NcQ,7297536
25
25
  nexaai/binds/libssl-3-arm64.dll,sha256=GeAhDqjiuxhc792cpJIzjEx03noAWUM6R3w2ekHKnJw,1722368
26
- nexaai/binds/llm_bind.cp313-win_arm64.pyd,sha256=mpCs76Wo9-Sa-O04tafa4Qx25QIz4Idma_2lh9X9-cA,222208
27
- nexaai/binds/nexa_bridge.dll,sha256=iNrCnlSHr0ul0Apv-eOtzVfI8rKucQkwRo5R7lrY3CI,231936
28
- nexaai/binds/rerank_bind.cp313-win_arm64.pyd,sha256=15MTJLMDBVN7G2H26OnLizBQQM-JUiSBhrimFBCYDh0,239616
29
- nexaai/binds/vlm_bind.cp313-win_arm64.pyd,sha256=A1uDOkNlJJlO_EfZKo-O3vmmpMT0VLh4a_Wo9Nz8Q4Y,237568
30
- nexaai/binds/cpu_gpu/ggml-base.dll,sha256=meFmqL2EzafrZYFlHXBZFpkCU0-3yw0N9iMAIvDDGH4,537600
31
- nexaai/binds/cpu_gpu/ggml-cpu.dll,sha256=bnQc6gFPyaZHT_O02Fg5hqU7eFYNIz0zzruUmBpNJWY,587776
32
- nexaai/binds/cpu_gpu/ggml-opencl.dll,sha256=67YyPEFgEXz-qfthi9dFLMXvfMA_n0JaRNdo2d1rfHQ,713216
33
- nexaai/binds/cpu_gpu/ggml.dll,sha256=1z8kKwj7bA9tu4En02T7v69DVg0k3ySUYpQO687rpV8,70656
26
+ nexaai/binds/llm_bind.cp313-win_arm64.pyd,sha256=oYPXXgyEP5Sf_xCeYguKwOpHzDylopQIHzF2qBVDzyY,226304
27
+ nexaai/binds/nexa_bridge.dll,sha256=1OVBPTUXchYJ0jgsnyKKAg5YUpDW5DQY_r3z-ITGlSE,231936
28
+ nexaai/binds/rerank_bind.cp313-win_arm64.pyd,sha256=9CXVkcQ0K1LArS6q7ow2ZpNYPmF5by4fY4qSop-nXkM,239616
29
+ nexaai/binds/vlm_bind.cp313-win_arm64.pyd,sha256=7b1RC5HxvBF2HsaVfgPg749JrfcNHjTKwlZRyKnAFb8,237568
30
+ nexaai/binds/cpu_gpu/ggml-base.dll,sha256=bm44hqqxLUWoVTAh5Bn907oEX27fE9AGyONjyzgoMQ4,534016
31
+ nexaai/binds/cpu_gpu/ggml-cpu.dll,sha256=n_c4_DXnjlLyWbQ-ooa55W8fuSgcrHMtiAvXqAWtzGo,555520
32
+ nexaai/binds/cpu_gpu/ggml-opencl.dll,sha256=apWnnRMKxcQVQQkbmANvGIff_DqKX0gJQFd3RBr3Tsc,620544
33
+ nexaai/binds/cpu_gpu/ggml.dll,sha256=cd41TMsQotwTjJehmMeWiLjI3dKrOgRcTaa9FbSRlxI,70656
34
34
  nexaai/binds/cpu_gpu/libomp140.aarch64.dll,sha256=0mSWmPxoRm7ojPWK46sPqxBvKTJug6qqVkPTBlGpYuM,599504
35
- nexaai/binds/cpu_gpu/mtmd.dll,sha256=EUy4-ZcJr4g6pr_f2iCjoo5UDHzYd1RhvMak4sUUieI,562688
36
- nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll,sha256=MN452FJi5gj2iKtVLmNPw3lMVMW5aMJ70FcVJoySt68,1640448
37
- nexaai/binds/cpu_gpu/nexa_plugin.dll,sha256=zFQYNTvmYaqJy4HO2CLzP6N5LFm_dbgnwIbmNt7qhfU,2262016
35
+ nexaai/binds/cpu_gpu/mtmd.dll,sha256=6b4siGku1zZsisde8l0EDVpDeDZMUZTgRGnRAqM2ojI,551936
36
+ nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll,sha256=mp2zBSIXcNQ2SoEunCDDZTfTmWLW9v87KNfFtUPIfSI,1581056
37
+ nexaai/binds/cpu_gpu/nexa_plugin.dll,sha256=J7UZuK9EsfvoTjV4s6UpRN5v70ZR3d9bYN7fYHhP0I8,2177024
38
38
  nexaai/binds/npu/FLAC.dll,sha256=KieFm07q-TkzZ-NoOzaLutkwlMoYNnMD3IuI1iMAt9s,224256
39
- nexaai/binds/npu/convnext-sdk.dll,sha256=rNW0zK5T57rvByqP2Wueg8YJZWe3x4v4t2vhM4bKno8,1217536
40
- nexaai/binds/npu/embed-gemma-sdk.dll,sha256=UbFx9ZO7qgxZZYrPTZsOchwfZXoMSBp9IAdfXc7rI7E,4683264
39
+ nexaai/binds/npu/convnext-sdk.dll,sha256=90dv6IKyGUnsW61V8byEVxn9sOkRT_bAoOjVr2QE7rU,1210368
40
+ nexaai/binds/npu/embed-gemma-sdk.dll,sha256=SIOpKs_9_XxvoflWR6KQtkUqwYa-fZt4wtPxIoifXJ8,4683264
41
41
  nexaai/binds/npu/fftw3.dll,sha256=UHNc9Fdpo50qWP6jOIVftyGJeoFbExBV4taNrI-rcG8,569856
42
42
  nexaai/binds/npu/fftw3f.dll,sha256=Qeeq1HxRdRReCBihEpEBz4AfcPrJZ994u1hy4OwSv5M,565760
43
- nexaai/binds/npu/ggml-base.dll,sha256=meFmqL2EzafrZYFlHXBZFpkCU0-3yw0N9iMAIvDDGH4,537600
44
- nexaai/binds/npu/ggml-cpu.dll,sha256=bnQc6gFPyaZHT_O02Fg5hqU7eFYNIz0zzruUmBpNJWY,587776
45
- nexaai/binds/npu/ggml-opencl.dll,sha256=67YyPEFgEXz-qfthi9dFLMXvfMA_n0JaRNdo2d1rfHQ,713216
46
- nexaai/binds/npu/ggml.dll,sha256=1z8kKwj7bA9tu4En02T7v69DVg0k3ySUYpQO687rpV8,70656
47
- nexaai/binds/npu/granite-nano-sdk.dll,sha256=H2ThNUaTaYa8U2qyDdXnSV3AAqHvq3aUx9q1gGBiitU,4732928
48
- nexaai/binds/npu/granite4-sdk.dll,sha256=yxERidj5_n0AvLcU75xExu1oKpLMkaGwgtalh4D_Ois,4771328
49
- nexaai/binds/npu/jina-rerank-sdk.dll,sha256=20JVebzkevccBm70dEh2kgH-V-y5SkNrFBdsZIYj9Rk,4632576
43
+ nexaai/binds/npu/ggml-base.dll,sha256=bm44hqqxLUWoVTAh5Bn907oEX27fE9AGyONjyzgoMQ4,534016
44
+ nexaai/binds/npu/ggml-cpu.dll,sha256=n_c4_DXnjlLyWbQ-ooa55W8fuSgcrHMtiAvXqAWtzGo,555520
45
+ nexaai/binds/npu/ggml-opencl.dll,sha256=apWnnRMKxcQVQQkbmANvGIff_DqKX0gJQFd3RBr3Tsc,620544
46
+ nexaai/binds/npu/ggml.dll,sha256=cd41TMsQotwTjJehmMeWiLjI3dKrOgRcTaa9FbSRlxI,70656
47
+ nexaai/binds/npu/granite-nano-sdk.dll,sha256=03FsvBYHRjd7ryR57Drf5PQ1R-A0qkmLtTIJJQGHfVo,4841984
48
+ nexaai/binds/npu/granite4-sdk.dll,sha256=aNlT_Db8CYO4-A6gegxINhU9VbiGAXkArenruym4Jvs,4735488
49
+ nexaai/binds/npu/jina-rerank-sdk.dll,sha256=End5A_pSnaswcjsmifuXkc41zZdl8c1HtA69lqjUFaM,4632576
50
50
  nexaai/binds/npu/libcrypto-3-arm64.dll,sha256=Zdx-VmPlmvRbagtlOdhjOsmZSGTcRoUCm_K-_6XcDe8,7309432
51
51
  nexaai/binds/npu/libmp3lame.DLL,sha256=ema4xU_fXnvSXmq5W2_EWdDJ6ZBP0idzsSeEnSGFpPI,320512
52
52
  nexaai/binds/npu/libomp140.aarch64.dll,sha256=0mSWmPxoRm7ojPWK46sPqxBvKTJug6qqVkPTBlGpYuM,599504
53
53
  nexaai/binds/npu/libssl-3-arm64.dll,sha256=YbBpztXYi15lGe445EyV9DL0Q4rI0k23gta1dXFKs3c,1734264
54
54
  nexaai/binds/npu/liquid-sdk.dll,sha256=la2-wwueKuq8gzNtb-PVbfXUXB7TkG04HFrPKrxwg9k,4849664
55
- nexaai/binds/npu/llama3-3b-sdk.dll,sha256=ynfB7OL2ylLsWpUjT4fPvQBO09zkMzIjxkoi3xBb5Xk,4774400
55
+ nexaai/binds/npu/llama3-3b-sdk.dll,sha256=C9SS6tYpll8yAb_xBqBkmweuVTk2aA-9sPE6DPlBl4Y,4738048
56
56
  nexaai/binds/npu/mpg123.dll,sha256=1iTmvrgIVievsDXO1RaWLntnE-TIAVPpbqEV8C-yaC0,253952
57
- nexaai/binds/npu/nexa-mm-process.dll,sha256=L2SmPS1pYjgaNJVbarvJNsNevLjf9WfwpoqsYPukNoM,5470208
57
+ nexaai/binds/npu/nexa-mm-process.dll,sha256=rZvP8d8eVjSqKGTkeoNV7Ill_gSjSzJ4XJ1p-Tt92rk,5470208
58
58
  nexaai/binds/npu/nexa-sampling.dll,sha256=eYclqTHNOGn8bEzS2yarCULnh1PwXsPgQO8ePGeZKx8,3795968
59
- nexaai/binds/npu/nexa_plugin.dll,sha256=JgIT22ef7uafolPm28-lSrRNNObZIC00SQq_F45fCDY,773632
59
+ nexaai/binds/npu/nexa_plugin.dll,sha256=oyUBGkvauQtydDx3fvZiVsX3k1rsBpHjSeo-gBgsQRs,773632
60
60
  nexaai/binds/npu/nexaproc.dll,sha256=uWp5ENzDwlavO06t4SfcKBnc7JlF1OmAGsJCrV39TCw,2561024
61
61
  nexaai/binds/npu/ogg.dll,sha256=bgpqQM-OLactFaqZYmZcIDjkaTRCinrny8_6SBUU8B0,30720
62
- nexaai/binds/npu/omni-neural-sdk.dll,sha256=oMuTqVXlFU8gmp4kGBazuUcGrpo7r4bED93sY826Nhk,5263360
62
+ nexaai/binds/npu/omni-neural-sdk.dll,sha256=jA8XFNirsiK5uAZbnoU01RohWj33Bf2uv8Y8g8GySDQ,5257728
63
63
  nexaai/binds/npu/openblas.dll,sha256=jayUYCto57nHAYWh7pbKHUaq_1iwb4-X5dk8RgSU66k,1043968
64
64
  nexaai/binds/npu/opus.dll,sha256=yMljsUvjOuEIP-3GU4Bl1SNrmQ0hSjYz-66pd2Tceww,333824
65
65
  nexaai/binds/npu/paddle-ocr-proc-lib.dll,sha256=GP3Vf3LWOQFCa1qz0O7AGvReEglIaqp463nuPGkn05k,2165760
66
- nexaai/binds/npu/paddleocr-sdk.dll,sha256=YXPy8o7FR5mSiZTUJV9tHy-kUlV0VUW8XjC2pZtaREA,1594368
67
- nexaai/binds/npu/parakeet-sdk.dll,sha256=Bd6_M28eC_7UUlFMW3aewfRIfbyQfq6AevuhB7BMviw,1741312
68
- nexaai/binds/npu/phi3-5-sdk.dll,sha256=rGlH2thOOnOHBR038DIJOcwg5cdNWEpmuS9CIkj-P_Y,4772352
69
- nexaai/binds/npu/phi4-sdk.dll,sha256=QvFE7jzlWegS2lkABnrmU5qzT_eUsOue7qkFq1I6m98,4773888
70
- nexaai/binds/npu/pyannote-sdk.dll,sha256=gY2AvjnBdGpQnQLfYAMKSE-mkeEpHGgO_gyQowMbMwM,1209856
71
- nexaai/binds/npu/qwen3-4b-sdk.dll,sha256=Bv5vEeEqJZpvtNQv549ZVD55lMThc6g6OAlwFYai3ys,4767232
72
- nexaai/binds/npu/qwen3vl-sdk.dll,sha256=5WFkOO5ysx3OxX8K3Ge2zy73dpVwonqIOVqhSCFs-Mg,5156864
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
73
  nexaai/binds/npu/qwen3vl-vision.dll,sha256=kCJBlpWv_4YQCgCIL4b99a6eFd9Ok3_V8TWB_X77w5A,546816
74
74
  nexaai/binds/npu/rtaudio.dll,sha256=Yt_BpQh3lfZVe5Xvg52dM1EdHAluPonGHCKj7XeeGYs,97280
75
75
  nexaai/binds/npu/vorbis.dll,sha256=I-dM07E1rTZGzuhtnDvziChdUCuMGh1pBamHEUxxCHA,691200
76
76
  nexaai/binds/npu/vorbisenc.dll,sha256=kOLDGx90EC3pNFE7H_SmDN47yRtTwWzfNRCkJrtU7gs,561152
77
- nexaai/binds/npu/yolov12-sdk.dll,sha256=VkcqVw_yLJYNidtlNGHrpCvmyC03iO07LGRMvgAVrwo,1548288
77
+ nexaai/binds/npu/yolov12-sdk.dll,sha256=z4llSWCge-33WNGQc5Z_7zddNROAfZQQh4LgEH5pmbk,1540096
78
78
  nexaai/binds/npu/zlib1.dll,sha256=5lgnoWv4RxtQZJLcnTGOmhMuoeKFDfdRlsYj9gxQo1k,88064
79
79
  nexaai/binds/npu/htp-files/Genie.dll,sha256=v9NBdDjaVqEpfIAaeoeRig8LopOJF1jR-_7mT55oN7Y,6076928
80
80
  nexaai/binds/npu/htp-files/PlatformValidatorShared.dll,sha256=cs78NOSkmbE4llNDQqeQRaWpGvpFAlizwMQ9ggvAKIU,10964992
@@ -132,7 +132,7 @@ nexaai/image_gen_impl/mlx_image_gen_impl.py,sha256=BuDkksvXyb4J02GsdnbGAmYckfUU0
132
132
  nexaai/image_gen_impl/pybind_image_gen_impl.py,sha256=ms34VYoD5AxZFG6cIG0QAJDjCtfphaZ1bHzKzey1xF8,3692
133
133
  nexaai/llm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
134
  nexaai/llm_impl/mlx_llm_impl.py,sha256=dPtaEribluHZZY_f9M114glcQhtDEckukw4Sfd5zJos,11296
135
- nexaai/llm_impl/pybind_llm_impl.py,sha256=XXnUuRZMr9rrEL1vM6VTwsgs0KQnKn4C3TyrHE46uw8,8139
135
+ nexaai/llm_impl/pybind_llm_impl.py,sha256=-OFruPYQlAQvy0py6JoBQapBLbRCSgwuZ84WymHtLT0,8163
136
136
  nexaai/rerank_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
137
137
  nexaai/rerank_impl/mlx_rerank_impl.py,sha256=3nbqCdzyAugc4P_6K9mowEgy4LFdfzhy7GUvn9GMpSE,3377
138
138
  nexaai/rerank_impl/pybind_rerank_impl.py,sha256=tmzrpRYCCV3ATxbE9G1Io6SUtgYPO8BFe48nTae6_xw,4490
@@ -141,14 +141,14 @@ nexaai/tts_impl/mlx_tts_impl.py,sha256=i_uNPdvlXYtL3e01oKjDlP9jgkWCRt1bBHsExaaiJ
141
141
  nexaai/tts_impl/pybind_tts_impl.py,sha256=mpn44r6pfYLIl-NrEy2dXHjGtWtNCmM7HRyxiANxUI4,1444
142
142
  nexaai/utils/decode.py,sha256=61n4Zf6c5QLyqGoctEitlI9BX3tPlP2a5aaKNHbw3T4,404
143
143
  nexaai/utils/manifest_utils.py,sha256=OOp_BmFWH1ZHMYkS2VGAby5Rpm4f4GLCRBJEBYm-kys,21489
144
- nexaai/utils/model_manager.py,sha256=OnL87zCPn3cBcScCKo-bHnBUpr24-Po293QC6Bwgx1Q,66112
144
+ nexaai/utils/model_manager.py,sha256=8mEESGneQy6RNQ2L_y0cYh7F8cerDE8BGbCgzZwp5Dg,66224
145
145
  nexaai/utils/model_types.py,sha256=ONWjjo8CFPdhxki6qo7MXnSZaEzjBcxa_Kkf_y5NXus,1483
146
146
  nexaai/utils/progress_tracker.py,sha256=jdUqtmPqyhwC9uSKvQcJEYETwSt-OhP4oitdJ94614o,15394
147
147
  nexaai/utils/quantization_utils.py,sha256=FYcNSAKGlBqFDUTx3jSKOr2lnq4nyiyC0ZG8oSxFwiU,7825
148
148
  nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
149
149
  nexaai/vlm_impl/mlx_vlm_impl.py,sha256=sgHqnX5OCSGLccCnTuRiktIbqThNn3AAIvYE2_Dy4TI,10833
150
150
  nexaai/vlm_impl/pybind_vlm_impl.py,sha256=stJKHdhYhBuWUQkky-nHgCv625qDB_1geI3v5BLNGpM,9765
151
- nexaai-1.0.21rc14.dist-info/METADATA,sha256=EDJjaZdQU0pRud7tB8wOJD46s9Z2bSmds9E3stmgXa4,1219
152
- nexaai-1.0.21rc14.dist-info/WHEEL,sha256=QL7uMKXoDJRpSwAf1VOVpjVXYPYll2YWTJ-omqdO8-4,101
153
- nexaai-1.0.21rc14.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
154
- nexaai-1.0.21rc14.dist-info/RECORD,,
151
+ nexaai-1.0.22.dist-info/METADATA,sha256=1THXwOXkS8oTllWqv2QjVjcJ8J9VzB_MSCmB0W8uWjo,1215
152
+ nexaai-1.0.22.dist-info/WHEEL,sha256=QL7uMKXoDJRpSwAf1VOVpjVXYPYll2YWTJ-omqdO8-4,101
153
+ nexaai-1.0.22.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
154
+ nexaai-1.0.22.dist-info/RECORD,,