nexaai 1.0.13rc2__cp310-cp310-macosx_14_0_universal2.whl → 1.0.14__cp310-cp310-macosx_14_0_universal2.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.

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.13-rc2"
4
+ __version__ = "1.0.14"
Binary file
@@ -31,7 +31,8 @@ class PyBindEmbedderImpl(Embedder):
31
31
  _ensure_runtime()
32
32
  # Convert enum to string for C++ binding
33
33
  plugin_id_str = plugin_id.value if isinstance(plugin_id, PluginID) else plugin_id
34
- handle = embedder_bind.ml_embedder_create(model_path, tokenizer_file, plugin_id_str)
34
+ # New parameter order: model_path, plugin_id, tokenizer_path (optional)
35
+ handle = embedder_bind.ml_embedder_create(model_path, plugin_id_str, tokenizer_file)
35
36
  return cls(handle)
36
37
 
37
38
  def eject(self):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nexaai
3
- Version: 1.0.13rc2
3
+ Version: 1.0.14
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=jXdC4vv6DBK1fVewYTYSUhOOYfvf_Mk81UIeMGGIKUg,2029
2
- nexaai/_stub.cpython-310-darwin.so,sha256=WfCfEe23sXyZYx4EE3YLSyHkCtfEwjqPE9KkRBwjAlk,66768
3
- nexaai/_version.py,sha256=phWIqzyUJzHhqe_9HXfqatPXqoSNklwhM8R24HQckh8,143
2
+ nexaai/_stub.cpython-310-darwin.so,sha256=nodd5UTCN3hgtNkAy9uciIi9XIZtXICI1DHE8imogeg,66768
3
+ nexaai/_version.py,sha256=XJJ5sCRRK0ObYxuo2AEYh59SLPLwfNi7N3GFFBJImeg,139
4
4
  nexaai/asr.py,sha256=NljMXDErwPNMOPaRkJZMEDka9Nk8xyur7L8i924TStY,2054
5
5
  nexaai/base.py,sha256=N8PRgDFA-XPku2vWnQIofQ7ipz3pPlO6f8YZGnuhquE,982
6
6
  nexaai/common.py,sha256=yBnIbqYaQYnfrl7IczOBh6MDibYZVxwaRJEglYcKgGs,3422
@@ -17,8 +17,8 @@ nexaai/asr_impl/mlx_asr_impl.py,sha256=eosd8-TIWAOwV0HltmoFrLwzXHcU4jyxtncvuZE9p
17
17
  nexaai/asr_impl/pybind_asr_impl.py,sha256=pE9Hb_hMi5yAc4MF83bLVOb8zDtreCkB3_u7XED9YpA,1516
18
18
  nexaai/binds/__init__.py,sha256=eYuay_8DDXeOUWz2_R9HFSabohxs6hvZn391t2L0Po0,104
19
19
  nexaai/binds/common_bind.cpython-310-darwin.so,sha256=nkZyv_jnzSWaLxb2pVlVR4baM2SM9pCLPVLyjKaRfeA,217232
20
- nexaai/binds/embedder_bind.cpython-310-darwin.so,sha256=cTOVskne0NBKwdUPr4758O2WqHzTQjeMvAODumBAD_I,202064
21
- nexaai/binds/libnexa_bridge.dylib,sha256=h6YxV7r-9aQO8cSflaesy9W6YuQGtN4SQaOd1DOREFU,251144
20
+ nexaai/binds/embedder_bind.cpython-310-darwin.so,sha256=uM7T2TOW9CYGHDsiUndGOsgBSIKlyvWzqFwEvUKcwQ8,202064
21
+ nexaai/binds/libnexa_bridge.dylib,sha256=SN3ukmhH2QIDYKR0xurAsEgVyrLmUzAH9xeVTzBIHcA,251144
22
22
  nexaai/binds/llm_bind.cpython-310-darwin.so,sha256=8ONMAgigH_zgrvFwNi-OUeIFZD4kWyLflntD54gbUa8,182704
23
23
  nexaai/binds/vlm_bind.cpython-310-darwin.so,sha256=HV8bwVvJuhX659TQml0fL8FS4sQmaWzKv87vzPgg4sU,182704
24
24
  nexaai/binds/nexa_llama_cpp/libggml-base.dylib,sha256=JM4oOkie1su0ES5hMdtILeQHlRukRzH1vTleTupUXhg,650736
@@ -186,7 +186,7 @@ nexaai/cv_impl/mlx_cv_impl.py,sha256=gKECQOv8iaWwG3bl7xeqVy2NN_9K7tYerIFzfn4eLo4
186
186
  nexaai/cv_impl/pybind_cv_impl.py,sha256=uSmwBste4cT7c8DQmXzRLmzwDf773PAbXNYWW1UzVls,1064
187
187
  nexaai/embedder_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
188
188
  nexaai/embedder_impl/mlx_embedder_impl.py,sha256=dTjOC1VJ9ypIgCvkK_jKNSWpswbg132rDcTzWcL5oFA,4482
189
- nexaai/embedder_impl/pybind_embedder_impl.py,sha256=Ga1JYauVkRq6jwAGL7Xx5HDaIx483_v9gZVoTyd3xNU,3495
189
+ nexaai/embedder_impl/pybind_embedder_impl.py,sha256=9gsHuSbF64IZH9ugqv4-GTUuRpy-FJNUb0cww2QR3uA,3575
190
190
  nexaai/image_gen_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
191
191
  nexaai/image_gen_impl/mlx_image_gen_impl.py,sha256=BuDkksvXyb4J02GsdnbGAmYckfUU0Eah6BimoMD3QqY,11219
192
192
  nexaai/image_gen_impl/pybind_image_gen_impl.py,sha256=ms34VYoD5AxZFG6cIG0QAJDjCtfphaZ1bHzKzey1xF8,3692
@@ -518,7 +518,7 @@ nexaai/utils/quantization_utils.py,sha256=4gvp6UQfSO9G1FYBwnFtQspTzH9sDbi1PBXw2t
518
518
  nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
519
519
  nexaai/vlm_impl/mlx_vlm_impl.py,sha256=od1R1mRoIgPG3NHC7JiDlcB_YJY8aklX8Em3ZkeHNpE,10734
520
520
  nexaai/vlm_impl/pybind_vlm_impl.py,sha256=n4lBTeDA9i07Fz1sq4694XkA2XQtnJnR9RaaKK0CrcM,8458
521
- nexaai-1.0.13rc2.dist-info/METADATA,sha256=QDTSLe7dtUuRQzCK7l0wE49_GoDsm8QN5W_3mPhdlfc,1201
522
- nexaai-1.0.13rc2.dist-info/WHEEL,sha256=T2p57lol9__xkoU6aJTyN1Pm43ZpRU3q6km7mIbrAMs,114
523
- nexaai-1.0.13rc2.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
524
- nexaai-1.0.13rc2.dist-info/RECORD,,
521
+ nexaai-1.0.14.dist-info/METADATA,sha256=q4KSIrvgHnwmqzumEv3leMpqFjLX1dopNfgFCJyt1o4,1198
522
+ nexaai-1.0.14.dist-info/WHEEL,sha256=T2p57lol9__xkoU6aJTyN1Pm43ZpRU3q6km7mIbrAMs,114
523
+ nexaai-1.0.14.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
524
+ nexaai-1.0.14.dist-info/RECORD,,