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.
- nexaai/_stub.cp313-win_arm64.pyd +0 -0
- nexaai/_version.py +1 -1
- nexaai/binds/asr_bind.cp313-win_arm64.pyd +0 -0
- nexaai/binds/common_bind.cp313-win_arm64.pyd +0 -0
- nexaai/binds/cpu_gpu/ggml-base.dll +0 -0
- nexaai/binds/cpu_gpu/ggml-cpu.dll +0 -0
- nexaai/binds/cpu_gpu/ggml-opencl.dll +0 -0
- nexaai/binds/cpu_gpu/ggml.dll +0 -0
- nexaai/binds/cpu_gpu/mtmd.dll +0 -0
- nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll +0 -0
- nexaai/binds/cpu_gpu/nexa_plugin.dll +0 -0
- nexaai/binds/embedder_bind.cp313-win_arm64.pyd +0 -0
- nexaai/binds/llm_bind.cp313-win_arm64.pyd +0 -0
- nexaai/binds/nexa_bridge.dll +0 -0
- nexaai/binds/npu/convnext-sdk.dll +0 -0
- nexaai/binds/npu/embed-gemma-sdk.dll +0 -0
- nexaai/binds/npu/ggml-base.dll +0 -0
- nexaai/binds/npu/ggml-cpu.dll +0 -0
- nexaai/binds/npu/ggml-opencl.dll +0 -0
- nexaai/binds/npu/ggml.dll +0 -0
- nexaai/binds/npu/granite-nano-sdk.dll +0 -0
- nexaai/binds/npu/granite4-sdk.dll +0 -0
- nexaai/binds/npu/jina-rerank-sdk.dll +0 -0
- nexaai/binds/npu/llama3-3b-sdk.dll +0 -0
- nexaai/binds/npu/nexa-mm-process.dll +0 -0
- nexaai/binds/npu/nexa_plugin.dll +0 -0
- nexaai/binds/npu/omni-neural-sdk.dll +0 -0
- nexaai/binds/npu/paddleocr-sdk.dll +0 -0
- nexaai/binds/npu/parakeet-sdk.dll +0 -0
- nexaai/binds/npu/phi3-5-sdk.dll +0 -0
- nexaai/binds/npu/phi4-sdk.dll +0 -0
- nexaai/binds/npu/pyannote-sdk.dll +0 -0
- nexaai/binds/npu/qwen3-4b-sdk.dll +0 -0
- nexaai/binds/npu/qwen3vl-sdk.dll +0 -0
- nexaai/binds/npu/yolov12-sdk.dll +0 -0
- nexaai/binds/rerank_bind.cp313-win_arm64.pyd +0 -0
- nexaai/binds/vlm_bind.cp313-win_arm64.pyd +0 -0
- nexaai/llm_impl/pybind_llm_impl.py +1 -1
- nexaai/utils/model_manager.py +2 -0
- {nexaai-1.0.21rc14.dist-info → nexaai-1.0.22.dist-info}/METADATA +1 -1
- {nexaai-1.0.21rc14.dist-info → nexaai-1.0.22.dist-info}/RECORD +43 -43
- {nexaai-1.0.21rc14.dist-info → nexaai-1.0.22.dist-info}/WHEEL +0 -0
- {nexaai-1.0.21rc14.dist-info → nexaai-1.0.22.dist-info}/top_level.txt +0 -0
nexaai/_stub.cp313-win_arm64.pyd
CHANGED
|
Binary file
|
nexaai/_version.py
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
nexaai/binds/cpu_gpu/ggml.dll
CHANGED
|
Binary file
|
nexaai/binds/cpu_gpu/mtmd.dll
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
nexaai/binds/nexa_bridge.dll
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
nexaai/binds/npu/ggml-base.dll
CHANGED
|
Binary file
|
nexaai/binds/npu/ggml-cpu.dll
CHANGED
|
Binary file
|
nexaai/binds/npu/ggml-opencl.dll
CHANGED
|
Binary file
|
nexaai/binds/npu/ggml.dll
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
nexaai/binds/npu/nexa_plugin.dll
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
nexaai/binds/npu/phi3-5-sdk.dll
CHANGED
|
Binary file
|
nexaai/binds/npu/phi4-sdk.dll
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
nexaai/binds/npu/qwen3vl-sdk.dll
CHANGED
|
Binary file
|
nexaai/binds/npu/yolov12-sdk.dll
CHANGED
|
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."""
|
nexaai/utils/model_manager.py
CHANGED
|
@@ -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
|
nexaai/__init__.py,sha256=gOd7sNsqEESopw_24xgnOSkIRENrk4Fa-RMtmVv62eA,2421
|
|
2
|
-
nexaai/_stub.cp313-win_arm64.pyd,sha256=
|
|
3
|
-
nexaai/_version.py,sha256=
|
|
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=
|
|
22
|
-
nexaai/binds/common_bind.cp313-win_arm64.pyd,sha256=
|
|
23
|
-
nexaai/binds/embedder_bind.cp313-win_arm64.pyd,sha256=
|
|
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=
|
|
27
|
-
nexaai/binds/nexa_bridge.dll,sha256=
|
|
28
|
-
nexaai/binds/rerank_bind.cp313-win_arm64.pyd,sha256=
|
|
29
|
-
nexaai/binds/vlm_bind.cp313-win_arm64.pyd,sha256=
|
|
30
|
-
nexaai/binds/cpu_gpu/ggml-base.dll,sha256=
|
|
31
|
-
nexaai/binds/cpu_gpu/ggml-cpu.dll,sha256=
|
|
32
|
-
nexaai/binds/cpu_gpu/ggml-opencl.dll,sha256=
|
|
33
|
-
nexaai/binds/cpu_gpu/ggml.dll,sha256=
|
|
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=
|
|
36
|
-
nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll,sha256=
|
|
37
|
-
nexaai/binds/cpu_gpu/nexa_plugin.dll,sha256=
|
|
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=
|
|
40
|
-
nexaai/binds/npu/embed-gemma-sdk.dll,sha256=
|
|
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=
|
|
44
|
-
nexaai/binds/npu/ggml-cpu.dll,sha256=
|
|
45
|
-
nexaai/binds/npu/ggml-opencl.dll,sha256=
|
|
46
|
-
nexaai/binds/npu/ggml.dll,sha256=
|
|
47
|
-
nexaai/binds/npu/granite-nano-sdk.dll,sha256=
|
|
48
|
-
nexaai/binds/npu/granite4-sdk.dll,sha256=
|
|
49
|
-
nexaai/binds/npu/jina-rerank-sdk.dll,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
67
|
-
nexaai/binds/npu/parakeet-sdk.dll,sha256=
|
|
68
|
-
nexaai/binds/npu/phi3-5-sdk.dll,sha256=
|
|
69
|
-
nexaai/binds/npu/phi4-sdk.dll,sha256=
|
|
70
|
-
nexaai/binds/npu/pyannote-sdk.dll,sha256=
|
|
71
|
-
nexaai/binds/npu/qwen3-4b-sdk.dll,sha256=
|
|
72
|
-
nexaai/binds/npu/qwen3vl-sdk.dll,sha256=
|
|
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=
|
|
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
|
|
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=
|
|
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.
|
|
152
|
-
nexaai-1.0.
|
|
153
|
-
nexaai-1.0.
|
|
154
|
-
nexaai-1.0.
|
|
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,,
|
|
File without changes
|
|
File without changes
|