nexaai 1.0.16rc7__cp310-cp310-macosx_14_0_universal2.whl → 1.0.16rc8__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.
- nexaai/_stub.cpython-310-darwin.so +0 -0
- nexaai/_version.py +1 -1
- nexaai/binds/libnexa_bridge.dylib +0 -0
- nexaai/mlx_backend/image_gen/interface.py +5 -5
- {nexaai-1.0.16rc7.dist-info → nexaai-1.0.16rc8.dist-info}/METADATA +1 -1
- {nexaai-1.0.16rc7.dist-info → nexaai-1.0.16rc8.dist-info}/RECORD +8 -8
- {nexaai-1.0.16rc7.dist-info → nexaai-1.0.16rc8.dist-info}/WHEEL +0 -0
- {nexaai-1.0.16rc7.dist-info → nexaai-1.0.16rc8.dist-info}/top_level.txt +0 -0
|
Binary file
|
nexaai/_version.py
CHANGED
|
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
|
|
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
|
|
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
|
nexaai/__init__.py,sha256=jXdC4vv6DBK1fVewYTYSUhOOYfvf_Mk81UIeMGGIKUg,2029
|
|
2
|
-
nexaai/_stub.cpython-310-darwin.so,sha256=
|
|
3
|
-
nexaai/_version.py,sha256=
|
|
2
|
+
nexaai/_stub.cpython-310-darwin.so,sha256=DnOQuekaRn7SYXVp6qVxMUgSxhU7wwLr-uXCKx35eDE,66768
|
|
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=hVxY76tn7hN6uHDIgM7LWNvgoudHgNZVoaygM9X1RWE,217232
|
|
20
20
|
nexaai/binds/embedder_bind.cpython-310-darwin.so,sha256=tPa0c0Dv_GiW66fgmAGWGCHXRGNApznqoQS0eQx9GFM,202064
|
|
21
|
-
nexaai/binds/libnexa_bridge.dylib,sha256
|
|
21
|
+
nexaai/binds/libnexa_bridge.dylib,sha256=-Lg6P-JQqA7gNihPuztyVcUQ3sXkGGiCDJCAEB8EBiU,251144
|
|
22
22
|
nexaai/binds/llm_bind.cpython-310-darwin.so,sha256=6vRO5eOsL6s-hCKdz6onIjBKR_wcpCIsXHtUJY9vJBI,182704
|
|
23
23
|
nexaai/binds/vlm_bind.cpython-310-darwin.so,sha256=nd6eG_m2EiPthzkSZ97hlXWUOZQir4cQfFJZ4p6eR2U,182704
|
|
24
24
|
nexaai/binds/nexa_llama_cpp/libggml-base.dylib,sha256=JM4oOkie1su0ES5hMdtILeQHlRukRzH1vTleTupUXhg,650736
|
|
@@ -212,7 +212,7 @@ nexaai/mlx_backend/embedding/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
212
212
|
nexaai/mlx_backend/embedding/modeling/nexa_jina_v2.py,sha256=F9Z_9r-Dh0wNThiMp5W5hqE2dt5bf4ps5_c6h4BuWGw,15218
|
|
213
213
|
nexaai/mlx_backend/image_gen/__init__.py,sha256=8eFAF00-yWdEs0LJiszjHEsgPDAF8tSruBYvujCNgE0,42
|
|
214
214
|
nexaai/mlx_backend/image_gen/generate_sd.py,sha256=8DuPsJlxVf1LlFARVThiW807G-0cWPReYONj-x8qKRo,8616
|
|
215
|
-
nexaai/mlx_backend/image_gen/interface.py,sha256=
|
|
215
|
+
nexaai/mlx_backend/image_gen/interface.py,sha256=7ElIiLm5gZXAfKPs497wLkn8qqLFLL5T-oV-hXVmEdw,3285
|
|
216
216
|
nexaai/mlx_backend/image_gen/main.py,sha256=jKkGDfqmGIsQwhHJaL_j_CTtr04xplD6dnnGe3AcilU,8123
|
|
217
217
|
nexaai/mlx_backend/image_gen/stable_diffusion/__init__.py,sha256=wriLb0wA5vCBlCoQMtfKrVVWMJw8fhXCCk6R9_Nrb9c,9524
|
|
218
218
|
nexaai/mlx_backend/image_gen/stable_diffusion/clip.py,sha256=feHQXi1NiGa01AMo7nK8M-sgBoZBHI95xAGMfAv64kE,3733
|
|
@@ -540,7 +540,7 @@ nexaai/utils/quantization_utils.py,sha256=4gvp6UQfSO9G1FYBwnFtQspTzH9sDbi1PBXw2t
|
|
|
540
540
|
nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
541
541
|
nexaai/vlm_impl/mlx_vlm_impl.py,sha256=pLtWm_ckz8a0U-AtAOMVseFDO4OVPvHyYO2KlfBaGYk,10833
|
|
542
542
|
nexaai/vlm_impl/pybind_vlm_impl.py,sha256=FAbhpRJzHgI78r0mUvKybO97R1szvNhH0aTn_I52oT4,8597
|
|
543
|
-
nexaai-1.0.
|
|
544
|
-
nexaai-1.0.
|
|
545
|
-
nexaai-1.0.
|
|
546
|
-
nexaai-1.0.
|
|
543
|
+
nexaai-1.0.16rc8.dist-info/METADATA,sha256=mMeCi8dxuYWGVRLrai250qYihewe89ROiq72He4RPSo,1201
|
|
544
|
+
nexaai-1.0.16rc8.dist-info/WHEEL,sha256=T2p57lol9__xkoU6aJTyN1Pm43ZpRU3q6km7mIbrAMs,114
|
|
545
|
+
nexaai-1.0.16rc8.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
|
|
546
|
+
nexaai-1.0.16rc8.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|