nexaai 1.0.16rc7__cp310-cp310-macosx_13_0_x86_64.whl → 1.0.16rc8__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.16-rc7"
4
+ __version__ = "1.0.16-rc8"
Binary file
@@ -42,8 +42,8 @@ class ImageGen(ProfilingMixin):
42
42
  result_image = self.sd_gen.txt2img(input.prompt, internal_config)
43
43
 
44
44
  parent_dir = os.path.dirname(input.output_path)
45
- if not os.path.exists(parent_dir):
46
- os.makedirs(parent_dir)
45
+ if parent_dir:
46
+ os.makedirs(parent_dir, exist_ok=True)
47
47
  result_image.to_pil().save(input.output_path)
48
48
 
49
49
  return ImageGenOutput(output_image_path=input.output_path)
@@ -75,8 +75,8 @@ class ImageGen(ProfilingMixin):
75
75
  init_image, input.prompt, internal_config)
76
76
 
77
77
  parent_dir = os.path.dirname(input.output_path)
78
- if not os.path.exists(parent_dir):
79
- os.makedirs(parent_dir)
80
-
78
+ if parent_dir:
79
+ os.makedirs(parent_dir, exist_ok=True)
81
80
  result_image.to_pil().save(input.output_path)
81
+
82
82
  return ImageGenOutput(output_image_path=input.output_path)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nexaai
3
- Version: 1.0.16rc7
3
+ Version: 1.0.16rc8
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=_33JFvZQBHfHUA_eGD5DV9FSvSHDM8xf9-pEZy_zDn8,49832
3
- nexaai/_version.py,sha256=j13hsB2MZcPPz0pAAb_FwqEsjWFiMhOvhGEqtsI1rzE,143
2
+ nexaai/_stub.cpython-310-darwin.so,sha256=zvVd8ZOu9tG4yYAHPt-3aGryeGsJ7-5c1KTZdh2U99k,49832
3
+ nexaai/_version.py,sha256=HYA8rSkVin3FWg68b5gJ7nJTXAuo0Wk_FZ6Xr8Fv-hQ,143
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
@@ -18,7 +18,7 @@ nexaai/asr_impl/pybind_asr_impl.py,sha256=pE9Hb_hMi5yAc4MF83bLVOb8zDtreCkB3_u7XE
18
18
  nexaai/binds/__init__.py,sha256=eYuay_8DDXeOUWz2_R9HFSabohxs6hvZn391t2L0Po0,104
19
19
  nexaai/binds/common_bind.cpython-310-darwin.so,sha256=KX_nfaQQPzxGv0GS0efcO-ByWai7y7RskMZvSAAaJWI,233960
20
20
  nexaai/binds/embedder_bind.cpython-310-darwin.so,sha256=b2NoXFAJvPLi_P1X7lXLKmAUU0v2HJI3Zwa10gfqHdw,202032
21
- nexaai/binds/libnexa_bridge.dylib,sha256=JxDb2t5A2RsWZ-M9hkPQbMGLFbQyaRFHd2FkUbiPMTI,250376
21
+ nexaai/binds/libnexa_bridge.dylib,sha256=yaKtbQlBTvXqO14Ge5Pz3XFJpAu-wbOh5Fjjs9410xY,250376
22
22
  nexaai/binds/llm_bind.cpython-310-darwin.so,sha256=aKcT2kW1PL1xPFX7vsT6Gs79ZydcVfg8bKtnEthRpI4,183008
23
23
  nexaai/binds/vlm_bind.cpython-310-darwin.so,sha256=LGd-tykePnQFfGca25HnPIBfXsfrMzbwyx6d5Ld3xps,183000
24
24
  nexaai/binds/nexa_llama_cpp/libggml-base.dylib,sha256=GyOkHOM-5uHp7NUZ4Sr9BWak6BYpcc9aqI9A-zPnQp4,629528
@@ -59,7 +59,7 @@ nexaai/mlx_backend/embedding/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
59
59
  nexaai/mlx_backend/embedding/modeling/nexa_jina_v2.py,sha256=F9Z_9r-Dh0wNThiMp5W5hqE2dt5bf4ps5_c6h4BuWGw,15218
60
60
  nexaai/mlx_backend/image_gen/__init__.py,sha256=8eFAF00-yWdEs0LJiszjHEsgPDAF8tSruBYvujCNgE0,42
61
61
  nexaai/mlx_backend/image_gen/generate_sd.py,sha256=8DuPsJlxVf1LlFARVThiW807G-0cWPReYONj-x8qKRo,8616
62
- nexaai/mlx_backend/image_gen/interface.py,sha256=9O1Vt8dNv0H7h95m4bUXNtkds8GW3MqzIA85pDI1GCk,3295
62
+ nexaai/mlx_backend/image_gen/interface.py,sha256=7ElIiLm5gZXAfKPs497wLkn8qqLFLL5T-oV-hXVmEdw,3285
63
63
  nexaai/mlx_backend/image_gen/main.py,sha256=jKkGDfqmGIsQwhHJaL_j_CTtr04xplD6dnnGe3AcilU,8123
64
64
  nexaai/mlx_backend/image_gen/stable_diffusion/__init__.py,sha256=wriLb0wA5vCBlCoQMtfKrVVWMJw8fhXCCk6R9_Nrb9c,9524
65
65
  nexaai/mlx_backend/image_gen/stable_diffusion/clip.py,sha256=feHQXi1NiGa01AMo7nK8M-sgBoZBHI95xAGMfAv64kE,3733
@@ -387,7 +387,7 @@ nexaai/utils/quantization_utils.py,sha256=4gvp6UQfSO9G1FYBwnFtQspTzH9sDbi1PBXw2t
387
387
  nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
388
388
  nexaai/vlm_impl/mlx_vlm_impl.py,sha256=pLtWm_ckz8a0U-AtAOMVseFDO4OVPvHyYO2KlfBaGYk,10833
389
389
  nexaai/vlm_impl/pybind_vlm_impl.py,sha256=FAbhpRJzHgI78r0mUvKybO97R1szvNhH0aTn_I52oT4,8597
390
- nexaai-1.0.16rc7.dist-info/METADATA,sha256=ucGnrrkWqGfXa37_VsDKXkQHFPwYOa4LMEYOV0Ew5ck,1201
391
- nexaai-1.0.16rc7.dist-info/WHEEL,sha256=0KYp5feZ1CMUhsfFXKpSQTbSmQbXy4mv6yPPVBXg2EM,110
392
- nexaai-1.0.16rc7.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
393
- nexaai-1.0.16rc7.dist-info/RECORD,,
390
+ nexaai-1.0.16rc8.dist-info/METADATA,sha256=mMeCi8dxuYWGVRLrai250qYihewe89ROiq72He4RPSo,1201
391
+ nexaai-1.0.16rc8.dist-info/WHEEL,sha256=0KYp5feZ1CMUhsfFXKpSQTbSmQbXy4mv6yPPVBXg2EM,110
392
+ nexaai-1.0.16rc8.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
393
+ nexaai-1.0.16rc8.dist-info/RECORD,,