nexaai 1.0.16rc12__cp310-cp310-win_amd64.whl → 1.0.16rc13__cp310-cp310-win_amd64.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.
- nexaai/_stub.cp310-win_amd64.pyd +0 -0
- nexaai/_version.py +1 -1
- nexaai/binds/common_bind.cp310-win_amd64.pyd +0 -0
- nexaai/binds/embedder_bind.cp310-win_amd64.pyd +0 -0
- nexaai/binds/llm_bind.cp310-win_amd64.pyd +0 -0
- nexaai/binds/nexa_bridge.dll +0 -0
- nexaai/binds/nexa_llama_cpp/ggml-base.dll +0 -0
- nexaai/binds/nexa_llama_cpp/ggml-cpu.dll +0 -0
- nexaai/binds/nexa_llama_cpp/ggml-cuda.dll +0 -0
- nexaai/binds/nexa_llama_cpp/ggml-vulkan.dll +0 -0
- nexaai/binds/nexa_llama_cpp/ggml.dll +0 -0
- nexaai/binds/nexa_llama_cpp/llama.dll +0 -0
- nexaai/binds/nexa_llama_cpp/mtmd.dll +0 -0
- nexaai/binds/nexa_llama_cpp/nexa_plugin.dll +0 -0
- nexaai/binds/nexa_nexaml/ggml-base.dll +0 -0
- nexaai/binds/nexa_nexaml/ggml-cpu.dll +0 -0
- nexaai/binds/nexa_nexaml/ggml-cuda.dll +0 -0
- nexaai/binds/nexa_nexaml/ggml-vulkan.dll +0 -0
- nexaai/binds/nexa_nexaml/ggml.dll +0 -0
- nexaai/binds/nexa_nexaml/nexa-mm-process.dll +0 -0
- nexaai/binds/nexa_nexaml/nexa-sampling.dll +0 -0
- nexaai/binds/nexa_nexaml/nexa_plugin.dll +0 -0
- nexaai/binds/nexa_nexaml/nexaproc.dll +0 -0
- nexaai/binds/nexa_nexaml/qwen3-vl.dll +0 -0
- nexaai/binds/nexa_nexaml/qwen3vl-vision.dll +0 -0
- nexaai/binds/vlm_bind.cp310-win_amd64.pyd +0 -0
- nexaai/common.py +1 -0
- nexaai/utils/quantization_utils.py +7 -1
- {nexaai-1.0.16rc12.dist-info → nexaai-1.0.16rc13.dist-info}/METADATA +1 -1
- {nexaai-1.0.16rc12.dist-info → nexaai-1.0.16rc13.dist-info}/RECORD +32 -21
- {nexaai-1.0.16rc12.dist-info → nexaai-1.0.16rc13.dist-info}/WHEEL +0 -0
- {nexaai-1.0.16rc12.dist-info → nexaai-1.0.16rc13.dist-info}/top_level.txt +0 -0
nexaai/_stub.cp310-win_amd64.pyd
CHANGED
|
Binary file
|
nexaai/_version.py
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
nexaai/binds/nexa_bridge.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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
nexaai/common.py
CHANGED
|
@@ -25,12 +25,15 @@ class QuantizationType(str, Enum):
|
|
|
25
25
|
F16 = "F16"
|
|
26
26
|
Q2_K = "Q2_K"
|
|
27
27
|
Q2_K_L = "Q2_K_L"
|
|
28
|
+
Q3_K = "Q3_K"
|
|
28
29
|
Q3_K_M = "Q3_K_M"
|
|
29
30
|
Q3_K_S = "Q3_K_S"
|
|
30
31
|
Q4_0 = "Q4_0"
|
|
31
32
|
Q4_1 = "Q4_1"
|
|
33
|
+
Q4_K = "Q4_K"
|
|
32
34
|
Q4_K_M = "Q4_K_M"
|
|
33
35
|
Q4_K_S = "Q4_K_S"
|
|
36
|
+
Q5_K = "Q5_K"
|
|
34
37
|
Q5_K_M = "Q5_K_M"
|
|
35
38
|
Q5_K_S = "Q5_K_S"
|
|
36
39
|
Q6_K = "Q6_K"
|
|
@@ -67,12 +70,15 @@ def extract_quantization_from_filename(filename: str) -> Optional[QuantizationTy
|
|
|
67
70
|
'f16.': QuantizationType.F16, # Add F16 support
|
|
68
71
|
'q2_k_l.': QuantizationType.Q2_K_L, # Check Q2_K_L before Q2_K to avoid partial match
|
|
69
72
|
'q2_k.': QuantizationType.Q2_K,
|
|
73
|
+
'q3_k.': QuantizationType.Q3_K,
|
|
70
74
|
'q3_k_m.': QuantizationType.Q3_K_M,
|
|
71
|
-
'
|
|
75
|
+
'q3_k_s.': QuantizationType.Q3_K_S,
|
|
72
76
|
'q4_k_m.': QuantizationType.Q4_K_M,
|
|
73
77
|
'q4_k_s.': QuantizationType.Q4_K_S,
|
|
74
78
|
'q4_0.': QuantizationType.Q4_0,
|
|
75
79
|
'q4_1.': QuantizationType.Q4_1,
|
|
80
|
+
'q4_k.': QuantizationType.Q4_K,
|
|
81
|
+
'q5_k.': QuantizationType.Q5_K,
|
|
76
82
|
'q5_k_m.': QuantizationType.Q5_K_M,
|
|
77
83
|
'q5_k_s.': QuantizationType.Q5_K_S,
|
|
78
84
|
'q6_k.': QuantizationType.Q6_K,
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
nexaai/__init__.py,sha256=mbzzeXrEHHI_E3BQ0_OukD9wNajKJJVk0ykxT0rz8uM,2267
|
|
2
|
-
nexaai/_stub.cp310-win_amd64.pyd,sha256=
|
|
3
|
-
nexaai/_version.py,sha256=
|
|
2
|
+
nexaai/_stub.cp310-win_amd64.pyd,sha256=e_8LH-d3IykmiVh_OIGLBWBS_KGaDpJgiAxoHX98GjU,10752
|
|
3
|
+
nexaai/_version.py,sha256=zOG2TECwUzFAPOu94cXw5ognc8QM83WocnGzAJAqO8w,148
|
|
4
4
|
nexaai/asr.py,sha256=_fsGaxpiU137bUtO5ujtFSYCI1RLsyeEm3Gf4GhHVRk,2118
|
|
5
5
|
nexaai/base.py,sha256=qQBCiQVNzgpkQjZX9aiFDEdbAAe56TROKC3WnWra2Zg,1021
|
|
6
|
-
nexaai/common.py,sha256=
|
|
6
|
+
nexaai/common.py,sha256=muQqFY-WllwL5IO83tImexbuUcoEQsKg73u4gWL2lNs,3548
|
|
7
7
|
nexaai/cv.py,sha256=a6-csgYNDzPziJ0EojE9-BeM_xCny4UvWWbpnJ7GL-A,3365
|
|
8
8
|
nexaai/embedder.py,sha256=3a81s7JapvYxCRbWPFKp_9EWBKW7WYqF03gk87YuGKU,2524
|
|
9
9
|
nexaai/image_gen.py,sha256=4iASOKxJosMznLarTvOxJQDNaas251O81bfUWJTUBfE,4496
|
|
@@ -17,21 +17,32 @@ nexaai/asr_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
17
17
|
nexaai/asr_impl/mlx_asr_impl.py,sha256=XwMX3LYMeulp8cDS0TCCYcjvttFHAyDWQ_oMvABwQmI,3349
|
|
18
18
|
nexaai/asr_impl/pybind_asr_impl.py,sha256=20o5SOPzhF9x41ra8L_qIM7YxCkYeLb5csSrNde-dds,1560
|
|
19
19
|
nexaai/binds/__init__.py,sha256=ENl-uoIF9-3XGIXitVgZ2QmJ6p7Yet4h1-X7nUDZ0Hk,108
|
|
20
|
-
nexaai/binds/common_bind.cp310-win_amd64.pyd,sha256=
|
|
21
|
-
nexaai/binds/embedder_bind.cp310-win_amd64.pyd,sha256
|
|
20
|
+
nexaai/binds/common_bind.cp310-win_amd64.pyd,sha256=dgV1J4mRjUZtqVkHwHpDDeNJIYPuQUMmr65HaLtjqdI,205824
|
|
21
|
+
nexaai/binds/embedder_bind.cp310-win_amd64.pyd,sha256=lVyFdq99zDOwfas4qP7Fs-zOqngEpr6aN1P08GuzjX0,182784
|
|
22
22
|
nexaai/binds/libcrypto-3-x64.dll,sha256=TAWcTdJrWviUingNyWaraOfz0ILUy7ybpI4VaiVHURg,7315968
|
|
23
23
|
nexaai/binds/libssl-3-x64.dll,sha256=ZxawOWlONNM0Neg47w4JbU8kZJldj046H1zV3LiETa0,1313792
|
|
24
|
-
nexaai/binds/llm_bind.cp310-win_amd64.pyd,sha256=
|
|
25
|
-
nexaai/binds/nexa_bridge.dll,sha256=
|
|
26
|
-
nexaai/binds/vlm_bind.cp310-win_amd64.pyd,sha256=
|
|
27
|
-
nexaai/binds/nexa_llama_cpp/ggml-base.dll,sha256=
|
|
28
|
-
nexaai/binds/nexa_llama_cpp/ggml-cpu.dll,sha256=
|
|
29
|
-
nexaai/binds/nexa_llama_cpp/ggml-cuda.dll,sha256=
|
|
30
|
-
nexaai/binds/nexa_llama_cpp/ggml-vulkan.dll,sha256=
|
|
31
|
-
nexaai/binds/nexa_llama_cpp/ggml.dll,sha256=
|
|
32
|
-
nexaai/binds/nexa_llama_cpp/llama.dll,sha256=
|
|
33
|
-
nexaai/binds/nexa_llama_cpp/mtmd.dll,sha256=
|
|
34
|
-
nexaai/binds/nexa_llama_cpp/nexa_plugin.dll,sha256=
|
|
24
|
+
nexaai/binds/llm_bind.cp310-win_amd64.pyd,sha256=QHa3HCdtFWS2l5ae3_ihlQBOf-rbHDEPU4Wv4uZbTMk,162816
|
|
25
|
+
nexaai/binds/nexa_bridge.dll,sha256=fun3RVSuiBesUQRoMvApniRQFuZKcA1KTcEyOXdZR8A,171008
|
|
26
|
+
nexaai/binds/vlm_bind.cp310-win_amd64.pyd,sha256=gHkugH99nuYgecBtTdmU_ffz_nJZIB99MCPRAy_0gyo,168960
|
|
27
|
+
nexaai/binds/nexa_llama_cpp/ggml-base.dll,sha256=9c2hGb_qiO_NfKEUp17cbPc9KJjygtm2NovrkaiVuMo,532480
|
|
28
|
+
nexaai/binds/nexa_llama_cpp/ggml-cpu.dll,sha256=Z_7-t1nDKyGgOUfIrsb7GKKk7_-AcMVaPwTldmog2XQ,672768
|
|
29
|
+
nexaai/binds/nexa_llama_cpp/ggml-cuda.dll,sha256=UsYq8Bg3FSsfSbNNoBqo1wnHCwJlH1P8LkP7q-V1w04,313528832
|
|
30
|
+
nexaai/binds/nexa_llama_cpp/ggml-vulkan.dll,sha256=ZdNRlPrnT6_HGleKHgq3ewg7ccTXo9IEF5katCCBO1Y,36627456
|
|
31
|
+
nexaai/binds/nexa_llama_cpp/ggml.dll,sha256=qX8BYYSvD7A5wciwR2vDlgcFasUBVxZN-lZabMgzUJA,66560
|
|
32
|
+
nexaai/binds/nexa_llama_cpp/llama.dll,sha256=h6bc77yfCPuBYeisvRTpL0QhamrHSepXlNrAq4BtCvs,1611776
|
|
33
|
+
nexaai/binds/nexa_llama_cpp/mtmd.dll,sha256=4eKOC6YlwIDIJ3ej4Qr91JlroZ6LsGfmOIWlug_rmUI,561152
|
|
34
|
+
nexaai/binds/nexa_llama_cpp/nexa_plugin.dll,sha256=V4yai7cnED0PawLPjvRVsi9megjvITsISh42tX1SGcY,1413120
|
|
35
|
+
nexaai/binds/nexa_nexaml/ggml-base.dll,sha256=9c2hGb_qiO_NfKEUp17cbPc9KJjygtm2NovrkaiVuMo,532480
|
|
36
|
+
nexaai/binds/nexa_nexaml/ggml-cpu.dll,sha256=Z_7-t1nDKyGgOUfIrsb7GKKk7_-AcMVaPwTldmog2XQ,672768
|
|
37
|
+
nexaai/binds/nexa_nexaml/ggml-cuda.dll,sha256=UsYq8Bg3FSsfSbNNoBqo1wnHCwJlH1P8LkP7q-V1w04,313528832
|
|
38
|
+
nexaai/binds/nexa_nexaml/ggml-vulkan.dll,sha256=ZdNRlPrnT6_HGleKHgq3ewg7ccTXo9IEF5katCCBO1Y,36627456
|
|
39
|
+
nexaai/binds/nexa_nexaml/ggml.dll,sha256=qX8BYYSvD7A5wciwR2vDlgcFasUBVxZN-lZabMgzUJA,66560
|
|
40
|
+
nexaai/binds/nexa_nexaml/nexa-mm-process.dll,sha256=oDnqTaAUeZrWJePQEDuIYKEOMP-ndu221mMFHht4bSY,4642816
|
|
41
|
+
nexaai/binds/nexa_nexaml/nexa-sampling.dll,sha256=PNtidsRbGO8dTfbf7-VMdhQRbF328yvLnmDjMy2Tb7Y,4265984
|
|
42
|
+
nexaai/binds/nexa_nexaml/nexa_plugin.dll,sha256=JJI11C2y0VOmuwRxXWG-8p7a4RQg33jZzC8pD5oXeHg,581632
|
|
43
|
+
nexaai/binds/nexa_nexaml/nexaproc.dll,sha256=9X4TF6p7wOiIXi_SA7uHLoEmrvcTlH2WpfijK7HxZgY,2668544
|
|
44
|
+
nexaai/binds/nexa_nexaml/qwen3-vl.dll,sha256=Es-etUDiMmK_BwOki8V79Nja-NY4kBbrkhtnesXfMMU,5870592
|
|
45
|
+
nexaai/binds/nexa_nexaml/qwen3vl-vision.dll,sha256=HFAk0FxWlf_lko3AQL6uBXTIhm6AzDFi5PjxI0lxONI,1184256
|
|
35
46
|
nexaai/cv_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
47
|
nexaai/cv_impl/mlx_cv_impl.py,sha256=QLd_8w90gtxH8kmssaDYatCTRvQNIJuUGKZNnYrmx6E,3317
|
|
37
48
|
nexaai/cv_impl/pybind_cv_impl.py,sha256=aSOCAxmHrwJbEkSN6VX3Cykqlj_9RIpVrZXILul04GA,1096
|
|
@@ -56,11 +67,11 @@ nexaai/utils/manifest_utils.py,sha256=nPqK24srLX41x3WU4R-OGQR9u0XA7ZTHY1MQXBKXdr
|
|
|
56
67
|
nexaai/utils/model_manager.py,sha256=3rDODGClgnM24LFWIoM-TDpXkpV1vyJSdlv7Qk4ZaPE,57434
|
|
57
68
|
nexaai/utils/model_types.py,sha256=arIyb9q-1uG0nyUGdWZaxxDJAxv0cfnJEpjCzyELL5Q,1416
|
|
58
69
|
nexaai/utils/progress_tracker.py,sha256=BztrFqtjwNUmeREwZ5m7H6ZcrVzQEbpZfsxndWh4z0A,15778
|
|
59
|
-
nexaai/utils/quantization_utils.py,sha256=
|
|
70
|
+
nexaai/utils/quantization_utils.py,sha256=FxnZ6-uAE_bl_vQ5jsRXlpU0NBn-U4Y8iN9_O6aCdPA,8070
|
|
60
71
|
nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
72
|
nexaai/vlm_impl/mlx_vlm_impl.py,sha256=MgqJO7OzuPd79gOZZKhSXXMNSP2eBuhhrdCX8XHn6aQ,11090
|
|
62
73
|
nexaai/vlm_impl/pybind_vlm_impl.py,sha256=NuQ_Ep1TnjmGAkjJuUS0Lb6z7iPu3wroLVOx7kiAwlE,8827
|
|
63
|
-
nexaai-1.0.
|
|
64
|
-
nexaai-1.0.
|
|
65
|
-
nexaai-1.0.
|
|
66
|
-
nexaai-1.0.
|
|
74
|
+
nexaai-1.0.16rc13.dist-info/METADATA,sha256=n2NFaWqhCva-Li5KXfcGuX11WUrMRtfef8-p2bQGaJg,1234
|
|
75
|
+
nexaai-1.0.16rc13.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
|
|
76
|
+
nexaai-1.0.16rc13.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
|
|
77
|
+
nexaai-1.0.16rc13.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|