nexaai 1.0.13rc2__cp310-cp310-macosx_13_0_x86_64.whl → 1.0.14__cp310-cp310-macosx_13_0_x86_64.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=6Rm0bf_EO8r2MetZDjJ7E65gIcteq6ZDkPSLYh2NJj4,49832
3
- nexaai/_version.py,sha256=phWIqzyUJzHhqe_9HXfqatPXqoSNklwhM8R24HQckh8,143
2
+ nexaai/_stub.cpython-310-darwin.so,sha256=oLRccAOAE7XoQnV7dFqx2En_MfS-9iOgiHok3dPa5tE,49832
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=7xH5yNkK6Ot-2f9vxmultr9NIeTemlmN5tHIYp8SZHs,233960
20
- nexaai/binds/embedder_bind.cpython-310-darwin.so,sha256=eQwf9m58Yrl_ZZzWlstBHfHD-s3UMFi0JNPty-Pc524,202032
21
- nexaai/binds/libnexa_bridge.dylib,sha256=uJ6vhHoU5Q-QE8jC2PHPqVGAKhgUig_GWZ-HODXrYqs,250376
20
+ nexaai/binds/embedder_bind.cpython-310-darwin.so,sha256=XTpR3_y0K2EJkDOYxzm1_UrpimQjVbbBHAaqpowdxmk,202032
21
+ nexaai/binds/libnexa_bridge.dylib,sha256=3_neBqL5W1Y9cwV4AMwG8ZytRTxaEw6idCTzCV2JtW0,250376
22
22
  nexaai/binds/llm_bind.cpython-310-darwin.so,sha256=08DuSv91LIVCS5BSfSx3Nuz088h62lm3MV2yDTSIKt4,183008
23
23
  nexaai/binds/vlm_bind.cpython-310-darwin.so,sha256=x1hxuCx09P69swsVj46FXHKUH5Ln39ISBjBscyJWESM,183000
24
24
  nexaai/binds/nexa_llama_cpp/libggml-base.dylib,sha256=GyOkHOM-5uHp7NUZ4Sr9BWak6BYpcc9aqI9A-zPnQp4,629528
@@ -33,7 +33,7 @@ nexaai/cv_impl/mlx_cv_impl.py,sha256=gKECQOv8iaWwG3bl7xeqVy2NN_9K7tYerIFzfn4eLo4
33
33
  nexaai/cv_impl/pybind_cv_impl.py,sha256=uSmwBste4cT7c8DQmXzRLmzwDf773PAbXNYWW1UzVls,1064
34
34
  nexaai/embedder_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
35
  nexaai/embedder_impl/mlx_embedder_impl.py,sha256=dTjOC1VJ9ypIgCvkK_jKNSWpswbg132rDcTzWcL5oFA,4482
36
- nexaai/embedder_impl/pybind_embedder_impl.py,sha256=Ga1JYauVkRq6jwAGL7Xx5HDaIx483_v9gZVoTyd3xNU,3495
36
+ nexaai/embedder_impl/pybind_embedder_impl.py,sha256=9gsHuSbF64IZH9ugqv4-GTUuRpy-FJNUb0cww2QR3uA,3575
37
37
  nexaai/image_gen_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
38
  nexaai/image_gen_impl/mlx_image_gen_impl.py,sha256=BuDkksvXyb4J02GsdnbGAmYckfUU0Eah6BimoMD3QqY,11219
39
39
  nexaai/image_gen_impl/pybind_image_gen_impl.py,sha256=ms34VYoD5AxZFG6cIG0QAJDjCtfphaZ1bHzKzey1xF8,3692
@@ -365,7 +365,7 @@ nexaai/utils/quantization_utils.py,sha256=4gvp6UQfSO9G1FYBwnFtQspTzH9sDbi1PBXw2t
365
365
  nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
366
366
  nexaai/vlm_impl/mlx_vlm_impl.py,sha256=od1R1mRoIgPG3NHC7JiDlcB_YJY8aklX8Em3ZkeHNpE,10734
367
367
  nexaai/vlm_impl/pybind_vlm_impl.py,sha256=n4lBTeDA9i07Fz1sq4694XkA2XQtnJnR9RaaKK0CrcM,8458
368
- nexaai-1.0.13rc2.dist-info/METADATA,sha256=QDTSLe7dtUuRQzCK7l0wE49_GoDsm8QN5W_3mPhdlfc,1201
369
- nexaai-1.0.13rc2.dist-info/WHEEL,sha256=0KYp5feZ1CMUhsfFXKpSQTbSmQbXy4mv6yPPVBXg2EM,110
370
- nexaai-1.0.13rc2.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
371
- nexaai-1.0.13rc2.dist-info/RECORD,,
368
+ nexaai-1.0.14.dist-info/METADATA,sha256=q4KSIrvgHnwmqzumEv3leMpqFjLX1dopNfgFCJyt1o4,1198
369
+ nexaai-1.0.14.dist-info/WHEEL,sha256=0KYp5feZ1CMUhsfFXKpSQTbSmQbXy4mv6yPPVBXg2EM,110
370
+ nexaai-1.0.14.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
371
+ nexaai-1.0.14.dist-info/RECORD,,