nexaai 1.0.20__cp310-cp310-win_amd64.whl → 1.0.21rc2__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/__init__.py CHANGED
@@ -24,6 +24,13 @@ from .common import ModelConfig, GenerationConfig, ChatMessage, SamplerConfig, P
24
24
  # Import logging functionality
25
25
  from .log import set_logger, get_error_message
26
26
 
27
+ # Import runtime errors
28
+ from .runtime_error import (
29
+ NexaRuntimeError,
30
+ ContextLengthExceededError,
31
+ GenerationError
32
+ )
33
+
27
34
  # Create alias for PluginID to be accessible as plugin_id
28
35
  plugin_id = PluginID
29
36
 
@@ -52,6 +59,11 @@ __all__ = [
52
59
  # Logging functionality
53
60
  "set_logger",
54
61
  "get_error_message",
62
+
63
+ # Runtime errors
64
+ "NexaRuntimeError",
65
+ "ContextLengthExceededError",
66
+ "GenerationError",
55
67
 
56
68
  "LLM",
57
69
  "Embedder",
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.20"
4
+ __version__ = "1.0.21-rc2"
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
@@ -0,0 +1,24 @@
1
+ """Runtime errors for Nexa SDK operations."""
2
+
3
+
4
+ class NexaRuntimeError(Exception):
5
+ """Base class for Nexa runtime errors."""
6
+
7
+ def __init__(self, message: str, error_code: int = None):
8
+ self.error_code = error_code
9
+ super().__init__(message)
10
+
11
+
12
+ class ContextLengthExceededError(NexaRuntimeError):
13
+ """Raised when the input context length exceeds the model's maximum."""
14
+
15
+ def __init__(self, message: str = "Input context length exceeded model's maximum", error_code: int = None):
16
+ super().__init__(message, error_code)
17
+
18
+
19
+ class GenerationError(NexaRuntimeError):
20
+ """Raised when generation fails."""
21
+
22
+ def __init__(self, message: str = "Generation failed", error_code: int = None):
23
+ super().__init__(message, error_code)
24
+
@@ -157,12 +157,16 @@ def create_gguf_manifest(repo_id: str, files: List[str], directory_path: str, ol
157
157
  # Use the new enum-based quantization extraction
158
158
  quantization_type = extract_quantization_from_filename(current_file_name)
159
159
  quant_level = quantization_type.value if quantization_type else "UNKNOWN"
160
-
161
- model_files[quant_level] = {
162
- "Name": current_file_name,
163
- "Downloaded": True,
164
- "Size": file_size
165
- }
160
+
161
+ # FIXME: hardcode to handle the multiple mmproj files problem
162
+ if quant_level == "UNKNOWN" and "mmproj" in current_file_name.lower():
163
+ pass
164
+ else:
165
+ model_files[quant_level] = {
166
+ "Name": current_file_name,
167
+ "Downloaded": True,
168
+ "Size": file_size
169
+ }
166
170
 
167
171
  # Determine PluginId with priority: kwargs > downloaded_manifest > model_file_type > default
168
172
  plugin_id = kwargs.get('plugin_id')
@@ -410,6 +410,20 @@ def _remove_specific_file(target_model: DownloadedModel, file_name: str, local_d
410
410
  except OSError:
411
411
  file_size = 0
412
412
 
413
+ # Check if we should remove entire folder instead (for .gguf files)
414
+ # If removing a .gguf file and no other non-mmproj .gguf files remain, remove entire folder
415
+ if file_name.endswith('.gguf'):
416
+ updated_files = [f for f in target_model.files if f != file_name]
417
+ # Find remaining .gguf files that don't contain "mmproj" in filename
418
+ remaining_non_mmproj_gguf = [
419
+ f for f in updated_files
420
+ if f.endswith('.gguf') and 'mmproj' not in f.lower()
421
+ ]
422
+
423
+ # If no non-mmproj .gguf files remain, remove entire repository
424
+ if len(remaining_non_mmproj_gguf) == 0:
425
+ return _remove_entire_repository(target_model, local_dir)
426
+
413
427
  # Remove the file
414
428
  try:
415
429
  os.remove(file_path)
@@ -846,6 +860,41 @@ class HuggingFaceDownloader:
846
860
  pass
847
861
  return {}
848
862
 
863
+ def _download_manifest_if_needed(self, repo_id: str, local_dir: str) -> bool:
864
+ """
865
+ Download nexa.manifest from the repository if it doesn't exist locally.
866
+
867
+ Args:
868
+ repo_id: Repository ID
869
+ local_dir: Local directory where the manifest should be saved
870
+
871
+ Returns:
872
+ bool: True if manifest was downloaded or already exists, False if not found in repo
873
+ """
874
+ manifest_path = os.path.join(local_dir, 'nexa.manifest')
875
+
876
+ # Check if manifest already exists locally
877
+ if os.path.exists(manifest_path):
878
+ return True
879
+
880
+ # Try to download nexa.manifest from the repository
881
+ try:
882
+ print(f"[INFO] Attempting to download nexa.manifest from {repo_id}...")
883
+ self.api.hf_hub_download(
884
+ repo_id=repo_id,
885
+ filename='nexa.manifest',
886
+ local_dir=local_dir,
887
+ local_dir_use_symlinks=False,
888
+ token=self.token,
889
+ force_download=False
890
+ )
891
+ print(f"[OK] Successfully downloaded nexa.manifest from {repo_id}")
892
+ return True
893
+ except Exception as e:
894
+ # Manifest doesn't exist in repo or other error - this is fine, we'll create it
895
+ print(f"[INFO] nexa.manifest not found in {repo_id}, will create locally")
896
+ return False
897
+
849
898
  def _fetch_and_save_metadata(self, repo_id: str, local_dir: str, is_mmproj: bool = False, file_name: Optional[Union[str, List[str]]] = None, **kwargs) -> None:
850
899
  """Fetch model info and save metadata after successful download."""
851
900
  # Initialize metadata with defaults to ensure manifest is always created
@@ -946,6 +995,9 @@ class HuggingFaceDownloader:
946
995
  if progress_tracker:
947
996
  progress_tracker.stop_tracking()
948
997
 
998
+ # Download nexa.manifest from repo if it doesn't exist locally
999
+ self._download_manifest_if_needed(repo_id, file_local_dir)
1000
+
949
1001
  # Save metadata after successful download
950
1002
  self._fetch_and_save_metadata(repo_id, file_local_dir, self._current_is_mmproj, self._current_file_name, **kwargs)
951
1003
 
@@ -1055,6 +1107,9 @@ class HuggingFaceDownloader:
1055
1107
  if progress_tracker:
1056
1108
  progress_tracker.stop_tracking()
1057
1109
 
1110
+ # Download nexa.manifest from repo if it doesn't exist locally
1111
+ self._download_manifest_if_needed(repo_id, repo_local_dir)
1112
+
1058
1113
  # Save metadata after successful download
1059
1114
  self._fetch_and_save_metadata(repo_id, repo_local_dir, self._current_is_mmproj, self._current_file_name, **kwargs)
1060
1115
 
nexaai/vlm.py CHANGED
@@ -99,7 +99,8 @@ class VLM(BaseModel):
99
99
  def apply_chat_template(
100
100
  self,
101
101
  messages: List[MultiModalMessage],
102
- tools: Optional[List[Dict[str, Any]]] = None
102
+ tools: Optional[List[Dict[str, Any]]] = None,
103
+ enable_thinking: bool = True
103
104
  ) -> str:
104
105
  """Apply the chat template to multimodal messages."""
105
106
  pass
@@ -72,7 +72,8 @@ class MlxVlmImpl(VLM):
72
72
  def apply_chat_template(
73
73
  self,
74
74
  messages: List[MultiModalMessage],
75
- tools: Optional[List[Dict[str, Any]]] = None
75
+ tools: Optional[List[Dict[str, Any]]] = None,
76
+ enable_thinking: bool = True
76
77
  ) -> str:
77
78
  """Apply the chat template to multimodal messages."""
78
79
  if not self._mlx_vlm:
@@ -116,7 +117,7 @@ class MlxVlmImpl(VLM):
116
117
  num_images=total_images,
117
118
  num_audios=total_audios,
118
119
  tools=tools,
119
- enable_thinking=False # Default to False, could be made configurable
120
+ enable_thinking=enable_thinking
120
121
  )
121
122
  else:
122
123
  # Use regular apply_chat_template for text-only messages
@@ -8,6 +8,11 @@ from nexaai.binds import vlm_bind, common_bind
8
8
  from nexaai.runtime import _ensure_runtime
9
9
  from nexaai.vlm import VLM
10
10
  from nexaai.base import ProfilingData
11
+ from nexaai.runtime_error import ContextLengthExceededError, GenerationError
12
+
13
+ # Error codes from ml.h
14
+ ML_SUCCESS = 0
15
+ ML_ERROR_LLM_TOKENIZATION_CONTEXT_LENGTH = -200004
11
16
 
12
17
 
13
18
  class PyBindVLMImpl(VLM):
@@ -91,7 +96,8 @@ class PyBindVLMImpl(VLM):
91
96
  def apply_chat_template(
92
97
  self,
93
98
  messages: List[MultiModalMessage],
94
- tools: Optional[List[Dict[str, Any]]] = None
99
+ tools: Optional[List[Dict[str, Any]]] = None,
100
+ enable_thinking: bool = True
95
101
  ) -> str:
96
102
  """Apply the chat template to multimodal messages."""
97
103
  payload = []
@@ -111,7 +117,7 @@ class PyBindVLMImpl(VLM):
111
117
 
112
118
  payload.append({"role": role, "content": blocks})
113
119
 
114
- result = vlm_bind.ml_vlm_apply_chat_template(self._handle, payload, tools)
120
+ result = vlm_bind.ml_vlm_apply_chat_template(self._handle, payload, tools, enable_thinking)
115
121
  return result
116
122
 
117
123
  def generate_stream(self, prompt: str, g_cfg: GenerationConfig = GenerationConfig()) -> Generator[str, None, None]:
@@ -143,6 +149,18 @@ class PyBindVLMImpl(VLM):
143
149
  on_token=on_token,
144
150
  user_data=None
145
151
  )
152
+
153
+ # Check for errors in result
154
+ error_code = result.get("error_code", ML_SUCCESS)
155
+ if error_code != ML_SUCCESS:
156
+ error_message = result.get("error_message", "Unknown error")
157
+ if error_code == ML_ERROR_LLM_TOKENIZATION_CONTEXT_LENGTH:
158
+ exception_container[0] = ContextLengthExceededError(error_message, error_code)
159
+ else:
160
+ exception_container[0] = GenerationError(error_message, error_code)
161
+ token_queue.put(('end', None))
162
+ return
163
+
146
164
  self._profiling_data = ProfilingData.from_dict(result.get("profile_data", {}))
147
165
  except Exception as e:
148
166
  exception_container[0] = e
@@ -186,6 +204,15 @@ class PyBindVLMImpl(VLM):
186
204
  user_data=None
187
205
  )
188
206
 
207
+ # Check for errors in result
208
+ error_code = result.get("error_code", ML_SUCCESS)
209
+ if error_code != ML_SUCCESS:
210
+ error_message = result.get("error_message", "Unknown error")
211
+ if error_code == ML_ERROR_LLM_TOKENIZATION_CONTEXT_LENGTH:
212
+ raise ContextLengthExceededError(error_message, error_code)
213
+ else:
214
+ raise GenerationError(error_message, error_code)
215
+
189
216
  self._profiling_data = ProfilingData.from_dict(result.get("profile_data", {}))
190
217
  return result.get("text", "")
191
218
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nexaai
3
- Version: 1.0.20
3
+ Version: 1.0.21rc2
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
- nexaai/__init__.py,sha256=mbzzeXrEHHI_E3BQ0_OukD9wNajKJJVk0ykxT0rz8uM,2267
2
- nexaai/_stub.cp310-win_amd64.pyd,sha256=Efpmsr8o9_ipQ75vdg7mSVW9cDblaJR8WTv-Vbw0z5g,10752
3
- nexaai/_version.py,sha256=YQby4GMX_eKc_N1oaIy8c7_k8XB5jYqAA-LTQGOHYpk,143
1
+ nexaai/__init__.py,sha256=Yt2YPVcRfwdA6DQoUR4ZI34CHBUYoY2cVsrG7Zp6IrI,2516
2
+ nexaai/_stub.cp310-win_amd64.pyd,sha256=s9lKUQQYMxt6aJWxxMYb5LHq80Em0sCz5pQGrQjSIb8,10752
3
+ nexaai/_version.py,sha256=RntcW2nBfo_nNGJb6146ZZwHwjDCavL1Tj1XtV9VmJI,147
4
4
  nexaai/asr.py,sha256=_fsGaxpiU137bUtO5ujtFSYCI1RLsyeEm3Gf4GhHVRk,2118
5
5
  nexaai/base.py,sha256=qQBCiQVNzgpkQjZX9aiFDEdbAAe56TROKC3WnWra2Zg,1021
6
6
  nexaai/common.py,sha256=muQqFY-WllwL5IO83tImexbuUcoEQsKg73u4gWL2lNs,3548
@@ -11,37 +11,38 @@ nexaai/llm.py,sha256=Qwm1q_NStLfD-JYZQIvxniWnAmwNl1V6LUON3Me7w_I,3663
11
11
  nexaai/log.py,sha256=F_Qe169kLbnFV25WJmS_ZtmBfOdcGic8BYFIsYVoD_o,2720
12
12
  nexaai/rerank.py,sha256=_zGWmX6eDigY2kViMKCtNssp4JMEeVycZZfJH9eAZOY,1927
13
13
  nexaai/runtime.py,sha256=_BoAtTUv5ZR7wtOlJL5TldR3AZTP0OnMWjB9p71k-8E,2135
14
+ nexaai/runtime_error.py,sha256=7TvjMJO7MpvVRQCYEDwcFPOgZsIILQtN-ZJ74JlARrE,803
14
15
  nexaai/tts.py,sha256=afs6sx0w0Tvs_aJlyZRPm62qQpTrs-fW_jDHrMkc4AA,2241
15
- nexaai/vlm.py,sha256=wUMbRURluxvULbS7vgyHsWdEPgLGrrC_S79bhdEN7Vg,4860
16
+ nexaai/vlm.py,sha256=e-IMTiyCkP1vvrVHn98quyJoISGQzVf6UETSQ3lHudo,4899
16
17
  nexaai/asr_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
18
  nexaai/asr_impl/mlx_asr_impl.py,sha256=XwMX3LYMeulp8cDS0TCCYcjvttFHAyDWQ_oMvABwQmI,3349
18
19
  nexaai/asr_impl/pybind_asr_impl.py,sha256=20o5SOPzhF9x41ra8L_qIM7YxCkYeLb5csSrNde-dds,1560
19
20
  nexaai/binds/__init__.py,sha256=ENl-uoIF9-3XGIXitVgZ2QmJ6p7Yet4h1-X7nUDZ0Hk,108
20
- nexaai/binds/common_bind.cp310-win_amd64.pyd,sha256=oiNbKJtiPnP4aIOkKMxR4Vl3O-6gNWUOtiAqx3aG8AA,205824
21
- nexaai/binds/embedder_bind.cp310-win_amd64.pyd,sha256=TpTTLaLmFVFa8BiTE5zX-6FZ9IZKoq9MUBqyimJpA7A,182784
21
+ nexaai/binds/common_bind.cp310-win_amd64.pyd,sha256=hI07QkGT4tWMoWA0zHZNEZh0ToslONCJxj5HMPqqbnc,205824
22
+ nexaai/binds/embedder_bind.cp310-win_amd64.pyd,sha256=dM2dndm4Ch5F391i90d2ZF8U9tADmLCChzwpaj18oqk,182784
22
23
  nexaai/binds/libcrypto-3-x64.dll,sha256=X7hDuQPMn6eRe58dTGJxTmRPKFWgd5i6Gjoy9QPLmPg,7315968
23
24
  nexaai/binds/libssl-3-x64.dll,sha256=GRw0cOaGUaR2QHRvBFuU_9S9iNgkyVgm0NIpZMnReAw,1313792
24
- nexaai/binds/llm_bind.cp310-win_amd64.pyd,sha256=Kh4F7bqWvVQA9eZkEwTSTpQRuznOhVYeELhOsGMQyzo,162816
25
- nexaai/binds/nexa_bridge.dll,sha256=F71KwL9PeUz9e1eDt5rSLP1nee5hc8_ekfpMYh2sJ0k,187904
26
- nexaai/binds/vlm_bind.cp310-win_amd64.pyd,sha256=FyyI4GrYnVCMUIXfzdkxNERlgMMGjA4qSSlmFhJYDBA,168960
27
- nexaai/binds/cpu_gpu/ggml-base.dll,sha256=Ws7NWfpdEn_QTL8gnh_sUz_J0K179Yl241uM4P0JGVw,532480
28
- nexaai/binds/cpu_gpu/ggml-cpu.dll,sha256=RanyT0m4REZJYz04ixpbhd87lemnUrzhCNXtdsDqbLY,672768
29
- nexaai/binds/cpu_gpu/ggml-cuda.dll,sha256=ex7fxyZe2KPcxkgfxSBrjf2oIgf7jbE1Rt74ywKyAls,313528832
30
- nexaai/binds/cpu_gpu/ggml-vulkan.dll,sha256=wGkKnEdCLKw0vWLH51GRuuzR8Lum9ta6Xh1Lge1zeFg,36627968
31
- nexaai/binds/cpu_gpu/ggml.dll,sha256=XBQajP9P05YqqzJ-0sADsb0luzbwWomxdI5nwpsnzqw,66560
32
- nexaai/binds/cpu_gpu/mtmd.dll,sha256=Z5r0VXuuFYZqwQBAutN2P378mF9zFFayxYRTa8BjeQk,561152
33
- nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll,sha256=36jvlF5lKsOiQZuAY-QdXRNm1vQwZY5xFjX5MHUt7eI,1611776
34
- nexaai/binds/cpu_gpu/nexa_plugin.dll,sha256=Bv65TVCcZZ_CVjjMbbnwV4Jb5wZ0ILONDn0w95YABwQ,1411072
35
- nexaai/binds/nexaml/ggml-base.dll,sha256=Ws7NWfpdEn_QTL8gnh_sUz_J0K179Yl241uM4P0JGVw,532480
36
- nexaai/binds/nexaml/ggml-cpu.dll,sha256=RanyT0m4REZJYz04ixpbhd87lemnUrzhCNXtdsDqbLY,672768
37
- nexaai/binds/nexaml/ggml-cuda.dll,sha256=ex7fxyZe2KPcxkgfxSBrjf2oIgf7jbE1Rt74ywKyAls,313528832
38
- nexaai/binds/nexaml/ggml-vulkan.dll,sha256=wGkKnEdCLKw0vWLH51GRuuzR8Lum9ta6Xh1Lge1zeFg,36627968
39
- nexaai/binds/nexaml/ggml.dll,sha256=XBQajP9P05YqqzJ-0sADsb0luzbwWomxdI5nwpsnzqw,66560
25
+ nexaai/binds/llm_bind.cp310-win_amd64.pyd,sha256=DJvEg2tgTcpOvS1NJE0kSkd8hIvaQpSFlmUoTpS2xsU,162816
26
+ nexaai/binds/nexa_bridge.dll,sha256=JMlu4matSkWSfqgnLaaJ4dB4uu0THI8aAdTATlD5VhI,187904
27
+ nexaai/binds/vlm_bind.cp310-win_amd64.pyd,sha256=qBOnkTT7F2FJKOaD8utj2HmCbtDWoI3HFvTeQlAg2aw,170496
28
+ nexaai/binds/cpu_gpu/ggml-base.dll,sha256=-0MMrq_hqJXMk3FSymyq4AoiMk_1r97HT-c_bR55A5w,532480
29
+ nexaai/binds/cpu_gpu/ggml-cpu.dll,sha256=B81v_5sWbOumvKzHRBnK1UWvDsdxmCmOJSn5r-7qy84,672768
30
+ nexaai/binds/cpu_gpu/ggml-cuda.dll,sha256=NH-HpsN_7UYfUy4Q9X2JYH7d-TNt7iRYxfAGpX4WpZY,313528832
31
+ nexaai/binds/cpu_gpu/ggml-vulkan.dll,sha256=iJPrRl--pkNcDc0ZtdW2pw9piHDPd0D252VqgIOhMXo,36627968
32
+ nexaai/binds/cpu_gpu/ggml.dll,sha256=gwZrKugz4jQrltFUeBjRJzvnOEOd6JgviggGEdCYBL8,66560
33
+ nexaai/binds/cpu_gpu/mtmd.dll,sha256=v8UkuqbMFoU3Mot8C844ne8s8eagvtgh0idxk0flMXs,561152
34
+ nexaai/binds/cpu_gpu/nexa_cpu_gpu.dll,sha256=uoKWytNu82wk2_Tjm3xZI3lAKJhn8uTS7Kklsc4Mx30,1611776
35
+ nexaai/binds/cpu_gpu/nexa_plugin.dll,sha256=xCc9UoKj7kyxA2esE8teCo5yARoI5769cME9f_O4CeY,1411072
36
+ nexaai/binds/nexaml/ggml-base.dll,sha256=-0MMrq_hqJXMk3FSymyq4AoiMk_1r97HT-c_bR55A5w,532480
37
+ nexaai/binds/nexaml/ggml-cpu.dll,sha256=B81v_5sWbOumvKzHRBnK1UWvDsdxmCmOJSn5r-7qy84,672768
38
+ nexaai/binds/nexaml/ggml-cuda.dll,sha256=NH-HpsN_7UYfUy4Q9X2JYH7d-TNt7iRYxfAGpX4WpZY,313528832
39
+ nexaai/binds/nexaml/ggml-vulkan.dll,sha256=iJPrRl--pkNcDc0ZtdW2pw9piHDPd0D252VqgIOhMXo,36627968
40
+ nexaai/binds/nexaml/ggml.dll,sha256=gwZrKugz4jQrltFUeBjRJzvnOEOd6JgviggGEdCYBL8,66560
40
41
  nexaai/binds/nexaml/nexa-mm-process.dll,sha256=DDD5qPbelZAIrRWGggOd3Pg9U_fh_ZEYIplwqiyD5LY,4643328
41
42
  nexaai/binds/nexaml/nexa-sampling.dll,sha256=Notkz287laSUG2_ED3oFXWVLJM3t7x_USkvX6wKVOLA,4265984
42
- nexaai/binds/nexaml/nexa_plugin.dll,sha256=6nvov9eZ7Y5eJVFzCzrmaGesweplmSOv_2L6s6wsXEU,601600
43
- nexaai/binds/nexaml/nexaproc.dll,sha256=cVU4ngSdsQ0MttqOv5IUZhmUE8lZLq-OjC8ueaAsx1s,2668544
44
- nexaai/binds/nexaml/qwen3-vl.dll,sha256=say_RLwLsIq_svPlgqPl12gfrOCQtcCiwa_q91Ql7YM,5873152
43
+ nexaai/binds/nexaml/nexa_plugin.dll,sha256=UMKMlN-KbhGPQAFPBs3aL9KqyjeBW-R31bQEOPDK93g,601600
44
+ nexaai/binds/nexaml/nexaproc.dll,sha256=rRcdSfhkxnRwktXW4lp7Np8sNY_uefNXYwAmPp34AHg,2670080
45
+ nexaai/binds/nexaml/qwen3-vl.dll,sha256=KxwQ0PHvzM1zwLpH7vlNOlfaVzgEUHTfTV76e61KeyA,5873664
45
46
  nexaai/binds/nexaml/qwen3vl-vision.dll,sha256=5AX4MtAOWTcXSAkS2qqvl2pFti4HR55dtkCaOO03Evc,1063424
46
47
  nexaai/cv_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
48
  nexaai/cv_impl/mlx_cv_impl.py,sha256=QLd_8w90gtxH8kmssaDYatCTRvQNIJuUGKZNnYrmx6E,3317
@@ -62,15 +63,15 @@ nexaai/tts_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
63
  nexaai/tts_impl/mlx_tts_impl.py,sha256=LcH9bVdIl3Q6lOzSUB_X2s-_nWFmlCl1yL7XSUK0fYI,3195
63
64
  nexaai/tts_impl/pybind_tts_impl.py,sha256=n3z4zmPQayQJgAwcvETw0IBUCp8IYROuYFSg0tAy_8Y,1487
64
65
  nexaai/utils/decode.py,sha256=0Z9jDH4ICzw4YXj8nD4L-sMouDaev-TISGRQ4KzidWE,421
65
- nexaai/utils/manifest_utils.py,sha256=E07t_bNq-EDrqVYZW7uyX8zsKsFklvqqwSvic0in0tQ,21800
66
- nexaai/utils/model_manager.py,sha256=qzlGP4sZLYsO72vg-EUCVA0RUknVKtLYMmDDfPmG45g,60999
66
+ nexaai/utils/manifest_utils.py,sha256=BoKqnI6N5CkEPTDZCRWSx7wga6aH8h6cr4nbff7gVwg,22020
67
+ nexaai/utils/model_manager.py,sha256=yxLaxOOhfMZ9i_2UnQ0qQSFLE-Rx9x9f_bGG5ut-nrk,63508
67
68
  nexaai/utils/model_types.py,sha256=q2m7diYLOpLvRl1ixL2eMq5_kdTj8KqPBGWX4p6Ob08,1532
68
69
  nexaai/utils/progress_tracker.py,sha256=BztrFqtjwNUmeREwZ5m7H6ZcrVzQEbpZfsxndWh4z0A,15778
69
70
  nexaai/utils/quantization_utils.py,sha256=FxnZ6-uAE_bl_vQ5jsRXlpU0NBn-U4Y8iN9_O6aCdPA,8070
70
71
  nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
71
- nexaai/vlm_impl/mlx_vlm_impl.py,sha256=MgqJO7OzuPd79gOZZKhSXXMNSP2eBuhhrdCX8XHn6aQ,11090
72
- nexaai/vlm_impl/pybind_vlm_impl.py,sha256=NuQ_Ep1TnjmGAkjJuUS0Lb6z7iPu3wroLVOx7kiAwlE,8827
73
- nexaai-1.0.20.dist-info/METADATA,sha256=K2V5GVx_4VMBYf-ki7CpTOKuWrpxhc4lSGYpY5zl_rs,1238
74
- nexaai-1.0.20.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
75
- nexaai-1.0.20.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
76
- nexaai-1.0.20.dist-info/RECORD,,
72
+ nexaai/vlm_impl/mlx_vlm_impl.py,sha256=gI09QJcok68QG-36csXr3c2yPCZXTE0dlq1MUBEo_Ms,11091
73
+ nexaai/vlm_impl/pybind_vlm_impl.py,sha256=4qPt5C5m4y4kWD9EFfVbcAkMq2Dgd5EP9tYo6yZIxgo,10162
74
+ nexaai-1.0.21rc2.dist-info/METADATA,sha256=MzoQDZSvw3pwbFRRx2-3F1i9GcqVgYFZ-QR_PX8Tw-Y,1241
75
+ nexaai-1.0.21rc2.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
76
+ nexaai-1.0.21rc2.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
77
+ nexaai-1.0.21rc2.dist-info/RECORD,,