nexaai 1.0.18rc1__cp310-cp310-macosx_14_0_universal2.whl → 1.0.19__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.

Files changed (215) hide show
  1. nexaai/_stub.cpython-310-darwin.so +0 -0
  2. nexaai/_version.py +1 -1
  3. nexaai/asr.py +2 -1
  4. nexaai/binds/{nexa_llama_cpp → cpu_gpu}/libggml-base.dylib +0 -0
  5. nexaai/binds/{nexa_llama_cpp → cpu_gpu}/libmtmd.dylib +0 -0
  6. nexaai/binds/{nexa_llama_cpp/libllama.dylib → cpu_gpu/libnexa_cpu_gpu.dylib} +0 -0
  7. nexaai/binds/{nexa_llama_cpp → cpu_gpu}/libnexa_plugin.dylib +0 -0
  8. nexaai/binds/libnexa_bridge.dylib +0 -0
  9. nexaai/binds/llm_bind.cpython-310-darwin.so +0 -0
  10. nexaai/binds/{nexa_mlx → metal}/libnexa_plugin.dylib +0 -0
  11. nexaai/binds/{nexa_nexaml → nexaml}/libggml-base.dylib +0 -0
  12. nexaai/binds/{nexa_nexaml → nexaml}/libnexa-mm-process.dylib +0 -0
  13. nexaai/binds/{nexa_nexaml → nexaml}/libnexa-sampling.dylib +0 -0
  14. nexaai/binds/nexaml/libnexa_plugin.dylib +0 -0
  15. nexaai/binds/nexaml/libnexaproc.dylib +0 -0
  16. nexaai/binds/{nexa_nexaml → nexaml}/libomp.dylib +0 -0
  17. nexaai/binds/nexaml/libqwen3-vl.dylib +0 -0
  18. nexaai/binds/nexaml/libqwen3vl-vision.dylib +0 -0
  19. nexaai/cv.py +2 -1
  20. nexaai/embedder.py +1 -1
  21. nexaai/image_gen.py +2 -1
  22. nexaai/llm.py +5 -3
  23. nexaai/llm_impl/mlx_llm_impl.py +2 -0
  24. nexaai/llm_impl/pybind_llm_impl.py +2 -0
  25. nexaai/mlx_backend/vlm/generate_qwen3_vl.py +176 -96
  26. nexaai/mlx_backend/vlm/generate_qwen3_vl_moe.py +259 -0
  27. nexaai/mlx_backend/vlm/interface.py +99 -30
  28. nexaai/mlx_backend/vlm/main.py +58 -9
  29. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/qwen3vl.py +338 -299
  30. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/__init__.py +0 -0
  31. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/base.py +117 -0
  32. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/cache.py +531 -0
  33. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/generate.py +701 -0
  34. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/rope_utils.py +255 -0
  35. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/sample_utils.py +303 -0
  36. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/tokenizer_utils.py +407 -0
  37. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/processor.py +476 -0
  38. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/qwen3vl_moe.py +1308 -0
  39. nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/switch_layers.py +210 -0
  40. nexaai/rerank.py +2 -1
  41. nexaai/tts.py +2 -1
  42. nexaai/utils/manifest_utils.py +222 -15
  43. nexaai/utils/model_manager.py +120 -14
  44. nexaai/utils/model_types.py +2 -0
  45. nexaai/vlm.py +2 -1
  46. {nexaai-1.0.18rc1.dist-info → nexaai-1.0.19.dist-info}/METADATA +1 -2
  47. {nexaai-1.0.18rc1.dist-info → nexaai-1.0.19.dist-info}/RECORD +211 -200
  48. nexaai/binds/nexa_nexaml/libnexa_plugin.dylib +0 -0
  49. nexaai/binds/nexa_nexaml/libnexaproc.dylib +0 -0
  50. nexaai/binds/nexa_nexaml/libqwen3-vl.dylib +0 -0
  51. nexaai/binds/nexa_nexaml/libqwen3vl-vision.dylib +0 -0
  52. /nexaai/binds/{nexa_llama_cpp → cpu_gpu}/libggml-cpu.so +0 -0
  53. /nexaai/binds/{nexa_llama_cpp → cpu_gpu}/libggml-metal.so +0 -0
  54. /nexaai/binds/{nexa_llama_cpp → cpu_gpu}/libggml.dylib +0 -0
  55. /nexaai/binds/{nexa_mlx → metal}/py-lib/ml.py +0 -0
  56. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/__init__.py +0 -0
  57. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/__init__.py +0 -0
  58. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/__init__.py +0 -0
  59. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/bigvgan/__init__.py +0 -0
  60. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/bigvgan/activation.py +0 -0
  61. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/bigvgan/amp.py +0 -0
  62. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/bigvgan/bigvgan.py +0 -0
  63. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/bigvgan/conv.py +0 -0
  64. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/bigvgan/resample.py +0 -0
  65. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/descript/__init__.py +0 -0
  66. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/descript/base.py +0 -0
  67. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/descript/dac.py +0 -0
  68. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/descript/nn/__init__.py +0 -0
  69. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/descript/nn/layers.py +0 -0
  70. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/descript/nn/quantize.py +0 -0
  71. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/encodec/__init__.py +0 -0
  72. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/encodec/encodec.py +0 -0
  73. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/mimi/__init__.py +0 -0
  74. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/mimi/mimi.py +0 -0
  75. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/mimi/modules/__init__.py +0 -0
  76. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/mimi/modules/conv.py +0 -0
  77. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/mimi/modules/kv_cache.py +0 -0
  78. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/mimi/modules/quantization.py +0 -0
  79. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/mimi/modules/seanet.py +0 -0
  80. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/mimi/modules/transformer.py +0 -0
  81. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/s3/__init__.py +0 -0
  82. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/s3/model.py +0 -0
  83. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/s3/model_v2.py +0 -0
  84. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/s3/utils.py +0 -0
  85. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/snac/__init__.py +0 -0
  86. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/snac/attention.py +0 -0
  87. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/snac/layers.py +0 -0
  88. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/snac/snac.py +0 -0
  89. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/snac/vq.py +0 -0
  90. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/vocos/__init__.py +0 -0
  91. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/vocos/mel.py +0 -0
  92. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/models/vocos/vocos.py +0 -0
  93. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/tests/__init__.py +0 -0
  94. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/tests/test_bigvgan.py +0 -0
  95. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/tests/test_descript.py +0 -0
  96. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/tests/test_encodec.py +0 -0
  97. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/tests/test_mimi.py +0 -0
  98. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/tests/test_s3.py +0 -0
  99. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/tests/test_snac.py +0 -0
  100. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/codec/tests/test_vocos.py +0 -0
  101. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/server.py +0 -0
  102. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/sts/__init__.py +0 -0
  103. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/sts/tests/test_voice_pipeline.py +0 -0
  104. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/sts/voice_pipeline.py +0 -0
  105. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/__init__.py +0 -0
  106. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/generate.py +0 -0
  107. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/__init__.py +0 -0
  108. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/parakeet/__init__.py +0 -0
  109. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/parakeet/alignment.py +0 -0
  110. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/parakeet/attention.py +0 -0
  111. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/parakeet/audio.py +0 -0
  112. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/parakeet/conformer.py +0 -0
  113. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/parakeet/ctc.py +0 -0
  114. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/parakeet/parakeet.py +0 -0
  115. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/parakeet/rnnt.py +0 -0
  116. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/parakeet/tokenizer.py +0 -0
  117. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/wav2vec/feature_extractor.py +0 -0
  118. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/wav2vec/wav2vec.py +0 -0
  119. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/whisper/__init__.py +0 -0
  120. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/whisper/audio.py +0 -0
  121. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/whisper/decoding.py +0 -0
  122. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/whisper/timing.py +0 -0
  123. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/whisper/tokenizer.py +0 -0
  124. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/whisper/whisper.py +0 -0
  125. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/models/whisper/writers.py +0 -0
  126. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/tests/test_models.py +0 -0
  127. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/stt/utils.py +0 -0
  128. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/__init__.py +0 -0
  129. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/audio_player.py +0 -0
  130. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/convert.py +0 -0
  131. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/generate.py +0 -0
  132. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/__init__.py +0 -0
  133. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/bark/__init__.py +0 -0
  134. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/bark/bark.py +0 -0
  135. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/bark/isftnet.py +0 -0
  136. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/bark/pipeline.py +0 -0
  137. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/base.py +0 -0
  138. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/dia/__init__.py +0 -0
  139. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/dia/audio.py +0 -0
  140. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/dia/config.py +0 -0
  141. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/dia/dia.py +0 -0
  142. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/dia/layers.py +0 -0
  143. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/__init__.py +0 -0
  144. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/attention.py +0 -0
  145. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/bigvgan.py +0 -0
  146. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/conformer.py +0 -0
  147. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py +0 -0
  148. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py +0 -0
  149. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py +0 -0
  150. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py +0 -0
  151. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py +0 -0
  152. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/gpt2.py +0 -0
  153. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/indextts.py +0 -0
  154. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/mel.py +0 -0
  155. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/normalize.py +0 -0
  156. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/indextts/perceiver.py +0 -0
  157. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/interpolate.py +0 -0
  158. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/kokoro/__init__.py +0 -0
  159. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/kokoro/istftnet.py +0 -0
  160. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/kokoro/kokoro.py +0 -0
  161. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/kokoro/modules.py +0 -0
  162. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/kokoro/pipeline.py +0 -0
  163. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/kokoro/voice.py +0 -0
  164. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/llama/__init__.py +0 -0
  165. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/llama/llama.py +0 -0
  166. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/outetts/__init__.py +0 -0
  167. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/outetts/audio_processor.py +0 -0
  168. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/outetts/dac_interface.py +0 -0
  169. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/outetts/outetts.py +0 -0
  170. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/outetts/prompt_processor.py +0 -0
  171. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/outetts/tokens.py +0 -0
  172. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/sesame/__init__.py +0 -0
  173. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/sesame/attention.py +0 -0
  174. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/sesame/sesame.py +0 -0
  175. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/sesame/watermarking.py +0 -0
  176. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/__init__.py +0 -0
  177. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/audio_tokenizer.py +0 -0
  178. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/bicodec.py +0 -0
  179. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/__init__.py +0 -0
  180. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/blocks/__init__.py +0 -0
  181. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/blocks/sampler.py +0 -0
  182. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py +0 -0
  183. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py +0 -0
  184. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py +0 -0
  185. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py +0 -0
  186. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py +0 -0
  187. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/residual.py +0 -0
  188. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/residual_fsq.py +0 -0
  189. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/speaker/__init__.py +0 -0
  190. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py +0 -0
  191. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py +0 -0
  192. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py +0 -0
  193. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py +0 -0
  194. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/spark.py +0 -0
  195. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/utils/audio.py +0 -0
  196. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/utils/file.py +0 -0
  197. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/models/spark/utils/token_parser.py +0 -0
  198. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/tests/__init__.py +0 -0
  199. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/tests/test_base.py +0 -0
  200. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/tests/test_convert.py +0 -0
  201. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/tests/test_interpolate.py +0 -0
  202. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/tests/test_models.py +0 -0
  203. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/tts/utils.py +0 -0
  204. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/utils.py +0 -0
  205. /nexaai/binds/{nexa_mlx → metal}/py-lib/mlx_audio/version.py +0 -0
  206. /nexaai/binds/{nexa_mlx → metal}/py-lib/profiling.py +0 -0
  207. /nexaai/binds/{nexa_nexaml → nexaml}/libfftw3.3.dylib +0 -0
  208. /nexaai/binds/{nexa_nexaml → nexaml}/libfftw3f.3.dylib +0 -0
  209. /nexaai/binds/{nexa_nexaml → nexaml}/libggml-cpu.so +0 -0
  210. /nexaai/binds/{nexa_nexaml → nexaml}/libggml-metal.so +0 -0
  211. /nexaai/binds/{nexa_nexaml → nexaml}/libggml.dylib +0 -0
  212. /nexaai/binds/{nexa_nexaml → nexaml}/libmp3lame.0.dylib +0 -0
  213. /nexaai/binds/{nexa_nexaml → nexaml}/libmpg123.0.dylib +0 -0
  214. {nexaai-1.0.18rc1.dist-info → nexaai-1.0.19.dist-info}/WHEEL +0 -0
  215. {nexaai-1.0.18rc1.dist-info → nexaai-1.0.19.dist-info}/top_level.txt +0 -0
@@ -1,202 +1,202 @@
1
1
  nexaai/__init__.py,sha256=L8oB7GFZZMGnUpCg0PecDbI_ycKuQak-ZEJ4Y12_QIw,2184
2
- nexaai/_stub.cpython-310-darwin.so,sha256=VYWttAtqc3mQVF-7aOvKp4dHkcPgheIxpE1BXC4WAz8,66768
3
- nexaai/_version.py,sha256=r2DyxV8iC-jw-BsbYHj0DpfWtHJJsBiyplAmxlDRJoI,143
4
- nexaai/asr.py,sha256=NljMXDErwPNMOPaRkJZMEDka9Nk8xyur7L8i924TStY,2054
2
+ nexaai/_stub.cpython-310-darwin.so,sha256=vOhOmP1_snl2EpHKSeKFCPBSY8NrJKq6Hi7ppwLDO-w,66768
3
+ nexaai/_version.py,sha256=Nz86vC6dD8388Qx9sFqoLKATRIX8QN089hCZiAN91tw,139
4
+ nexaai/asr.py,sha256=BglyvLM_SiLbQwKhihOuiyX2m1I9-Kq_gYcE7vpjBPY,2083
5
5
  nexaai/base.py,sha256=N8PRgDFA-XPku2vWnQIofQ7ipz3pPlO6f8YZGnuhquE,982
6
6
  nexaai/common.py,sha256=Y0NJNLTi4Nq4x1WL6PQsSvGUto0eGmWhjpsC6jcekfA,3444
7
- nexaai/cv.py,sha256=RHCDo8gvBH8BkGZx7qVyp-OKxqi7E1GG9XzyaXehCNA,3273
8
- nexaai/embedder.py,sha256=Cw0tSHkPgd-RI62afCqQAcTHMnQhaI2CvfTMO-1JKOg,2452
9
- nexaai/image_gen.py,sha256=0C_5Tjj4BYmxLbmMmvwajp-yy2mmEEOKwBFnDQNPzx4,4356
10
- nexaai/llm.py,sha256=S1o_k2VQoF5w2wO25f142OO1R75TP89Ii69VZv8pIGo,3567
7
+ nexaai/cv.py,sha256=gpE3F__6bjh8OQKNJZs-QrBuCxqMj2eH-u6HR90vGZE,3302
8
+ nexaai/embedder.py,sha256=ZzXGSv5Es5tXphRR4UPlT90RzQP1doGV_ate0NeUJVI,2462
9
+ nexaai/image_gen.py,sha256=MkGw1HXqqv8cJzbiGERNPKFXfq9vMOlvuq0pgekXw68,4385
10
+ nexaai/llm.py,sha256=-agVJuj0FOaDvDiT-fFSOpoyVt-MpNudBucsod3Vp1M,3673
11
11
  nexaai/log.py,sha256=Kwo2CIfWN6iP4M4F5EUIV8KIO5hAsvz6HZAaOwJ27Og,2628
12
- nexaai/rerank.py,sha256=vWaBucoQ1wz-2iYnZqyFIcEjm-4Xcs1KDbFN5X8zzDQ,1872
12
+ nexaai/rerank.py,sha256=Ib8BqX7vAEI87ILxUq1U1aSd3Z3bgPK2tSSiA2tg4ZU,1901
13
13
  nexaai/runtime.py,sha256=JvllhlNPgYGLbgGyX2yNvmGzT0lZ5XbvTvEo8sZG_Ho,2067
14
- nexaai/tts.py,sha256=ZnBpWUxIfHhh7KfEjddtH7hHOTa91zg7ogGLakMIALo,2167
15
- nexaai/vlm.py,sha256=OCxwML-Z5uVGp3fjzJVtbCxfTLpgxkhQ8Wo6MVysoiw,4733
14
+ nexaai/tts.py,sha256=jvgDZIyo47NBDny6z74IQT2SDDVo7Mpp-QZwl6YxARU,2196
15
+ nexaai/vlm.py,sha256=HU2tWM2m-kEq5WdZ71ysDdzTNeyKwQBkBBEOB7KL4-Y,4762
16
16
  nexaai/asr_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
17
  nexaai/asr_impl/mlx_asr_impl.py,sha256=eosd8-TIWAOwV0HltmoFrLwzXHcU4jyxtncvuZE9pgA,3257
18
18
  nexaai/asr_impl/pybind_asr_impl.py,sha256=pE9Hb_hMi5yAc4MF83bLVOb8zDtreCkB3_u7XED9YpA,1516
19
19
  nexaai/binds/__init__.py,sha256=eYuay_8DDXeOUWz2_R9HFSabohxs6hvZn391t2L0Po0,104
20
20
  nexaai/binds/common_bind.cpython-310-darwin.so,sha256=zxJuD0nSV--VZKxBfWZUavU7_bHj_JTi0FhkjvG4VJw,235264
21
21
  nexaai/binds/embedder_bind.cpython-310-darwin.so,sha256=tPa0c0Dv_GiW66fgmAGWGCHXRGNApznqoQS0eQx9GFM,202064
22
- nexaai/binds/libnexa_bridge.dylib,sha256=Z4SbgrR22AaoeTGNPdXGdVyE2ND0VKeY8zUmcADkKZo,251192
23
- nexaai/binds/llm_bind.cpython-310-darwin.so,sha256=TAWfa1Hzq00TjtC1xVsiAeLp6hv2LrL5afDz4omUghc,182784
22
+ nexaai/binds/libnexa_bridge.dylib,sha256=ewnuo6V6QwmuJD562cts3e4Hlwo58BQnBlX3JziPWoM,272648
23
+ nexaai/binds/llm_bind.cpython-310-darwin.so,sha256=YShsXbe_n2N05joMmTnZXaXh9gM9LGdcmuWUxUc5plI,182784
24
24
  nexaai/binds/vlm_bind.cpython-310-darwin.so,sha256=nd6eG_m2EiPthzkSZ97hlXWUOZQir4cQfFJZ4p6eR2U,182704
25
- nexaai/binds/nexa_llama_cpp/libggml-base.dylib,sha256=JM4oOkie1su0ES5hMdtILeQHlRukRzH1vTleTupUXhg,650736
26
- nexaai/binds/nexa_llama_cpp/libggml-cpu.so,sha256=qiYxbTe4Nt7n36zJVvq3zovgSZEmrN2is6gzTern7UI,677728
27
- nexaai/binds/nexa_llama_cpp/libggml-metal.so,sha256=zfaX7rIBYQazH2lf-vza007BMhPTK1ASd2T0HLLIA4E,673104
28
- nexaai/binds/nexa_llama_cpp/libggml.dylib,sha256=aOTj_6RrAMkfDO0ZI28_3nfcC-l4Y3dRCiS3C0d0_eI,58592
29
- nexaai/binds/nexa_llama_cpp/libllama.dylib,sha256=RkBd5usb8RvEIOamvxCW3UvMauI5bC66G_n6hw83NpY,1786128
30
- nexaai/binds/nexa_llama_cpp/libmtmd.dylib,sha256=o6mQqefzQNF0CS4j6odwJKj0gkXm15hIxwlNt88FOn4,605248
31
- nexaai/binds/nexa_llama_cpp/libnexa_plugin.dylib,sha256=f-ctmVHSL5x1LKLr0StYM5WscvUW_5olJ7al3ciVmmQ,1863000
32
- nexaai/binds/nexa_mlx/libnexa_plugin.dylib,sha256=KKM4j2JmHQrCQ1LyqEDRxwADRXKi_HM0IY5I5KFl2e0,659288
33
- nexaai/binds/nexa_mlx/py-lib/ml.py,sha256=DKXVOAfh8cg7KTKljh7jpcPwfQFNigc6uv_ZXF6lse8,23977
34
- nexaai/binds/nexa_mlx/py-lib/profiling.py,sha256=Dc-mybFwBdCIKFWL7CbSHjkOJGAoYHG7r_e_XPhzwBU,9361
35
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/server.py,sha256=Pqy13Fafq4WX_cTuvRFz1jq89beQm2QQGpXmhK4b9jc,17547
37
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/utils.py,sha256=35_9pWHzCuf2HAWHLkmz8AeyPa9WlYFr86zSRasoaAg,6476
38
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/version.py,sha256=PNiDER4qM19h9zdsdfgKt2_dT4WgYK7EguJ8RU2qA_g,22
39
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/__init__.py,sha256=6yClZf58zupCWcOgslT6uqPCSyDyJEgjpD9vmm1sCAk,46
40
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/__init__.py,sha256=23P_A2OE9OELL1E4o-XYTPuqSdD6RkgLVpONYDMKH2A,126
41
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/__init__.py,sha256=_y2zXCB4_lfqo4MErOzBcHop-CBJb7U36enAzIzbJUA,44
42
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/activation.py,sha256=Yupx7w5kmapfjaVRr5Yh8L7Bd49xC_WkWo2g8GBLMxA,1353
43
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/amp.py,sha256=gbmjKPSOP6R3sojvGG3UV7Bgs8bVV7mnbxSh78zz0uk,2685
44
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/bigvgan.py,sha256=ISk3wgi-uNTr8E05-LsrRC6EaA5rRs1vTUyG9FmQw4c,4837
45
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/conv.py,sha256=wSoTvDxZrJVnFnZpotfEDy8JfWOGHLRi7Cnjerzl3WA,3452
46
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/resample.py,sha256=FIVO_UUJ3tgAK_ixeXq195IjLG7atAXl6AXnSp2Vedo,4967
47
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/__init__.py,sha256=KIyZ5Ai7g4NbXRmJ3C8toG0uAavmnNxarY7ns6N9Hp4,21
48
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/base.py,sha256=Rb_DPkc4HGspB4qZBeREBDRJN4gNqV8hC5qIjUm4Ulk,7088
49
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/dac.py,sha256=CfVIZ9JzwL15OJyB2NHGvWBCaU5I7zryRYfRFTneaj8,7920
50
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/__init__.py,sha256=I7pth7lk2g8165zoyJF8V-FzhSAXIEjP11ozHjqaiSs,31
51
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/layers.py,sha256=HQGV0Km2VYRGZCBctuE-mgTpwDJ88q2hiq-dZowWKV0,3742
52
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/quantize.py,sha256=S_q7eo7_Ebf0UQzeJVO2WmVvgu7adWcipH8KOvqDTik,4948
53
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/encodec/__init__.py,sha256=usARsuej0lQqNbVh4wY-FrnfDtTlZUrY1F97mlVXRg4,44
54
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/encodec/encodec.py,sha256=8eCppGULNwSqR2rfLH4xhfRc0sFJtOI1zSHouIRakQE,26135
55
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/__init__.py,sha256=A_ATkvIxeWYRZScbHILXJfL7PUShEtY6Xn0LfojW04Q,45
56
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/mimi.py,sha256=-bVEeK5vehyf5C45YVid7yse6JKSzTt-oXNJtTXpqhc,9249
57
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/__init__.py,sha256=dMdUtb7s6kZiC7ubZSm1F_EMCHt1FtPTX8kcIsvpxaM,661
58
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/conv.py,sha256=GrQ16Zu3HZf5n6BD2WkiUB-JhBkjbgGReoTNuByghJw,11606
59
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/kv_cache.py,sha256=KppVMJZocUPQsBEGXkTAljwNdoh4f_bY8K3DRGQIzoM,6863
60
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/quantization.py,sha256=5ctB35w8mc3rCgSiFUfpEc5MW61UxCQ1iyCeBObgT0M,6036
61
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/seanet.py,sha256=B1ZYSOGquM998DU5M4aFvlDSlwREpC2eYm_y_a895yI,9342
62
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/transformer.py,sha256=4UE8OXTkOe1YE3G4uwNGur1s2_YvNJavXOda08wZf0c,7891
63
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/__init__.py,sha256=Vj9NCtjPaMCJokuK4ZAjTIKfJyQGztQ6_dCjnUvukpw,36
64
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/model.py,sha256=H0jf9-uj63ocz6qc9FFFAMwjMgJeg7538GiWi_uQ2TM,8078
65
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/model_v2.py,sha256=NxUdM_i5_ckK-flqeYvWJ_vVrV9lwJPWlQY7A6cnims,11334
66
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/utils.py,sha256=FPTUZOCfOqDIsn4PlI97QhECo8hAm59Kz1L6dw-AIeY,3634
67
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/__init__.py,sha256=oqKMQgBH2YTvxDrla_royWyV2XNFYhUqG7AKnjnEKdw,23
68
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/attention.py,sha256=-hRrfPehQl4KyTWxuWlaT89IRaBZJYgPgeO1Zph1zXE,3288
69
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/layers.py,sha256=TGn-J0mPVHssP7KDYl7ZiL8CIMnReOqjtgYG_rDnUVQ,8872
70
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/snac.py,sha256=ldWi6TqcwWp4WwluNin5uIDGiSWssRoZpwi1hGXzOqE,4706
71
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/vq.py,sha256=iqZa0Q95BQlA25ik7DlrA_KsF_IZQyZ9nQqXutB4Atk,4302
72
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/__init__.py,sha256=7NwXJClXTkxPbw1CcoWTQUW3naf4p5AVkhamt_fuZqs,25
73
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/mel.py,sha256=RgW7SJdOvAzZSljQrfiJvi-X3rxV0pqpx1gE2L2mVOg,833
74
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/vocos.py,sha256=oRSJGKy4IjQ2EZ6Hq9uCs1bon44Z-OBWjYOy7fpSyK8,12271
75
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_bigvgan.py,sha256=fs7P_aKdEqkMh-G5Z_AvIURUXCziKCzRu-cfL-r96w4,1643
77
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_descript.py,sha256=PfWklJavdj2QVLJz28v6XEDdHVBxxREWaHioFbdfm10,3214
78
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_encodec.py,sha256=u1fyPVJJCvcjdZkW8f5mwFZshIJnYec-1q1AnyGChQQ,1436
79
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_mimi.py,sha256=90ZUaODzPIIxpwIrI93sHDnwhyhYERLjErRMKF1AN94,527
80
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_s3.py,sha256=IyQSsXT__qci6AZ_LTTJR-hXhnlmyelSb4uApDovVzA,715
81
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_snac.py,sha256=oN_apJJejx9_h2rpV7B2TaMzTbdABhASbOHTPQNEX7Y,962
82
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_vocos.py,sha256=RjGdEIebCufA15WqSJJ40pOWf9a54hHfcHhhlt4j6SA,2631
83
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/voice_pipeline.py,sha256=YUpecEHqjrRMegfN6n5KPG2A2h6raGuOYbY3xpjBjjs,11113
85
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/tests/test_voice_pipeline.py,sha256=7heJvtVONn22uzF2CPEEgLT9JPuyhSp-RhXk8rvtvEg,6484
86
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/generate.py,sha256=Z-hlAcIGsT6UwY9NgfkHDkZcAoQ8z4wCGy1jVnJwwks,5526
88
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/utils.py,sha256=wNeL5ygqqD0dNxscib1EQK3ToGOyIH7sKyXUBE29n8Y,5567
89
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/__init__.py,sha256=tiICxkwYZ1jKyzYUv6QKgvDiphGEfkwnKdIthb5DYXQ,28
91
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/alignment.py,sha256=j7yT30wq0GFIGi8nZQIzoEQYBtahBDnBgSXO1H2Aihc,7320
92
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/attention.py,sha256=X-fxMfEzhDbr5Vg0v6NUzypvxD8-Ldb7mbISbAoaWhk,5676
93
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/audio.py,sha256=NsL4yceDASN6Sm8meLdnZgStfGNJYN0erkumh0O9Us0,2088
94
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/conformer.py,sha256=GOLHVcclkc27Z84ULfUuqPS2qKYD5KSEb_hsq5ZFMks,10371
95
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/ctc.py,sha256=cbyumguVJDB88dJodezkyfz_HGJu5o5Hfd4g31XO7-g,790
96
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/parakeet.py,sha256=BE1oPf-npIKE2CgS4FhSgCFj9RjyItSeUKaGYmSciNM,20601
97
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/rnnt.py,sha256=2hVrlgGvDxtjlOHc4_bNPlpQnp1E9wHFkH_Q__kUYi4,4351
98
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/tokenizer.py,sha256=Cgg_qE6Jwxw-tcbo2te92vdqjcjSmoqhesguvfgQRmk,134
99
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/wav2vec/feature_extractor.py,sha256=Tlu-nJWkly00IexT9Iz9z3-myayuMWW2twFpra1FIOY,33012
100
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/wav2vec/wav2vec.py,sha256=LTs0l9sPUDdYB_Y7qcctu6_8n8csuyszP1qWwpphgXs,26060
101
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/__init__.py,sha256=pJLy2AwH8n-HXEpW4pV_Gwy2Rv8RoDEDoKlNBGLxIjk,27
102
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/audio.py,sha256=2vcVHqJYAsZuB4s4381W-Vxyo7JpWmVCzl5cylBj5Pw,2446
103
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/decoding.py,sha256=ezzDzQkToqyR4cbJRXi5Tgoz_nwaCF41pNsnvuJYdGY,28501
104
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/timing.py,sha256=JzbCvxny67qlIdrp3rN0jGtdXzGa9yn0B43CsHaYIs0,10889
105
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/tokenizer.py,sha256=4-mbp9qOyJewg_W2XTdxGjnQFCQpAgcusGrU6neZoio,12407
106
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/whisper.py,sha256=6Dw83aLbxKKHs8962280UO00pocmR5VHbrBoR47RxZ0,34920
107
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/writers.py,sha256=NL08m0sPLc4eYv6sukGI8QC3zcH4XESoIisMrE-S0A8,10138
108
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/tests/test_models.py,sha256=x9LxoSo8vFyF3XocWCAOwZVUD2aGJhhvxlyxWiZzcU4,14663
109
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
110
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/audio_player.py,sha256=uASE9sx3_j-_5QIuYpoLxb0IBlczT4XKqQz1uyWGWhA,3677
111
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/convert.py,sha256=WHOQT58ZwRacVk96whTBXy_a24dpA7GEbtaCOdoZ0mo,1901
112
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/generate.py,sha256=ZIZ8p1AwnpySpzfua9NliP65W-RUyGbCbiH7lvFjsD0,14864
113
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/utils.py,sha256=yHjmzWxWwBg75O87rzmjfAHsfR4x9U8ncqjI7nEmWZg,11614
114
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/base.py,sha256=5cMTt3MKvaRZ0MbTMupremTerRbi3XU5xCs28f5Dmqw,2108
116
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/interpolate.py,sha256=C49nZRNRXko_eby7l7pvCrs0fA_ay-J_evtoyOaxcoA,3521
117
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/__init__.py,sha256=SVIa-o96gDHLJ3ZD6jcB8tlRJHnj8oVnQdelnKL1qp8,116
118
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/bark.py,sha256=C_by_WAVITgJ4K9QRpDghshv39Sc8TZ8lhC_XLVuTs0,18017
119
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/isftnet.py,sha256=JWBdHtmmeIpo6zxazk7eTilNGrmvRqiWk9GGmRCI0S4,344
120
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/pipeline.py,sha256=NjC9PYsceMScP04vBkkIqViqu7uiO1WNmxviwZHqn0Q,16299
121
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/__init__.py,sha256=D0wxtRXh7-JWboO6vdnpjg9vBtSJx3kM4IOKECg6fJs,23
122
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/audio.py,sha256=RzC6JzVc6H1DkJMljzdWLujwVqCOs2GvzQfpELzSsus,8968
123
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/config.py,sha256=2my1AGaM9ecHazeMkj0iecO30Ul90zdNGpNDARseYB8,9219
124
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/dia.py,sha256=oH4hmMdh7MAwZhYCRFJeJhNp0kFUvJJ15B4kk36po-Y,21881
125
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/layers.py,sha256=xIM02QXbBlgbzvVrxN7mygW6dQtJEfZzTvKGUPkSgWE,29145
126
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/__init__.py,sha256=zjEdjSAB_SBgt2ZVZornAlqWij4-4pzW4cVwPVjFN3c,102
127
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/attention.py,sha256=seTeDud8YI4n38IWHKMcRECfmFckRHMuOmRwbiq6Jt0,5621
128
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/bigvgan.py,sha256=0gNbCqPqU2qwcZdDAn9ufyAMBOkkrk7z5G7HRuB_wxE,3909
129
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/conformer.py,sha256=t1NE7muEOhTaJf258EBvE-w1GyOw6nF0oQZWdCxyAu8,7328
130
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/gpt2.py,sha256=fg1oz2eFOtwy3zexT1tfNm-8aFriH4M5TV911rBll8U,1258
131
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/indextts.py,sha256=ANchayvvun24CTygEmiqKXsmgxWujb2G2IjX29tQRKs,15027
132
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/mel.py,sha256=0xbO4Pk4K5H3CY5YhnC9Mdonl1AGYzgr_czMSwVxIM0,837
133
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/normalize.py,sha256=I_ZGZalBnHrG6v0IHI7Zw9wqUiZrVdyyBhC5jODmpAs,8128
134
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/perceiver.py,sha256=uKaZeLlZq-XWZ_IxnpZBrGRqcAQfP3j1mko8j-0gi50,1787
135
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py,sha256=iXpwm3yfbVvsfhTgbrwtnPcWbx37yoyHOv4odf6PAC4,1760
137
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py,sha256=KLOQJlEIuqER2eioSkTmB0h5BGQmLD72cpLK961g-p4,2855
138
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py,sha256=V1NMDWoN3gLXH-L2pqMrr2BFsW7c4xKcqr_Fbmmc81o,3336
139
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py,sha256=JWLMAdLb_u_icYxi_t95eWpzFjggyEjfEQkc-siJR-E,1064
140
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/__init__.py,sha256=jisbM7KCn5zkXi9T4ojfjXBlZ-MAacld0Ymvb3TpfNs,130
141
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/istftnet.py,sha256=KFhuRAF5M0zLBArZdgYMjh9A2IQVHDc8yHvymUWHqsY,32481
142
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/kokoro.py,sha256=L1AsRHaWAaQGUH2g5UGb3hqvWQEfsHTIA8ltxGDQa3o,12207
143
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/modules.py,sha256=a4541RzrYYP178DacGDwavtF1k4X-TczhsWvEiZohFk,22928
144
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/pipeline.py,sha256=5HJ3QMy-4Q6IxvEnxyxAvFockhtiA4Dh_VRci6XkZlc,16746
145
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/voice.py,sha256=AFnv_EPGGgT6-vMRzhviBd2Oaw0eG88euFUKpTH1dSk,4154
146
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/llama/__init__.py,sha256=scnfrCNEEZ9bBf2Qd2tm8QQLt27gP8j2ky2GFIGxdiA,74
147
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/llama/llama.py,sha256=o5iK50czp2e2zbDnJ0f--C552uPnciCvZoRuJHgxd4w,11433
148
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/__init__.py,sha256=UF-9cCswNVxvVqtXVoRgZwzEvbRCNYkVNk4cJcQV6t8,40
149
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/audio_processor.py,sha256=IF8rxHm_WcA82slU75RlwU573u7DF6dIet_TXNYNYEw,11464
150
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/dac_interface.py,sha256=Yti1ut4Z7NqyQ02Cskr28mhW-sSjjP_BpCflOn4Ws84,5029
151
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/outetts.py,sha256=3Qm9ZlbosZOXXGqPe-cT3fds3SANv1sUiG_MzsHmTD8,9222
152
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/prompt_processor.py,sha256=7iLnfQyG1dIISa4HJsW8RB9yLpbc_yP3jlJ_mPD3dQQ,6277
153
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/tokens.py,sha256=r4SdeGZCW04f2SMWnv_bYN5goFCdka4wnw7LjSiYShM,1231
154
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/__init__.py,sha256=T14qNKlLb_nHDtqOereBOo40UMUkmYzJKUqUn1Ac2oc,47
155
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/attention.py,sha256=OxwzCY6yhSU4NJNkkyHVVNsC0DF-97I3nuz4MCdMM1A,6316
156
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/sesame.py,sha256=IUTaUXmDmVSssxD85Vw2y8ijJswgLUM150-cO2_2kME,22818
157
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/watermarking.py,sha256=rFA56rgkq7jbFKrlH6EJRi_JQcDXLnk67JjVTpJyZBc,2972
158
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/__init__.py,sha256=8vB16nVHdnBU32aIL8Un7lGprcBvMe1Wn96r6KcYH1U,38
159
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/audio_tokenizer.py,sha256=Vg7cT22Pjai8FSscDdoVAKwc564fptEgVGXwuU0iQfU,4928
160
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/bicodec.py,sha256=VPSxIBfT99ymNNw2wiB7egvgKmpi9knJZevDkVzRuQw,8927
161
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/spark.py,sha256=824_1_x7n6Kz5TWxrxF2lOdSem9f0ceqg9fnDb7t6KE,12514
162
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py,sha256=fUlplV8aH5Baqdx-p77M5Jeykny37iNQkEXhCt4x85U,7193
164
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/residual.py,sha256=Nmt1tbHFApCFVagrtqBZZnZ4asSoHYF2D5J1liEPhcU,6820
165
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/residual_fsq.py,sha256=10-fNNb6rl0Uu0UKZ7-K5YpcIpiUUzg_80rke8Pt4KQ,9830
166
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/blocks/sampler.py,sha256=mFLlO-T6sIepOehbSCL7wUElqT3bXFUrebVfFTYs22A,3787
168
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py,sha256=x_u3JhePGym-CDvyp-lputrPvBfaeZNk0XBgNYqDaaY,3726
170
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py,sha256=Je5pVFEwrj4oSzqHHRadDtnctl6xyDG75hEzN3WEmGE,3993
171
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py,sha256=TdAMxK40cNbZezthIjcZqzsDmbPqMiVdDfaQ6ehXngw,3188
172
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
173
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py,sha256=1fIsn6OUBImzTeDVWoopP3gbe_jOogkOWq4YTVOCMIQ,8065
174
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py,sha256=k4zuggnUVB0hELZx2kVaN1t1ZayFeX9AFAZ8theeyis,9177
175
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py,sha256=kbuYk8-pCNhPzmJteUPyNHmI0o-zJ0fOONAurrBP64c,10052
176
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py,sha256=666kTSMPIkDZkBQvOM8AXOC4dHVSEqSD9kOiUu6UBS4,5045
177
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/audio.py,sha256=TxmS00kXX3XMmwgrJFRWxbhw_mI6SBcFA-RiKCGS3-Q,7014
178
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/file.py,sha256=XqBnJ3N1ikI09SbkJ-6VpEL6sjgfiTQ5lAGevSQemM4,7126
179
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/token_parser.py,sha256=SBtWwVyYeGPcHxtb9q2SqqIg6IeTn6fDmYKOCkGtb7g,5154
180
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_base.py,sha256=dAeEA0IsBnUy8gxnE9ahOqXqWgLqEHjEVCCGGPPpqu0,2358
182
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_convert.py,sha256=79ddUhtTUlElD9NvBupUxl-MV4HKFM9PUxQpTwKLnBA,5804
183
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_interpolate.py,sha256=9dNmH03C46HtxwesH2DpT2oTNEG1KCZWYEKq6UQ3vfk,3536
184
- nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_models.py,sha256=12RiOfPtSZQj5g5JM-yCJk3uGQfM3OdmRiPt5uUDE4E,35096
185
- nexaai/binds/nexa_nexaml/libfftw3.3.dylib,sha256=Ul6NlZv0UhmXnnqAyFxCRCw-8pOsV5e4rc_9-wxrRJg,693424
186
- nexaai/binds/nexa_nexaml/libfftw3f.3.dylib,sha256=SKZE35Ly9R_nbMt7oWpObydvpK3HIo9-UhUA2KkeQyk,693920
187
- nexaai/binds/nexa_nexaml/libggml-base.dylib,sha256=JM4oOkie1su0ES5hMdtILeQHlRukRzH1vTleTupUXhg,650736
188
- nexaai/binds/nexa_nexaml/libggml-cpu.so,sha256=qiYxbTe4Nt7n36zJVvq3zovgSZEmrN2is6gzTern7UI,677728
189
- nexaai/binds/nexa_nexaml/libggml-metal.so,sha256=zfaX7rIBYQazH2lf-vza007BMhPTK1ASd2T0HLLIA4E,673104
190
- nexaai/binds/nexa_nexaml/libggml.dylib,sha256=aOTj_6RrAMkfDO0ZI28_3nfcC-l4Y3dRCiS3C0d0_eI,58592
191
- nexaai/binds/nexa_nexaml/libmp3lame.0.dylib,sha256=G-21u3MAZ2hiv1fbPEpOUGdToZfLtz2XI6BwW9xIqIA,305136
192
- nexaai/binds/nexa_nexaml/libmpg123.0.dylib,sha256=L4AgLcdcjGOQkEovUGDCNlH959500i0GkKBhqiHxBY4,306464
193
- nexaai/binds/nexa_nexaml/libnexa-mm-process.dylib,sha256=a_63nw3Fmdlw1KoxsfwS76ZXZgqQhw4sQ8rE42hpBwo,10205704
194
- nexaai/binds/nexa_nexaml/libnexa-sampling.dylib,sha256=OliTBr-r2y22Ebjc1Y33Ax56XpLMFQKtsHgfouj6TQM,7865400
195
- nexaai/binds/nexa_nexaml/libnexa_plugin.dylib,sha256=LpNEwlFTaAVyFi2l68X_uDCO-Sr5y94obKZpPucYku4,249848
196
- nexaai/binds/nexa_nexaml/libnexaproc.dylib,sha256=Pnxgm2k29hfedLjNP4t44gvioh-NWbE_3BW-VsCdHp8,880560
197
- nexaai/binds/nexa_nexaml/libomp.dylib,sha256=2chMvsFutcZX_W9odGciLJDz2vZ2d75i6v5562I9Fqs,754912
198
- nexaai/binds/nexa_nexaml/libqwen3-vl.dylib,sha256=hd8VPINYTH8mbU3BPxnjrPOKTw-NkWn7zkDB7p074-U,753168
199
- nexaai/binds/nexa_nexaml/libqwen3vl-vision.dylib,sha256=AmUk-DBtBAp5DOR14ICZcsiAcKjxxAx1y6mHAaETQu8,570024
25
+ nexaai/binds/cpu_gpu/libggml-base.dylib,sha256=9urbatWTB4QJ6uariOYlB_ZN1FFci5GaD8OfGZ9oPSQ,650736
26
+ nexaai/binds/cpu_gpu/libggml-cpu.so,sha256=qiYxbTe4Nt7n36zJVvq3zovgSZEmrN2is6gzTern7UI,677728
27
+ nexaai/binds/cpu_gpu/libggml-metal.so,sha256=zfaX7rIBYQazH2lf-vza007BMhPTK1ASd2T0HLLIA4E,673104
28
+ nexaai/binds/cpu_gpu/libggml.dylib,sha256=aOTj_6RrAMkfDO0ZI28_3nfcC-l4Y3dRCiS3C0d0_eI,58592
29
+ nexaai/binds/cpu_gpu/libmtmd.dylib,sha256=yfdSBV5McPAwGs9bRFHs9xSItFLEqc1NAnXBGBjumRU,605248
30
+ nexaai/binds/cpu_gpu/libnexa_cpu_gpu.dylib,sha256=IF4xdOSZJG83mjgVBD42M4IswXzT-6K7VenPvaxb3vs,1786136
31
+ nexaai/binds/cpu_gpu/libnexa_plugin.dylib,sha256=uSP4GgEZipQO-ll_5LDC0z1aCHvlVgPgW-C1MFw3IFU,1863304
32
+ nexaai/binds/metal/libnexa_plugin.dylib,sha256=F2v8SOCpgEa8MlUGensvLAeC-SWhLFLRw5RqfIl-QWA,659256
33
+ nexaai/binds/metal/py-lib/ml.py,sha256=DKXVOAfh8cg7KTKljh7jpcPwfQFNigc6uv_ZXF6lse8,23977
34
+ nexaai/binds/metal/py-lib/profiling.py,sha256=Dc-mybFwBdCIKFWL7CbSHjkOJGAoYHG7r_e_XPhzwBU,9361
35
+ nexaai/binds/metal/py-lib/mlx_audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
+ nexaai/binds/metal/py-lib/mlx_audio/server.py,sha256=Pqy13Fafq4WX_cTuvRFz1jq89beQm2QQGpXmhK4b9jc,17547
37
+ nexaai/binds/metal/py-lib/mlx_audio/utils.py,sha256=35_9pWHzCuf2HAWHLkmz8AeyPa9WlYFr86zSRasoaAg,6476
38
+ nexaai/binds/metal/py-lib/mlx_audio/version.py,sha256=PNiDER4qM19h9zdsdfgKt2_dT4WgYK7EguJ8RU2qA_g,22
39
+ nexaai/binds/metal/py-lib/mlx_audio/codec/__init__.py,sha256=6yClZf58zupCWcOgslT6uqPCSyDyJEgjpD9vmm1sCAk,46
40
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/__init__.py,sha256=23P_A2OE9OELL1E4o-XYTPuqSdD6RkgLVpONYDMKH2A,126
41
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/__init__.py,sha256=_y2zXCB4_lfqo4MErOzBcHop-CBJb7U36enAzIzbJUA,44
42
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/activation.py,sha256=Yupx7w5kmapfjaVRr5Yh8L7Bd49xC_WkWo2g8GBLMxA,1353
43
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/amp.py,sha256=gbmjKPSOP6R3sojvGG3UV7Bgs8bVV7mnbxSh78zz0uk,2685
44
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/bigvgan.py,sha256=ISk3wgi-uNTr8E05-LsrRC6EaA5rRs1vTUyG9FmQw4c,4837
45
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/conv.py,sha256=wSoTvDxZrJVnFnZpotfEDy8JfWOGHLRi7Cnjerzl3WA,3452
46
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/bigvgan/resample.py,sha256=FIVO_UUJ3tgAK_ixeXq195IjLG7atAXl6AXnSp2Vedo,4967
47
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/__init__.py,sha256=KIyZ5Ai7g4NbXRmJ3C8toG0uAavmnNxarY7ns6N9Hp4,21
48
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/base.py,sha256=Rb_DPkc4HGspB4qZBeREBDRJN4gNqV8hC5qIjUm4Ulk,7088
49
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/dac.py,sha256=CfVIZ9JzwL15OJyB2NHGvWBCaU5I7zryRYfRFTneaj8,7920
50
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/nn/__init__.py,sha256=I7pth7lk2g8165zoyJF8V-FzhSAXIEjP11ozHjqaiSs,31
51
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/nn/layers.py,sha256=HQGV0Km2VYRGZCBctuE-mgTpwDJ88q2hiq-dZowWKV0,3742
52
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/descript/nn/quantize.py,sha256=S_q7eo7_Ebf0UQzeJVO2WmVvgu7adWcipH8KOvqDTik,4948
53
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/encodec/__init__.py,sha256=usARsuej0lQqNbVh4wY-FrnfDtTlZUrY1F97mlVXRg4,44
54
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/encodec/encodec.py,sha256=8eCppGULNwSqR2rfLH4xhfRc0sFJtOI1zSHouIRakQE,26135
55
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/__init__.py,sha256=A_ATkvIxeWYRZScbHILXJfL7PUShEtY6Xn0LfojW04Q,45
56
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/mimi.py,sha256=-bVEeK5vehyf5C45YVid7yse6JKSzTt-oXNJtTXpqhc,9249
57
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/__init__.py,sha256=dMdUtb7s6kZiC7ubZSm1F_EMCHt1FtPTX8kcIsvpxaM,661
58
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/conv.py,sha256=GrQ16Zu3HZf5n6BD2WkiUB-JhBkjbgGReoTNuByghJw,11606
59
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/kv_cache.py,sha256=KppVMJZocUPQsBEGXkTAljwNdoh4f_bY8K3DRGQIzoM,6863
60
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/quantization.py,sha256=5ctB35w8mc3rCgSiFUfpEc5MW61UxCQ1iyCeBObgT0M,6036
61
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/seanet.py,sha256=B1ZYSOGquM998DU5M4aFvlDSlwREpC2eYm_y_a895yI,9342
62
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/mimi/modules/transformer.py,sha256=4UE8OXTkOe1YE3G4uwNGur1s2_YvNJavXOda08wZf0c,7891
63
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/s3/__init__.py,sha256=Vj9NCtjPaMCJokuK4ZAjTIKfJyQGztQ6_dCjnUvukpw,36
64
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/s3/model.py,sha256=H0jf9-uj63ocz6qc9FFFAMwjMgJeg7538GiWi_uQ2TM,8078
65
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/s3/model_v2.py,sha256=NxUdM_i5_ckK-flqeYvWJ_vVrV9lwJPWlQY7A6cnims,11334
66
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/s3/utils.py,sha256=FPTUZOCfOqDIsn4PlI97QhECo8hAm59Kz1L6dw-AIeY,3634
67
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/__init__.py,sha256=oqKMQgBH2YTvxDrla_royWyV2XNFYhUqG7AKnjnEKdw,23
68
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/attention.py,sha256=-hRrfPehQl4KyTWxuWlaT89IRaBZJYgPgeO1Zph1zXE,3288
69
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/layers.py,sha256=TGn-J0mPVHssP7KDYl7ZiL8CIMnReOqjtgYG_rDnUVQ,8872
70
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/snac.py,sha256=ldWi6TqcwWp4WwluNin5uIDGiSWssRoZpwi1hGXzOqE,4706
71
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/snac/vq.py,sha256=iqZa0Q95BQlA25ik7DlrA_KsF_IZQyZ9nQqXutB4Atk,4302
72
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/vocos/__init__.py,sha256=7NwXJClXTkxPbw1CcoWTQUW3naf4p5AVkhamt_fuZqs,25
73
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/vocos/mel.py,sha256=RgW7SJdOvAzZSljQrfiJvi-X3rxV0pqpx1gE2L2mVOg,833
74
+ nexaai/binds/metal/py-lib/mlx_audio/codec/models/vocos/vocos.py,sha256=oRSJGKy4IjQ2EZ6Hq9uCs1bon44Z-OBWjYOy7fpSyK8,12271
75
+ nexaai/binds/metal/py-lib/mlx_audio/codec/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
76
+ nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_bigvgan.py,sha256=fs7P_aKdEqkMh-G5Z_AvIURUXCziKCzRu-cfL-r96w4,1643
77
+ nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_descript.py,sha256=PfWklJavdj2QVLJz28v6XEDdHVBxxREWaHioFbdfm10,3214
78
+ nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_encodec.py,sha256=u1fyPVJJCvcjdZkW8f5mwFZshIJnYec-1q1AnyGChQQ,1436
79
+ nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_mimi.py,sha256=90ZUaODzPIIxpwIrI93sHDnwhyhYERLjErRMKF1AN94,527
80
+ nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_s3.py,sha256=IyQSsXT__qci6AZ_LTTJR-hXhnlmyelSb4uApDovVzA,715
81
+ nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_snac.py,sha256=oN_apJJejx9_h2rpV7B2TaMzTbdABhASbOHTPQNEX7Y,962
82
+ nexaai/binds/metal/py-lib/mlx_audio/codec/tests/test_vocos.py,sha256=RjGdEIebCufA15WqSJJ40pOWf9a54hHfcHhhlt4j6SA,2631
83
+ nexaai/binds/metal/py-lib/mlx_audio/sts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
+ nexaai/binds/metal/py-lib/mlx_audio/sts/voice_pipeline.py,sha256=YUpecEHqjrRMegfN6n5KPG2A2h6raGuOYbY3xpjBjjs,11113
85
+ nexaai/binds/metal/py-lib/mlx_audio/sts/tests/test_voice_pipeline.py,sha256=7heJvtVONn22uzF2CPEEgLT9JPuyhSp-RhXk8rvtvEg,6484
86
+ nexaai/binds/metal/py-lib/mlx_audio/stt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ nexaai/binds/metal/py-lib/mlx_audio/stt/generate.py,sha256=Z-hlAcIGsT6UwY9NgfkHDkZcAoQ8z4wCGy1jVnJwwks,5526
88
+ nexaai/binds/metal/py-lib/mlx_audio/stt/utils.py,sha256=wNeL5ygqqD0dNxscib1EQK3ToGOyIH7sKyXUBE29n8Y,5567
89
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
90
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/__init__.py,sha256=tiICxkwYZ1jKyzYUv6QKgvDiphGEfkwnKdIthb5DYXQ,28
91
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/alignment.py,sha256=j7yT30wq0GFIGi8nZQIzoEQYBtahBDnBgSXO1H2Aihc,7320
92
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/attention.py,sha256=X-fxMfEzhDbr5Vg0v6NUzypvxD8-Ldb7mbISbAoaWhk,5676
93
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/audio.py,sha256=NsL4yceDASN6Sm8meLdnZgStfGNJYN0erkumh0O9Us0,2088
94
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/conformer.py,sha256=GOLHVcclkc27Z84ULfUuqPS2qKYD5KSEb_hsq5ZFMks,10371
95
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/ctc.py,sha256=cbyumguVJDB88dJodezkyfz_HGJu5o5Hfd4g31XO7-g,790
96
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/parakeet.py,sha256=BE1oPf-npIKE2CgS4FhSgCFj9RjyItSeUKaGYmSciNM,20601
97
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/rnnt.py,sha256=2hVrlgGvDxtjlOHc4_bNPlpQnp1E9wHFkH_Q__kUYi4,4351
98
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/parakeet/tokenizer.py,sha256=Cgg_qE6Jwxw-tcbo2te92vdqjcjSmoqhesguvfgQRmk,134
99
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/wav2vec/feature_extractor.py,sha256=Tlu-nJWkly00IexT9Iz9z3-myayuMWW2twFpra1FIOY,33012
100
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/wav2vec/wav2vec.py,sha256=LTs0l9sPUDdYB_Y7qcctu6_8n8csuyszP1qWwpphgXs,26060
101
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/__init__.py,sha256=pJLy2AwH8n-HXEpW4pV_Gwy2Rv8RoDEDoKlNBGLxIjk,27
102
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/audio.py,sha256=2vcVHqJYAsZuB4s4381W-Vxyo7JpWmVCzl5cylBj5Pw,2446
103
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/decoding.py,sha256=ezzDzQkToqyR4cbJRXi5Tgoz_nwaCF41pNsnvuJYdGY,28501
104
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/timing.py,sha256=JzbCvxny67qlIdrp3rN0jGtdXzGa9yn0B43CsHaYIs0,10889
105
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/tokenizer.py,sha256=4-mbp9qOyJewg_W2XTdxGjnQFCQpAgcusGrU6neZoio,12407
106
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/whisper.py,sha256=6Dw83aLbxKKHs8962280UO00pocmR5VHbrBoR47RxZ0,34920
107
+ nexaai/binds/metal/py-lib/mlx_audio/stt/models/whisper/writers.py,sha256=NL08m0sPLc4eYv6sukGI8QC3zcH4XESoIisMrE-S0A8,10138
108
+ nexaai/binds/metal/py-lib/mlx_audio/stt/tests/test_models.py,sha256=x9LxoSo8vFyF3XocWCAOwZVUD2aGJhhvxlyxWiZzcU4,14663
109
+ nexaai/binds/metal/py-lib/mlx_audio/tts/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
110
+ nexaai/binds/metal/py-lib/mlx_audio/tts/audio_player.py,sha256=uASE9sx3_j-_5QIuYpoLxb0IBlczT4XKqQz1uyWGWhA,3677
111
+ nexaai/binds/metal/py-lib/mlx_audio/tts/convert.py,sha256=WHOQT58ZwRacVk96whTBXy_a24dpA7GEbtaCOdoZ0mo,1901
112
+ nexaai/binds/metal/py-lib/mlx_audio/tts/generate.py,sha256=ZIZ8p1AwnpySpzfua9NliP65W-RUyGbCbiH7lvFjsD0,14864
113
+ nexaai/binds/metal/py-lib/mlx_audio/tts/utils.py,sha256=yHjmzWxWwBg75O87rzmjfAHsfR4x9U8ncqjI7nEmWZg,11614
114
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/base.py,sha256=5cMTt3MKvaRZ0MbTMupremTerRbi3XU5xCs28f5Dmqw,2108
116
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/interpolate.py,sha256=C49nZRNRXko_eby7l7pvCrs0fA_ay-J_evtoyOaxcoA,3521
117
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/bark/__init__.py,sha256=SVIa-o96gDHLJ3ZD6jcB8tlRJHnj8oVnQdelnKL1qp8,116
118
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/bark/bark.py,sha256=C_by_WAVITgJ4K9QRpDghshv39Sc8TZ8lhC_XLVuTs0,18017
119
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/bark/isftnet.py,sha256=JWBdHtmmeIpo6zxazk7eTilNGrmvRqiWk9GGmRCI0S4,344
120
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/bark/pipeline.py,sha256=NjC9PYsceMScP04vBkkIqViqu7uiO1WNmxviwZHqn0Q,16299
121
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/__init__.py,sha256=D0wxtRXh7-JWboO6vdnpjg9vBtSJx3kM4IOKECg6fJs,23
122
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/audio.py,sha256=RzC6JzVc6H1DkJMljzdWLujwVqCOs2GvzQfpELzSsus,8968
123
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/config.py,sha256=2my1AGaM9ecHazeMkj0iecO30Ul90zdNGpNDARseYB8,9219
124
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/dia.py,sha256=oH4hmMdh7MAwZhYCRFJeJhNp0kFUvJJ15B4kk36po-Y,21881
125
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/dia/layers.py,sha256=xIM02QXbBlgbzvVrxN7mygW6dQtJEfZzTvKGUPkSgWE,29145
126
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/__init__.py,sha256=zjEdjSAB_SBgt2ZVZornAlqWij4-4pzW4cVwPVjFN3c,102
127
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/attention.py,sha256=seTeDud8YI4n38IWHKMcRECfmFckRHMuOmRwbiq6Jt0,5621
128
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/bigvgan.py,sha256=0gNbCqPqU2qwcZdDAn9ufyAMBOkkrk7z5G7HRuB_wxE,3909
129
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/conformer.py,sha256=t1NE7muEOhTaJf258EBvE-w1GyOw6nF0oQZWdCxyAu8,7328
130
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/gpt2.py,sha256=fg1oz2eFOtwy3zexT1tfNm-8aFriH4M5TV911rBll8U,1258
131
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/indextts.py,sha256=ANchayvvun24CTygEmiqKXsmgxWujb2G2IjX29tQRKs,15027
132
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/mel.py,sha256=0xbO4Pk4K5H3CY5YhnC9Mdonl1AGYzgr_czMSwVxIM0,837
133
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/normalize.py,sha256=I_ZGZalBnHrG6v0IHI7Zw9wqUiZrVdyyBhC5jODmpAs,8128
134
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/perceiver.py,sha256=uKaZeLlZq-XWZ_IxnpZBrGRqcAQfP3j1mko8j-0gi50,1787
135
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py,sha256=iXpwm3yfbVvsfhTgbrwtnPcWbx37yoyHOv4odf6PAC4,1760
137
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py,sha256=KLOQJlEIuqER2eioSkTmB0h5BGQmLD72cpLK961g-p4,2855
138
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py,sha256=V1NMDWoN3gLXH-L2pqMrr2BFsW7c4xKcqr_Fbmmc81o,3336
139
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py,sha256=JWLMAdLb_u_icYxi_t95eWpzFjggyEjfEQkc-siJR-E,1064
140
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/__init__.py,sha256=jisbM7KCn5zkXi9T4ojfjXBlZ-MAacld0Ymvb3TpfNs,130
141
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/istftnet.py,sha256=KFhuRAF5M0zLBArZdgYMjh9A2IQVHDc8yHvymUWHqsY,32481
142
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/kokoro.py,sha256=L1AsRHaWAaQGUH2g5UGb3hqvWQEfsHTIA8ltxGDQa3o,12207
143
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/modules.py,sha256=a4541RzrYYP178DacGDwavtF1k4X-TczhsWvEiZohFk,22928
144
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/pipeline.py,sha256=5HJ3QMy-4Q6IxvEnxyxAvFockhtiA4Dh_VRci6XkZlc,16746
145
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/kokoro/voice.py,sha256=AFnv_EPGGgT6-vMRzhviBd2Oaw0eG88euFUKpTH1dSk,4154
146
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/llama/__init__.py,sha256=scnfrCNEEZ9bBf2Qd2tm8QQLt27gP8j2ky2GFIGxdiA,74
147
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/llama/llama.py,sha256=o5iK50czp2e2zbDnJ0f--C552uPnciCvZoRuJHgxd4w,11433
148
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/__init__.py,sha256=UF-9cCswNVxvVqtXVoRgZwzEvbRCNYkVNk4cJcQV6t8,40
149
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/audio_processor.py,sha256=IF8rxHm_WcA82slU75RlwU573u7DF6dIet_TXNYNYEw,11464
150
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/dac_interface.py,sha256=Yti1ut4Z7NqyQ02Cskr28mhW-sSjjP_BpCflOn4Ws84,5029
151
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/outetts.py,sha256=3Qm9ZlbosZOXXGqPe-cT3fds3SANv1sUiG_MzsHmTD8,9222
152
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/prompt_processor.py,sha256=7iLnfQyG1dIISa4HJsW8RB9yLpbc_yP3jlJ_mPD3dQQ,6277
153
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/outetts/tokens.py,sha256=r4SdeGZCW04f2SMWnv_bYN5goFCdka4wnw7LjSiYShM,1231
154
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/sesame/__init__.py,sha256=T14qNKlLb_nHDtqOereBOo40UMUkmYzJKUqUn1Ac2oc,47
155
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/sesame/attention.py,sha256=OxwzCY6yhSU4NJNkkyHVVNsC0DF-97I3nuz4MCdMM1A,6316
156
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/sesame/sesame.py,sha256=IUTaUXmDmVSssxD85Vw2y8ijJswgLUM150-cO2_2kME,22818
157
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/sesame/watermarking.py,sha256=rFA56rgkq7jbFKrlH6EJRi_JQcDXLnk67JjVTpJyZBc,2972
158
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/__init__.py,sha256=8vB16nVHdnBU32aIL8Un7lGprcBvMe1Wn96r6KcYH1U,38
159
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/audio_tokenizer.py,sha256=Vg7cT22Pjai8FSscDdoVAKwc564fptEgVGXwuU0iQfU,4928
160
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/bicodec.py,sha256=VPSxIBfT99ymNNw2wiB7egvgKmpi9knJZevDkVzRuQw,8927
161
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/spark.py,sha256=824_1_x7n6Kz5TWxrxF2lOdSem9f0ceqg9fnDb7t6KE,12514
162
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
163
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py,sha256=fUlplV8aH5Baqdx-p77M5Jeykny37iNQkEXhCt4x85U,7193
164
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/residual.py,sha256=Nmt1tbHFApCFVagrtqBZZnZ4asSoHYF2D5J1liEPhcU,6820
165
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/residual_fsq.py,sha256=10-fNNb6rl0Uu0UKZ7-K5YpcIpiUUzg_80rke8Pt4KQ,9830
166
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
167
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/blocks/sampler.py,sha256=mFLlO-T6sIepOehbSCL7wUElqT3bXFUrebVfFTYs22A,3787
168
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py,sha256=x_u3JhePGym-CDvyp-lputrPvBfaeZNk0XBgNYqDaaY,3726
170
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py,sha256=Je5pVFEwrj4oSzqHHRadDtnctl6xyDG75hEzN3WEmGE,3993
171
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py,sha256=TdAMxK40cNbZezthIjcZqzsDmbPqMiVdDfaQ6ehXngw,3188
172
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
173
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py,sha256=1fIsn6OUBImzTeDVWoopP3gbe_jOogkOWq4YTVOCMIQ,8065
174
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py,sha256=k4zuggnUVB0hELZx2kVaN1t1ZayFeX9AFAZ8theeyis,9177
175
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py,sha256=kbuYk8-pCNhPzmJteUPyNHmI0o-zJ0fOONAurrBP64c,10052
176
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py,sha256=666kTSMPIkDZkBQvOM8AXOC4dHVSEqSD9kOiUu6UBS4,5045
177
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/utils/audio.py,sha256=TxmS00kXX3XMmwgrJFRWxbhw_mI6SBcFA-RiKCGS3-Q,7014
178
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/utils/file.py,sha256=XqBnJ3N1ikI09SbkJ-6VpEL6sjgfiTQ5lAGevSQemM4,7126
179
+ nexaai/binds/metal/py-lib/mlx_audio/tts/models/spark/utils/token_parser.py,sha256=SBtWwVyYeGPcHxtb9q2SqqIg6IeTn6fDmYKOCkGtb7g,5154
180
+ nexaai/binds/metal/py-lib/mlx_audio/tts/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
181
+ nexaai/binds/metal/py-lib/mlx_audio/tts/tests/test_base.py,sha256=dAeEA0IsBnUy8gxnE9ahOqXqWgLqEHjEVCCGGPPpqu0,2358
182
+ nexaai/binds/metal/py-lib/mlx_audio/tts/tests/test_convert.py,sha256=79ddUhtTUlElD9NvBupUxl-MV4HKFM9PUxQpTwKLnBA,5804
183
+ nexaai/binds/metal/py-lib/mlx_audio/tts/tests/test_interpolate.py,sha256=9dNmH03C46HtxwesH2DpT2oTNEG1KCZWYEKq6UQ3vfk,3536
184
+ nexaai/binds/metal/py-lib/mlx_audio/tts/tests/test_models.py,sha256=12RiOfPtSZQj5g5JM-yCJk3uGQfM3OdmRiPt5uUDE4E,35096
185
+ nexaai/binds/nexaml/libfftw3.3.dylib,sha256=Ul6NlZv0UhmXnnqAyFxCRCw-8pOsV5e4rc_9-wxrRJg,693424
186
+ nexaai/binds/nexaml/libfftw3f.3.dylib,sha256=SKZE35Ly9R_nbMt7oWpObydvpK3HIo9-UhUA2KkeQyk,693920
187
+ nexaai/binds/nexaml/libggml-base.dylib,sha256=9urbatWTB4QJ6uariOYlB_ZN1FFci5GaD8OfGZ9oPSQ,650736
188
+ nexaai/binds/nexaml/libggml-cpu.so,sha256=qiYxbTe4Nt7n36zJVvq3zovgSZEmrN2is6gzTern7UI,677728
189
+ nexaai/binds/nexaml/libggml-metal.so,sha256=zfaX7rIBYQazH2lf-vza007BMhPTK1ASd2T0HLLIA4E,673104
190
+ nexaai/binds/nexaml/libggml.dylib,sha256=aOTj_6RrAMkfDO0ZI28_3nfcC-l4Y3dRCiS3C0d0_eI,58592
191
+ nexaai/binds/nexaml/libmp3lame.0.dylib,sha256=G-21u3MAZ2hiv1fbPEpOUGdToZfLtz2XI6BwW9xIqIA,305136
192
+ nexaai/binds/nexaml/libmpg123.0.dylib,sha256=L4AgLcdcjGOQkEovUGDCNlH959500i0GkKBhqiHxBY4,306464
193
+ nexaai/binds/nexaml/libnexa-mm-process.dylib,sha256=-tNsX7gmHbgGDVOo9WEMyppWb1u4ldRCyTl3VIRkeHc,10222440
194
+ nexaai/binds/nexaml/libnexa-sampling.dylib,sha256=cnOFmvb5urwkB1S1aruZA7s6jaa6e_q-sv-2NFW785U,7957848
195
+ nexaai/binds/nexaml/libnexa_plugin.dylib,sha256=7aQX5UQWVipWmq0KcyPtbqmpZMsAtyHMFJ4zusFGGDw,249512
196
+ nexaai/binds/nexaml/libnexaproc.dylib,sha256=aWhBGz9c8Dd0JIigOeYey0CIraTZ_PYOyRjaS9lho0M,968320
197
+ nexaai/binds/nexaml/libomp.dylib,sha256=RcvfaCz0XuqTYtVPFYyUm2V6S9YgUQ0x5pHATr9FnDk,754912
198
+ nexaai/binds/nexaml/libqwen3-vl.dylib,sha256=wRQUVHtJJZRi8QCoHHURmpzpd7LeirBbMvIsCmWNJsc,770352
199
+ nexaai/binds/nexaml/libqwen3vl-vision.dylib,sha256=t0QfNZG5gpvHPBqX-Tdm1qjaXHCVROTtzL5bW78v4-I,490344
200
200
  nexaai/cv_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
201
  nexaai/cv_impl/mlx_cv_impl.py,sha256=gKECQOv8iaWwG3bl7xeqVy2NN_9K7tYerIFzfn4eLo4,3228
202
202
  nexaai/cv_impl/pybind_cv_impl.py,sha256=uSmwBste4cT7c8DQmXzRLmzwDf773PAbXNYWW1UzVls,1064
@@ -207,8 +207,8 @@ nexaai/image_gen_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
207
207
  nexaai/image_gen_impl/mlx_image_gen_impl.py,sha256=BuDkksvXyb4J02GsdnbGAmYckfUU0Eah6BimoMD3QqY,11219
208
208
  nexaai/image_gen_impl/pybind_image_gen_impl.py,sha256=ms34VYoD5AxZFG6cIG0QAJDjCtfphaZ1bHzKzey1xF8,3692
209
209
  nexaai/llm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
- nexaai/llm_impl/mlx_llm_impl.py,sha256=4v7jUFzHfE7zw2uViekGQDaTROz8A6oaW31Z3iVe6tg,11157
211
- nexaai/llm_impl/pybind_llm_impl.py,sha256=aooqkcXZWhCo07wbSafGgBrA3WnijtnUADShjjgFsBQ,8051
210
+ nexaai/llm_impl/mlx_llm_impl.py,sha256=dPtaEribluHZZY_f9M114glcQhtDEckukw4Sfd5zJos,11296
211
+ nexaai/llm_impl/pybind_llm_impl.py,sha256=XXnUuRZMr9rrEL1vM6VTwsgs0KQnKn4C3TyrHE46uw8,8139
212
212
  nexaai/mlx_backend/ml.py,sha256=DKXVOAfh8cg7KTKljh7jpcPwfQFNigc6uv_ZXF6lse8,23977
213
213
  nexaai/mlx_backend/profiling.py,sha256=Dc-mybFwBdCIKFWL7CbSHjkOJGAoYHG7r_e_XPhzwBU,9361
214
214
  nexaai/mlx_backend/asr/__init__.py,sha256=fuT_9_xpYJ28m4yjly5L2jChUrzlSQz-b_S7nujxkSM,451
@@ -414,9 +414,10 @@ nexaai/mlx_backend/tts/__init__.py,sha256=fuT_9_xpYJ28m4yjly5L2jChUrzlSQz-b_S7nu
414
414
  nexaai/mlx_backend/tts/interface.py,sha256=0FvZbIyOvg8jERZEQ6bygbv7v02O9xHO4-TPUlar0b4,9568
415
415
  nexaai/mlx_backend/vlm/__init__.py,sha256=_25kvMEviX16Hg3bro8Ws70V0eeIEqYKV8ZDXqYzKew,73
416
416
  nexaai/mlx_backend/vlm/generate.py,sha256=DqHFEAuqk-nko8ho6U9GAXTDAWz4d8GTe_hCt-XFyCw,19071
417
- nexaai/mlx_backend/vlm/generate_qwen3_vl.py,sha256=eeizW18u6dHPZOOnJtQUJkiqMAIIpOSS-IOjacXGsz4,10240
418
- nexaai/mlx_backend/vlm/interface.py,sha256=HOPzWNMs6QaHO6x0Z83kW1xkRRmb8_xo6xQLKsOWqAo,19013
419
- nexaai/mlx_backend/vlm/main.py,sha256=nPcg25jupeDD74uvRoxpWp3Dsulw7WddI7vll6zejak,10664
417
+ nexaai/mlx_backend/vlm/generate_qwen3_vl.py,sha256=srN8-RFv8eOeH2rdyygCJ7Yt7kW7MQzS3i50UHBVfIM,13151
418
+ nexaai/mlx_backend/vlm/generate_qwen3_vl_moe.py,sha256=ZSbM8JjTlkxUaVO9UNZM6YSbd60am3Z4ztJJEBsnJHg,9015
419
+ nexaai/mlx_backend/vlm/interface.py,sha256=_rnqaIkvy3OUsH2b08l623oKjoe_la0G2W9iusD5qwI,22741
420
+ nexaai/mlx_backend/vlm/main.py,sha256=8bmSTtyebp8eyL2jL36DZbNHapOpFXNmjM2NyzCFqGs,12919
420
421
  nexaai/mlx_backend/vlm/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
421
422
  nexaai/mlx_backend/vlm/modeling/convert.py,sha256=ia5i9cgTufFGmKyhkYUaW0nfNqT_bMo8i-Hg_zy5JC4,1863
422
423
  nexaai/mlx_backend/vlm/modeling/processing_qwen2_5_vl.py,sha256=PdlV1pTp0_b6QPrXNZzA52GBMRjyODWLlN_uzrMtDLQ,10218
@@ -526,7 +527,7 @@ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/language.py,sha256=OeUoAfIg7dNB4
526
527
  nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/qwen2_vl.py,sha256=YysRg1PszpZdsH7hywqN2pIMZAbU1P636KZoSJCNri8,5740
527
528
  nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/vision.py,sha256=rcneYZYwP5fx3p8xxXEDGvnWAMIn8DXenqBPLBjmVcI,10555
528
529
  nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/processor.py,sha256=_WZK8uv0LAGHO8V5LwCojyS4UYk0tfICsZ9GM4_Pfxo,19156
529
- nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/qwen3vl.py,sha256=LArnNtI98B_GJOblPNijVage9EmVfa-YZYI-2XGFZek,50662
530
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/qwen3vl.py,sha256=KXpmmNKGJn6-tmZ9xQY8UiecBThPc1xPosfI4Ns6lK4,50189
530
531
  nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
531
532
  nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/base.py,sha256=4RlZwgz8YX2ngmJNaymxFFpw9hJu-0EMw9xwXpngW9o,3496
532
533
  nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/cache.py,sha256=NMOB6x-RT6svF4H-Ymo5WqnP7ptAal3aaKjWZXWGMsM,17671
@@ -534,6 +535,16 @@ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/generate.py,sha256=bc
534
535
  nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/rope_utils.py,sha256=ty0dA3SsEUFtFbHo16tKdnKymrNKKsUO3KMYapMajbY,8704
535
536
  nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/sample_utils.py,sha256=8SEeVwgjuvaYy-4ALAU0RHQMuRr2k7EkXba_csxk498,10673
536
537
  nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/tokenizer_utils.py,sha256=Gqanx4hBDcon_k5ClhUsS4YpMbZNiee8jvImGS9h43s,13229
538
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/processor.py,sha256=_WZK8uv0LAGHO8V5LwCojyS4UYk0tfICsZ9GM4_Pfxo,19156
539
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/qwen3vl_moe.py,sha256=ALt0NRu1ia0Nm0AdlAy0l3rJUGBz06zrNC2UBtWD_Zs,54185
540
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/switch_layers.py,sha256=6hjFCvIH8J1UBEPYaIg9HqSakyZgEEiQoJQ9E0WmZoM,5960
541
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
542
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/base.py,sha256=4RlZwgz8YX2ngmJNaymxFFpw9hJu-0EMw9xwXpngW9o,3496
543
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/cache.py,sha256=NMOB6x-RT6svF4H-Ymo5WqnP7ptAal3aaKjWZXWGMsM,17671
544
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/generate.py,sha256=bchCpnlewysWQss5TQKxdKPXYd5VA7ySUDfRt8Xj_H4,26677
545
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/rope_utils.py,sha256=ty0dA3SsEUFtFbHo16tKdnKymrNKKsUO3KMYapMajbY,8704
546
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/sample_utils.py,sha256=8SEeVwgjuvaYy-4ALAU0RHQMuRr2k7EkXba_csxk498,10673
547
+ nexaai/mlx_backend/vlm/modeling/models/qwen3vl_moe/llm_common/tokenizer_utils.py,sha256=Gqanx4hBDcon_k5ClhUsS4YpMbZNiee8jvImGS9h43s,13229
537
548
  nexaai/mlx_backend/vlm/modeling/models/smolvlm/__init__.py,sha256=nvaihrxZuqymlQZbPCSTKBoxzJYx5fg3U1aM5eXUutw,123
538
549
  nexaai/mlx_backend/vlm/modeling/models/smolvlm/smolvlm.py,sha256=i-B_d0AxninzMWSHx-kc2X5nwp-0bmKnibjS7nXeKGA,2363
539
550
  nexaai/mlx_backend/vlm/modeling/trainer/__init__.py,sha256=rGAttw-lYQ2HUXVeuDDprKq8ERq3WIIFnRsA9tYwAjo,252
@@ -547,15 +558,15 @@ nexaai/tts_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
547
558
  nexaai/tts_impl/mlx_tts_impl.py,sha256=i_uNPdvlXYtL3e01oKjDlP9jgkWCRt1bBHsExaaiJi8,3101
548
559
  nexaai/tts_impl/pybind_tts_impl.py,sha256=mpn44r6pfYLIl-NrEy2dXHjGtWtNCmM7HRyxiANxUI4,1444
549
560
  nexaai/utils/decode.py,sha256=61n4Zf6c5QLyqGoctEitlI9BX3tPlP2a5aaKNHbw3T4,404
550
- nexaai/utils/manifest_utils.py,sha256=PA84obFP7W1dlneURlIHIzJjWIF5dbDHGdNeHouUy68,12659
551
- nexaai/utils/model_manager.py,sha256=_WKJP7YVk7q587OoOWwDNWVR-8tbKZkmHKjcCZN8Q4M,55979
552
- nexaai/utils/model_types.py,sha256=-DER8L4lAUR_iLS99F0r57avwqWtuN21ug5pX2p24_E,1369
561
+ nexaai/utils/manifest_utils.py,sha256=SCcFN09xNI0DiTA1U7DZwWiQsRH0CInWSny_9q0BwNM,21273
562
+ nexaai/utils/model_manager.py,sha256=mMNft0ceO8v-QfVrLWDF_oSiuhX04ERsjBn9T8kKrK8,61027
563
+ nexaai/utils/model_types.py,sha256=ONWjjo8CFPdhxki6qo7MXnSZaEzjBcxa_Kkf_y5NXus,1483
553
564
  nexaai/utils/progress_tracker.py,sha256=jdUqtmPqyhwC9uSKvQcJEYETwSt-OhP4oitdJ94614o,15394
554
565
  nexaai/utils/quantization_utils.py,sha256=FYcNSAKGlBqFDUTx3jSKOr2lnq4nyiyC0ZG8oSxFwiU,7825
555
566
  nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
556
567
  nexaai/vlm_impl/mlx_vlm_impl.py,sha256=pLtWm_ckz8a0U-AtAOMVseFDO4OVPvHyYO2KlfBaGYk,10833
557
568
  nexaai/vlm_impl/pybind_vlm_impl.py,sha256=FAbhpRJzHgI78r0mUvKybO97R1szvNhH0aTn_I52oT4,8597
558
- nexaai-1.0.18rc1.dist-info/METADATA,sha256=siHBGpPxlWXODx629KTI_SWZzQc56emZxS-ukNl0ye0,1201
559
- nexaai-1.0.18rc1.dist-info/WHEEL,sha256=T2p57lol9__xkoU6aJTyN1Pm43ZpRU3q6km7mIbrAMs,114
560
- nexaai-1.0.18rc1.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
561
- nexaai-1.0.18rc1.dist-info/RECORD,,
569
+ nexaai-1.0.19.dist-info/METADATA,sha256=GRUGeIr_jwwWcn7K_mWlwwdras3mxjdCe5HB6I83bH8,1176
570
+ nexaai-1.0.19.dist-info/WHEEL,sha256=T2p57lol9__xkoU6aJTyN1Pm43ZpRU3q6km7mIbrAMs,114
571
+ nexaai-1.0.19.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
572
+ nexaai-1.0.19.dist-info/RECORD,,
Binary file
Binary file
File without changes
File without changes
File without changes