nexaai 1.0.16rc13__cp310-cp310-macosx_15_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 (557) hide show
  1. nexaai/__init__.py +83 -0
  2. nexaai/_stub.cpython-310-darwin.so +0 -0
  3. nexaai/_version.py +4 -0
  4. nexaai/asr.py +64 -0
  5. nexaai/asr_impl/__init__.py +0 -0
  6. nexaai/asr_impl/mlx_asr_impl.py +92 -0
  7. nexaai/asr_impl/pybind_asr_impl.py +44 -0
  8. nexaai/base.py +39 -0
  9. nexaai/binds/__init__.py +4 -0
  10. nexaai/binds/common_bind.cpython-310-darwin.so +0 -0
  11. nexaai/binds/embedder_bind.cpython-310-darwin.so +0 -0
  12. nexaai/binds/libnexa_bridge.dylib +0 -0
  13. nexaai/binds/llm_bind.cpython-310-darwin.so +0 -0
  14. nexaai/binds/nexa_llama_cpp/libggml-base.dylib +0 -0
  15. nexaai/binds/nexa_llama_cpp/libggml-cpu.so +0 -0
  16. nexaai/binds/nexa_llama_cpp/libggml-metal.so +0 -0
  17. nexaai/binds/nexa_llama_cpp/libggml.dylib +0 -0
  18. nexaai/binds/nexa_llama_cpp/libllama.dylib +0 -0
  19. nexaai/binds/nexa_llama_cpp/libmtmd.dylib +0 -0
  20. nexaai/binds/nexa_llama_cpp/libnexa_plugin.dylib +0 -0
  21. nexaai/binds/nexa_mlx/libnexa_plugin.dylib +0 -0
  22. nexaai/binds/nexa_mlx/py-lib/ml.py +888 -0
  23. nexaai/binds/nexa_mlx/py-lib/mlx_audio/__init__.py +0 -0
  24. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/__init__.py +1 -0
  25. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/__init__.py +5 -0
  26. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/__init__.py +1 -0
  27. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/activation.py +51 -0
  28. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/amp.py +96 -0
  29. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/bigvgan.py +149 -0
  30. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/conv.py +114 -0
  31. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/resample.py +177 -0
  32. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/__init__.py +1 -0
  33. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/base.py +228 -0
  34. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/dac.py +285 -0
  35. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/__init__.py +1 -0
  36. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/layers.py +129 -0
  37. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/quantize.py +149 -0
  38. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/encodec/__init__.py +1 -0
  39. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/encodec/encodec.py +777 -0
  40. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/__init__.py +1 -0
  41. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/mimi.py +286 -0
  42. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/__init__.py +20 -0
  43. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/conv.py +398 -0
  44. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/kv_cache.py +199 -0
  45. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/quantization.py +179 -0
  46. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/seanet.py +314 -0
  47. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/transformer.py +256 -0
  48. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/__init__.py +1 -0
  49. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/model.py +260 -0
  50. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/model_v2.py +383 -0
  51. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/utils.py +122 -0
  52. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/__init__.py +1 -0
  53. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/attention.py +97 -0
  54. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/layers.py +306 -0
  55. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/snac.py +154 -0
  56. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/vq.py +135 -0
  57. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/__init__.py +1 -0
  58. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/mel.py +33 -0
  59. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/vocos.py +359 -0
  60. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/__init__.py +0 -0
  61. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_bigvgan.py +54 -0
  62. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_descript.py +109 -0
  63. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_encodec.py +58 -0
  64. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_mimi.py +22 -0
  65. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_s3.py +25 -0
  66. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_snac.py +40 -0
  67. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_vocos.py +93 -0
  68. nexaai/binds/nexa_mlx/py-lib/mlx_audio/server.py +525 -0
  69. nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/__init__.py +0 -0
  70. nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/tests/test_voice_pipeline.py +156 -0
  71. nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/voice_pipeline.py +327 -0
  72. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/__init__.py +0 -0
  73. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/generate.py +174 -0
  74. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/__init__.py +0 -0
  75. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/__init__.py +1 -0
  76. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/alignment.py +248 -0
  77. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/attention.py +187 -0
  78. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/audio.py +76 -0
  79. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/conformer.py +331 -0
  80. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/ctc.py +34 -0
  81. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/parakeet.py +604 -0
  82. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/rnnt.py +157 -0
  83. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/tokenizer.py +2 -0
  84. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/wav2vec/feature_extractor.py +757 -0
  85. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/wav2vec/wav2vec.py +738 -0
  86. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/__init__.py +1 -0
  87. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/audio.py +82 -0
  88. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/decoding.py +742 -0
  89. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/timing.py +329 -0
  90. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/tokenizer.py +398 -0
  91. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/whisper.py +862 -0
  92. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/writers.py +268 -0
  93. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/tests/test_models.py +381 -0
  94. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/utils.py +195 -0
  95. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/__init__.py +1 -0
  96. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/audio_player.py +120 -0
  97. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/convert.py +71 -0
  98. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/generate.py +449 -0
  99. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/__init__.py +0 -0
  100. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/__init__.py +4 -0
  101. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/bark.py +528 -0
  102. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/isftnet.py +12 -0
  103. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/pipeline.py +442 -0
  104. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/base.py +84 -0
  105. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/__init__.py +1 -0
  106. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/audio.py +287 -0
  107. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/config.py +256 -0
  108. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/dia.py +592 -0
  109. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/layers.py +870 -0
  110. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/__init__.py +3 -0
  111. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/attention.py +180 -0
  112. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/bigvgan.py +124 -0
  113. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/conformer.py +247 -0
  114. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py +0 -0
  115. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py +59 -0
  116. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py +91 -0
  117. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py +132 -0
  118. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py +42 -0
  119. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/gpt2.py +38 -0
  120. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/indextts.py +412 -0
  121. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/mel.py +37 -0
  122. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/normalize.py +294 -0
  123. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/perceiver.py +62 -0
  124. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/interpolate.py +108 -0
  125. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/__init__.py +4 -0
  126. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/istftnet.py +979 -0
  127. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/kokoro.py +331 -0
  128. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/modules.py +659 -0
  129. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/pipeline.py +453 -0
  130. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/voice.py +113 -0
  131. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/llama/__init__.py +3 -0
  132. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/llama/llama.py +324 -0
  133. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/__init__.py +1 -0
  134. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/audio_processor.py +351 -0
  135. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/dac_interface.py +162 -0
  136. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/outetts.py +255 -0
  137. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/prompt_processor.py +181 -0
  138. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/tokens.py +36 -0
  139. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/__init__.py +3 -0
  140. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/attention.py +195 -0
  141. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/sesame.py +633 -0
  142. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/watermarking.py +105 -0
  143. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/__init__.py +1 -0
  144. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/audio_tokenizer.py +138 -0
  145. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/bicodec.py +269 -0
  146. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/__init__.py +0 -0
  147. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/blocks/__init__.py +0 -0
  148. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/blocks/sampler.py +111 -0
  149. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py +0 -0
  150. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py +120 -0
  151. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py +136 -0
  152. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py +113 -0
  153. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py +238 -0
  154. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/residual.py +209 -0
  155. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/residual_fsq.py +309 -0
  156. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/__init__.py +1 -0
  157. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py +283 -0
  158. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py +326 -0
  159. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py +297 -0
  160. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py +155 -0
  161. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/spark.py +382 -0
  162. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/audio.py +220 -0
  163. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/file.py +221 -0
  164. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/token_parser.py +181 -0
  165. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/__init__.py +0 -0
  166. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_base.py +66 -0
  167. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_convert.py +173 -0
  168. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_interpolate.py +88 -0
  169. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_models.py +974 -0
  170. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/utils.py +337 -0
  171. nexaai/binds/nexa_mlx/py-lib/mlx_audio/utils.py +237 -0
  172. nexaai/binds/nexa_mlx/py-lib/mlx_audio/version.py +1 -0
  173. nexaai/binds/nexa_mlx/py-lib/profiling.py +239 -0
  174. nexaai/binds/nexa_nexaml/libggml-base.dylib +0 -0
  175. nexaai/binds/nexa_nexaml/libggml-cpu.so +0 -0
  176. nexaai/binds/nexa_nexaml/libggml-metal.so +0 -0
  177. nexaai/binds/nexa_nexaml/libggml.dylib +0 -0
  178. nexaai/binds/nexa_nexaml/libnexa-mm-process.dylib +0 -0
  179. nexaai/binds/nexa_nexaml/libnexa-sampling.dylib +0 -0
  180. nexaai/binds/nexa_nexaml/libnexa_plugin.dylib +0 -0
  181. nexaai/binds/nexa_nexaml/libnexaproc.dylib +0 -0
  182. nexaai/binds/nexa_nexaml/libqwen3-vl.dylib +0 -0
  183. nexaai/binds/nexa_nexaml/libqwen3vl-vision.dylib +0 -0
  184. nexaai/binds/vlm_bind.cpython-310-darwin.so +0 -0
  185. nexaai/common.py +104 -0
  186. nexaai/cv.py +92 -0
  187. nexaai/cv_impl/__init__.py +0 -0
  188. nexaai/cv_impl/mlx_cv_impl.py +89 -0
  189. nexaai/cv_impl/pybind_cv_impl.py +32 -0
  190. nexaai/embedder.py +72 -0
  191. nexaai/embedder_impl/__init__.py +0 -0
  192. nexaai/embedder_impl/mlx_embedder_impl.py +116 -0
  193. nexaai/embedder_impl/pybind_embedder_impl.py +95 -0
  194. nexaai/image_gen.py +140 -0
  195. nexaai/image_gen_impl/__init__.py +0 -0
  196. nexaai/image_gen_impl/mlx_image_gen_impl.py +292 -0
  197. nexaai/image_gen_impl/pybind_image_gen_impl.py +85 -0
  198. nexaai/llm.py +96 -0
  199. nexaai/llm_impl/__init__.py +0 -0
  200. nexaai/llm_impl/mlx_llm_impl.py +269 -0
  201. nexaai/llm_impl/pybind_llm_impl.py +218 -0
  202. nexaai/log.py +92 -0
  203. nexaai/mlx_backend/asr/__init__.py +12 -0
  204. nexaai/mlx_backend/asr/interface.py +122 -0
  205. nexaai/mlx_backend/common/__init__.py +0 -0
  206. nexaai/mlx_backend/common/utils.py +25 -0
  207. nexaai/mlx_backend/cv/__init__.py +0 -0
  208. nexaai/mlx_backend/cv/generate.py +195 -0
  209. nexaai/mlx_backend/cv/interface.py +151 -0
  210. nexaai/mlx_backend/cv/main.py +81 -0
  211. nexaai/mlx_backend/cv/modeling/pp_ocr_v4.py +1736 -0
  212. nexaai/mlx_backend/embedding/__init__.py +0 -0
  213. nexaai/mlx_backend/embedding/generate.py +333 -0
  214. nexaai/mlx_backend/embedding/interface.py +617 -0
  215. nexaai/mlx_backend/embedding/main.py +173 -0
  216. nexaai/mlx_backend/embedding/modeling/__init__.py +0 -0
  217. nexaai/mlx_backend/embedding/modeling/nexa_jina_v2.py +399 -0
  218. nexaai/mlx_backend/image_gen/__init__.py +1 -0
  219. nexaai/mlx_backend/image_gen/generate_sd.py +244 -0
  220. nexaai/mlx_backend/image_gen/interface.py +82 -0
  221. nexaai/mlx_backend/image_gen/main.py +281 -0
  222. nexaai/mlx_backend/image_gen/stable_diffusion/__init__.py +306 -0
  223. nexaai/mlx_backend/image_gen/stable_diffusion/clip.py +116 -0
  224. nexaai/mlx_backend/image_gen/stable_diffusion/config.py +65 -0
  225. nexaai/mlx_backend/image_gen/stable_diffusion/model_io.py +386 -0
  226. nexaai/mlx_backend/image_gen/stable_diffusion/sampler.py +105 -0
  227. nexaai/mlx_backend/image_gen/stable_diffusion/tokenizer.py +100 -0
  228. nexaai/mlx_backend/image_gen/stable_diffusion/unet.py +460 -0
  229. nexaai/mlx_backend/image_gen/stable_diffusion/vae.py +274 -0
  230. nexaai/mlx_backend/llm/__init__.py +0 -0
  231. nexaai/mlx_backend/llm/generate.py +149 -0
  232. nexaai/mlx_backend/llm/interface.py +764 -0
  233. nexaai/mlx_backend/llm/main.py +68 -0
  234. nexaai/mlx_backend/ml.py +888 -0
  235. nexaai/mlx_backend/mlx_audio/__init__.py +0 -0
  236. nexaai/mlx_backend/mlx_audio/codec/__init__.py +1 -0
  237. nexaai/mlx_backend/mlx_audio/codec/models/__init__.py +5 -0
  238. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/__init__.py +1 -0
  239. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/activation.py +51 -0
  240. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/amp.py +96 -0
  241. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/bigvgan.py +149 -0
  242. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/conv.py +114 -0
  243. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/resample.py +177 -0
  244. nexaai/mlx_backend/mlx_audio/codec/models/descript/__init__.py +1 -0
  245. nexaai/mlx_backend/mlx_audio/codec/models/descript/base.py +228 -0
  246. nexaai/mlx_backend/mlx_audio/codec/models/descript/dac.py +285 -0
  247. nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/__init__.py +1 -0
  248. nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/layers.py +129 -0
  249. nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/quantize.py +149 -0
  250. nexaai/mlx_backend/mlx_audio/codec/models/encodec/__init__.py +1 -0
  251. nexaai/mlx_backend/mlx_audio/codec/models/encodec/encodec.py +777 -0
  252. nexaai/mlx_backend/mlx_audio/codec/models/mimi/__init__.py +1 -0
  253. nexaai/mlx_backend/mlx_audio/codec/models/mimi/mimi.py +286 -0
  254. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/__init__.py +20 -0
  255. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/conv.py +398 -0
  256. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/kv_cache.py +199 -0
  257. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/quantization.py +179 -0
  258. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/seanet.py +314 -0
  259. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/transformer.py +256 -0
  260. nexaai/mlx_backend/mlx_audio/codec/models/s3/__init__.py +1 -0
  261. nexaai/mlx_backend/mlx_audio/codec/models/s3/model.py +260 -0
  262. nexaai/mlx_backend/mlx_audio/codec/models/s3/model_v2.py +383 -0
  263. nexaai/mlx_backend/mlx_audio/codec/models/s3/utils.py +122 -0
  264. nexaai/mlx_backend/mlx_audio/codec/models/snac/__init__.py +1 -0
  265. nexaai/mlx_backend/mlx_audio/codec/models/snac/attention.py +97 -0
  266. nexaai/mlx_backend/mlx_audio/codec/models/snac/layers.py +306 -0
  267. nexaai/mlx_backend/mlx_audio/codec/models/snac/snac.py +154 -0
  268. nexaai/mlx_backend/mlx_audio/codec/models/snac/vq.py +135 -0
  269. nexaai/mlx_backend/mlx_audio/codec/models/vocos/__init__.py +1 -0
  270. nexaai/mlx_backend/mlx_audio/codec/models/vocos/mel.py +33 -0
  271. nexaai/mlx_backend/mlx_audio/codec/models/vocos/vocos.py +359 -0
  272. nexaai/mlx_backend/mlx_audio/codec/tests/__init__.py +0 -0
  273. nexaai/mlx_backend/mlx_audio/codec/tests/test_bigvgan.py +54 -0
  274. nexaai/mlx_backend/mlx_audio/codec/tests/test_descript.py +109 -0
  275. nexaai/mlx_backend/mlx_audio/codec/tests/test_encodec.py +58 -0
  276. nexaai/mlx_backend/mlx_audio/codec/tests/test_mimi.py +22 -0
  277. nexaai/mlx_backend/mlx_audio/codec/tests/test_s3.py +25 -0
  278. nexaai/mlx_backend/mlx_audio/codec/tests/test_snac.py +40 -0
  279. nexaai/mlx_backend/mlx_audio/codec/tests/test_vocos.py +93 -0
  280. nexaai/mlx_backend/mlx_audio/server.py +525 -0
  281. nexaai/mlx_backend/mlx_audio/sts/__init__.py +0 -0
  282. nexaai/mlx_backend/mlx_audio/sts/tests/test_voice_pipeline.py +156 -0
  283. nexaai/mlx_backend/mlx_audio/sts/voice_pipeline.py +327 -0
  284. nexaai/mlx_backend/mlx_audio/stt/__init__.py +0 -0
  285. nexaai/mlx_backend/mlx_audio/stt/generate.py +174 -0
  286. nexaai/mlx_backend/mlx_audio/stt/models/__init__.py +0 -0
  287. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/__init__.py +1 -0
  288. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/alignment.py +248 -0
  289. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/attention.py +187 -0
  290. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/audio.py +76 -0
  291. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/conformer.py +331 -0
  292. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/ctc.py +34 -0
  293. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/parakeet.py +604 -0
  294. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/rnnt.py +157 -0
  295. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/tokenizer.py +2 -0
  296. nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/feature_extractor.py +757 -0
  297. nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/wav2vec.py +738 -0
  298. nexaai/mlx_backend/mlx_audio/stt/models/whisper/__init__.py +1 -0
  299. nexaai/mlx_backend/mlx_audio/stt/models/whisper/audio.py +82 -0
  300. nexaai/mlx_backend/mlx_audio/stt/models/whisper/decoding.py +742 -0
  301. nexaai/mlx_backend/mlx_audio/stt/models/whisper/timing.py +329 -0
  302. nexaai/mlx_backend/mlx_audio/stt/models/whisper/tokenizer.py +398 -0
  303. nexaai/mlx_backend/mlx_audio/stt/models/whisper/whisper.py +862 -0
  304. nexaai/mlx_backend/mlx_audio/stt/models/whisper/writers.py +268 -0
  305. nexaai/mlx_backend/mlx_audio/stt/tests/test_models.py +381 -0
  306. nexaai/mlx_backend/mlx_audio/stt/utils.py +195 -0
  307. nexaai/mlx_backend/mlx_audio/tts/__init__.py +1 -0
  308. nexaai/mlx_backend/mlx_audio/tts/audio_player.py +120 -0
  309. nexaai/mlx_backend/mlx_audio/tts/convert.py +71 -0
  310. nexaai/mlx_backend/mlx_audio/tts/generate.py +449 -0
  311. nexaai/mlx_backend/mlx_audio/tts/models/__init__.py +0 -0
  312. nexaai/mlx_backend/mlx_audio/tts/models/bark/__init__.py +4 -0
  313. nexaai/mlx_backend/mlx_audio/tts/models/bark/bark.py +528 -0
  314. nexaai/mlx_backend/mlx_audio/tts/models/bark/isftnet.py +12 -0
  315. nexaai/mlx_backend/mlx_audio/tts/models/bark/pipeline.py +442 -0
  316. nexaai/mlx_backend/mlx_audio/tts/models/base.py +84 -0
  317. nexaai/mlx_backend/mlx_audio/tts/models/dia/__init__.py +1 -0
  318. nexaai/mlx_backend/mlx_audio/tts/models/dia/audio.py +287 -0
  319. nexaai/mlx_backend/mlx_audio/tts/models/dia/config.py +256 -0
  320. nexaai/mlx_backend/mlx_audio/tts/models/dia/dia.py +592 -0
  321. nexaai/mlx_backend/mlx_audio/tts/models/dia/layers.py +870 -0
  322. nexaai/mlx_backend/mlx_audio/tts/models/indextts/__init__.py +3 -0
  323. nexaai/mlx_backend/mlx_audio/tts/models/indextts/attention.py +180 -0
  324. nexaai/mlx_backend/mlx_audio/tts/models/indextts/bigvgan.py +124 -0
  325. nexaai/mlx_backend/mlx_audio/tts/models/indextts/conformer.py +247 -0
  326. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py +0 -0
  327. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py +59 -0
  328. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py +91 -0
  329. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py +132 -0
  330. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py +42 -0
  331. nexaai/mlx_backend/mlx_audio/tts/models/indextts/gpt2.py +38 -0
  332. nexaai/mlx_backend/mlx_audio/tts/models/indextts/indextts.py +412 -0
  333. nexaai/mlx_backend/mlx_audio/tts/models/indextts/mel.py +37 -0
  334. nexaai/mlx_backend/mlx_audio/tts/models/indextts/normalize.py +294 -0
  335. nexaai/mlx_backend/mlx_audio/tts/models/indextts/perceiver.py +62 -0
  336. nexaai/mlx_backend/mlx_audio/tts/models/interpolate.py +108 -0
  337. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/__init__.py +4 -0
  338. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/istftnet.py +979 -0
  339. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/kokoro.py +331 -0
  340. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/modules.py +659 -0
  341. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/pipeline.py +453 -0
  342. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/voice.py +113 -0
  343. nexaai/mlx_backend/mlx_audio/tts/models/llama/__init__.py +3 -0
  344. nexaai/mlx_backend/mlx_audio/tts/models/llama/llama.py +324 -0
  345. nexaai/mlx_backend/mlx_audio/tts/models/outetts/__init__.py +1 -0
  346. nexaai/mlx_backend/mlx_audio/tts/models/outetts/audio_processor.py +351 -0
  347. nexaai/mlx_backend/mlx_audio/tts/models/outetts/dac_interface.py +162 -0
  348. nexaai/mlx_backend/mlx_audio/tts/models/outetts/default_speaker.json +461 -0
  349. nexaai/mlx_backend/mlx_audio/tts/models/outetts/outetts.py +255 -0
  350. nexaai/mlx_backend/mlx_audio/tts/models/outetts/prompt_processor.py +181 -0
  351. nexaai/mlx_backend/mlx_audio/tts/models/outetts/tokens.py +36 -0
  352. nexaai/mlx_backend/mlx_audio/tts/models/sesame/__init__.py +3 -0
  353. nexaai/mlx_backend/mlx_audio/tts/models/sesame/attention.py +195 -0
  354. nexaai/mlx_backend/mlx_audio/tts/models/sesame/sesame.py +633 -0
  355. nexaai/mlx_backend/mlx_audio/tts/models/sesame/watermarking.py +105 -0
  356. nexaai/mlx_backend/mlx_audio/tts/models/spark/__init__.py +1 -0
  357. nexaai/mlx_backend/mlx_audio/tts/models/spark/audio_tokenizer.py +138 -0
  358. nexaai/mlx_backend/mlx_audio/tts/models/spark/bicodec.py +269 -0
  359. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/__init__.py +0 -0
  360. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/__init__.py +0 -0
  361. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/sampler.py +111 -0
  362. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py +0 -0
  363. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py +120 -0
  364. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py +136 -0
  365. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py +113 -0
  366. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py +238 -0
  367. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual.py +209 -0
  368. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual_fsq.py +309 -0
  369. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/__init__.py +1 -0
  370. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py +283 -0
  371. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py +326 -0
  372. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py +297 -0
  373. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py +155 -0
  374. nexaai/mlx_backend/mlx_audio/tts/models/spark/spark.py +382 -0
  375. nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/audio.py +220 -0
  376. nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/file.py +221 -0
  377. nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/token_parser.py +181 -0
  378. nexaai/mlx_backend/mlx_audio/tts/tests/__init__.py +0 -0
  379. nexaai/mlx_backend/mlx_audio/tts/tests/test_base.py +66 -0
  380. nexaai/mlx_backend/mlx_audio/tts/tests/test_convert.py +173 -0
  381. nexaai/mlx_backend/mlx_audio/tts/tests/test_interpolate.py +88 -0
  382. nexaai/mlx_backend/mlx_audio/tts/tests/test_models.py +974 -0
  383. nexaai/mlx_backend/mlx_audio/tts/utils.py +337 -0
  384. nexaai/mlx_backend/mlx_audio/utils.py +237 -0
  385. nexaai/mlx_backend/mlx_audio/version.py +1 -0
  386. nexaai/mlx_backend/profiling.py +239 -0
  387. nexaai/mlx_backend/rerank/__init__.py +0 -0
  388. nexaai/mlx_backend/rerank/generate.py +174 -0
  389. nexaai/mlx_backend/rerank/interface.py +287 -0
  390. nexaai/mlx_backend/rerank/main.py +127 -0
  391. nexaai/mlx_backend/rerank/modeling/__init__.py +0 -0
  392. nexaai/mlx_backend/rerank/modeling/nexa_jina_rerank.py +330 -0
  393. nexaai/mlx_backend/sd/__init__.py +1 -0
  394. nexaai/mlx_backend/sd/interface.py +362 -0
  395. nexaai/mlx_backend/sd/main.py +286 -0
  396. nexaai/mlx_backend/sd/modeling/__init__.py +306 -0
  397. nexaai/mlx_backend/sd/modeling/clip.py +116 -0
  398. nexaai/mlx_backend/sd/modeling/config.py +65 -0
  399. nexaai/mlx_backend/sd/modeling/model_io.py +385 -0
  400. nexaai/mlx_backend/sd/modeling/sampler.py +105 -0
  401. nexaai/mlx_backend/sd/modeling/tokenizer.py +100 -0
  402. nexaai/mlx_backend/sd/modeling/unet.py +460 -0
  403. nexaai/mlx_backend/sd/modeling/vae.py +274 -0
  404. nexaai/mlx_backend/tts/__init__.py +12 -0
  405. nexaai/mlx_backend/tts/interface.py +276 -0
  406. nexaai/mlx_backend/vlm/__init__.py +3 -0
  407. nexaai/mlx_backend/vlm/generate.py +572 -0
  408. nexaai/mlx_backend/vlm/generate_qwen3_vl.py +261 -0
  409. nexaai/mlx_backend/vlm/interface.py +415 -0
  410. nexaai/mlx_backend/vlm/main.py +316 -0
  411. nexaai/mlx_backend/vlm/modeling/__init__.py +0 -0
  412. nexaai/mlx_backend/vlm/modeling/convert.py +68 -0
  413. nexaai/mlx_backend/vlm/modeling/models/__init__.py +0 -0
  414. nexaai/mlx_backend/vlm/modeling/models/aya_vision/__init__.py +8 -0
  415. nexaai/mlx_backend/vlm/modeling/models/aya_vision/aya_vision.py +193 -0
  416. nexaai/mlx_backend/vlm/modeling/models/aya_vision/interpolate.py +186 -0
  417. nexaai/mlx_backend/vlm/modeling/models/aya_vision/language.py +233 -0
  418. nexaai/mlx_backend/vlm/modeling/models/aya_vision/vision.py +503 -0
  419. nexaai/mlx_backend/vlm/modeling/models/base.py +202 -0
  420. nexaai/mlx_backend/vlm/modeling/models/cache.py +230 -0
  421. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/__init__.py +10 -0
  422. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/conversation.py +264 -0
  423. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/deepseek_vl_v2.py +472 -0
  424. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/language.py +591 -0
  425. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/processing_deepsek_vl_v2.py +526 -0
  426. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/vision.py +356 -0
  427. nexaai/mlx_backend/vlm/modeling/models/florence2/__init__.py +8 -0
  428. nexaai/mlx_backend/vlm/modeling/models/florence2/florence2.py +366 -0
  429. nexaai/mlx_backend/vlm/modeling/models/florence2/language.py +488 -0
  430. nexaai/mlx_backend/vlm/modeling/models/florence2/vision.py +591 -0
  431. nexaai/mlx_backend/vlm/modeling/models/gemma3/__init__.py +8 -0
  432. nexaai/mlx_backend/vlm/modeling/models/gemma3/gemma3.py +213 -0
  433. nexaai/mlx_backend/vlm/modeling/models/gemma3/language.py +315 -0
  434. nexaai/mlx_backend/vlm/modeling/models/gemma3/vision.py +238 -0
  435. nexaai/mlx_backend/vlm/modeling/models/gemma3n/__init__.py +2 -0
  436. nexaai/mlx_backend/vlm/modeling/models/gemma3n/audio.py +1038 -0
  437. nexaai/mlx_backend/vlm/modeling/models/gemma3n/config.py +139 -0
  438. nexaai/mlx_backend/vlm/modeling/models/gemma3n/gemma3n.py +322 -0
  439. nexaai/mlx_backend/vlm/modeling/models/gemma3n/language.py +629 -0
  440. nexaai/mlx_backend/vlm/modeling/models/gemma3n/vision.py +1022 -0
  441. nexaai/mlx_backend/vlm/modeling/models/idefics2/__init__.py +9 -0
  442. nexaai/mlx_backend/vlm/modeling/models/idefics2/idefics2.py +294 -0
  443. nexaai/mlx_backend/vlm/modeling/models/idefics2/language.py +191 -0
  444. nexaai/mlx_backend/vlm/modeling/models/idefics2/vision.py +267 -0
  445. nexaai/mlx_backend/vlm/modeling/models/idefics3/__init__.py +8 -0
  446. nexaai/mlx_backend/vlm/modeling/models/idefics3/idefics3.py +175 -0
  447. nexaai/mlx_backend/vlm/modeling/models/idefics3/language.py +192 -0
  448. nexaai/mlx_backend/vlm/modeling/models/idefics3/vision.py +233 -0
  449. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/__init__.py +9 -0
  450. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/internvl_chat.py +140 -0
  451. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/language.py +220 -0
  452. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/processor.py +393 -0
  453. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/vision.py +293 -0
  454. nexaai/mlx_backend/vlm/modeling/models/kernels.py +307 -0
  455. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/__init__.py +8 -0
  456. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/kimi_vl.py +143 -0
  457. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/language.py +509 -0
  458. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/vision.py +522 -0
  459. nexaai/mlx_backend/vlm/modeling/models/llama4/__init__.py +8 -0
  460. nexaai/mlx_backend/vlm/modeling/models/llama4/language.py +386 -0
  461. nexaai/mlx_backend/vlm/modeling/models/llama4/llama4.py +138 -0
  462. nexaai/mlx_backend/vlm/modeling/models/llama4/vision.py +560 -0
  463. nexaai/mlx_backend/vlm/modeling/models/llava/__init__.py +8 -0
  464. nexaai/mlx_backend/vlm/modeling/models/llava/language.py +240 -0
  465. nexaai/mlx_backend/vlm/modeling/models/llava/llava.py +153 -0
  466. nexaai/mlx_backend/vlm/modeling/models/llava/vision.py +259 -0
  467. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/__init__.py +9 -0
  468. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/language.py +236 -0
  469. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/llava_bunny.py +256 -0
  470. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/vision.py +303 -0
  471. nexaai/mlx_backend/vlm/modeling/models/llava_next/__init__.py +8 -0
  472. nexaai/mlx_backend/vlm/modeling/models/llava_next/language.py +230 -0
  473. nexaai/mlx_backend/vlm/modeling/models/llava_next/llava_next.py +160 -0
  474. nexaai/mlx_backend/vlm/modeling/models/llava_next/vision.py +243 -0
  475. nexaai/mlx_backend/vlm/modeling/models/mistral3/__init__.py +8 -0
  476. nexaai/mlx_backend/vlm/modeling/models/mistral3/mistral3.py +283 -0
  477. nexaai/mlx_backend/vlm/modeling/models/mllama/__init__.py +8 -0
  478. nexaai/mlx_backend/vlm/modeling/models/mllama/language.py +416 -0
  479. nexaai/mlx_backend/vlm/modeling/models/mllama/mllama.py +172 -0
  480. nexaai/mlx_backend/vlm/modeling/models/mllama/vision.py +499 -0
  481. nexaai/mlx_backend/vlm/modeling/models/molmo/__init__.py +8 -0
  482. nexaai/mlx_backend/vlm/modeling/models/molmo/language.py +243 -0
  483. nexaai/mlx_backend/vlm/modeling/models/molmo/molmo.py +133 -0
  484. nexaai/mlx_backend/vlm/modeling/models/molmo/vision.py +465 -0
  485. nexaai/mlx_backend/vlm/modeling/models/multi_modality/__init__.py +10 -0
  486. nexaai/mlx_backend/vlm/modeling/models/multi_modality/language.py +230 -0
  487. nexaai/mlx_backend/vlm/modeling/models/multi_modality/multi_modality.py +385 -0
  488. nexaai/mlx_backend/vlm/modeling/models/multi_modality/sam.py +557 -0
  489. nexaai/mlx_backend/vlm/modeling/models/multi_modality/vision.py +526 -0
  490. nexaai/mlx_backend/vlm/modeling/models/paligemma/__init__.py +8 -0
  491. nexaai/mlx_backend/vlm/modeling/models/paligemma/language.py +282 -0
  492. nexaai/mlx_backend/vlm/modeling/models/paligemma/paligemma.py +160 -0
  493. nexaai/mlx_backend/vlm/modeling/models/paligemma/vision.py +242 -0
  494. nexaai/mlx_backend/vlm/modeling/models/phi3_v/__init__.py +8 -0
  495. nexaai/mlx_backend/vlm/modeling/models/phi3_v/language.py +21 -0
  496. nexaai/mlx_backend/vlm/modeling/models/phi3_v/phi3_v.py +243 -0
  497. nexaai/mlx_backend/vlm/modeling/models/phi3_v/su_rope.py +71 -0
  498. nexaai/mlx_backend/vlm/modeling/models/phi3_v/vision.py +324 -0
  499. nexaai/mlx_backend/vlm/modeling/models/pixtral/__init__.py +8 -0
  500. nexaai/mlx_backend/vlm/modeling/models/pixtral/language.py +229 -0
  501. nexaai/mlx_backend/vlm/modeling/models/pixtral/pixtral.py +161 -0
  502. nexaai/mlx_backend/vlm/modeling/models/pixtral/vision.py +320 -0
  503. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/__init__.py +2 -0
  504. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/config.py +108 -0
  505. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/language.py +490 -0
  506. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/qwen2_5_vl.py +168 -0
  507. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/vision.py +414 -0
  508. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/__init__.py +2 -0
  509. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/config.py +104 -0
  510. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/language.py +490 -0
  511. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/qwen2_vl.py +167 -0
  512. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/vision.py +312 -0
  513. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/__init__.py +0 -0
  514. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/base.py +117 -0
  515. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/cache.py +531 -0
  516. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/generate.py +701 -0
  517. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/rope_utils.py +255 -0
  518. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/sample_utils.py +303 -0
  519. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/tokenizer_utils.py +407 -0
  520. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/processor.py +476 -0
  521. nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/qwen3vl.py +1223 -0
  522. nexaai/mlx_backend/vlm/modeling/models/smolvlm/__init__.py +8 -0
  523. nexaai/mlx_backend/vlm/modeling/models/smolvlm/smolvlm.py +62 -0
  524. nexaai/mlx_backend/vlm/modeling/processing_qwen2_5_vl.py +209 -0
  525. nexaai/mlx_backend/vlm/modeling/processing_qwen2_vl.py +215 -0
  526. nexaai/mlx_backend/vlm/modeling/prompt_utils.py +474 -0
  527. nexaai/mlx_backend/vlm/modeling/sample_utils.py +39 -0
  528. nexaai/mlx_backend/vlm/modeling/tokenizer_utils.py +344 -0
  529. nexaai/mlx_backend/vlm/modeling/trainer/__init__.py +9 -0
  530. nexaai/mlx_backend/vlm/modeling/trainer/lora.py +70 -0
  531. nexaai/mlx_backend/vlm/modeling/trainer/trainer.py +296 -0
  532. nexaai/mlx_backend/vlm/modeling/trainer/utils.py +160 -0
  533. nexaai/mlx_backend/vlm/modeling/utils.py +928 -0
  534. nexaai/rerank.py +55 -0
  535. nexaai/rerank_impl/__init__.py +0 -0
  536. nexaai/rerank_impl/mlx_rerank_impl.py +92 -0
  537. nexaai/rerank_impl/pybind_rerank_impl.py +43 -0
  538. nexaai/runtime.py +68 -0
  539. nexaai/tts.py +74 -0
  540. nexaai/tts_impl/__init__.py +0 -0
  541. nexaai/tts_impl/mlx_tts_impl.py +94 -0
  542. nexaai/tts_impl/pybind_tts_impl.py +43 -0
  543. nexaai/utils/avatar_fetcher.py +104 -0
  544. nexaai/utils/decode.py +18 -0
  545. nexaai/utils/manifest_utils.py +324 -0
  546. nexaai/utils/model_manager.py +1353 -0
  547. nexaai/utils/model_types.py +47 -0
  548. nexaai/utils/progress_tracker.py +385 -0
  549. nexaai/utils/quantization_utils.py +245 -0
  550. nexaai/vlm.py +128 -0
  551. nexaai/vlm_impl/__init__.py +0 -0
  552. nexaai/vlm_impl/mlx_vlm_impl.py +258 -0
  553. nexaai/vlm_impl/pybind_vlm_impl.py +230 -0
  554. nexaai-1.0.16rc13.dist-info/METADATA +32 -0
  555. nexaai-1.0.16rc13.dist-info/RECORD +557 -0
  556. nexaai-1.0.16rc13.dist-info/WHEEL +5 -0
  557. nexaai-1.0.16rc13.dist-info/top_level.txt +1 -0
@@ -0,0 +1,557 @@
1
+ nexaai/__init__.py,sha256=L8oB7GFZZMGnUpCg0PecDbI_ycKuQak-ZEJ4Y12_QIw,2184
2
+ nexaai/_stub.cpython-310-darwin.so,sha256=-i7CGlQ8feQ-shf4iEp0yFndghMbtfPE3uYN15F1f44,66768
3
+ nexaai/_version.py,sha256=w1I23pLkLt0xrD0hMhWK5fW9rqbLqnW1ii4yYp9UCTo,144
4
+ nexaai/asr.py,sha256=NljMXDErwPNMOPaRkJZMEDka9Nk8xyur7L8i924TStY,2054
5
+ nexaai/base.py,sha256=N8PRgDFA-XPku2vWnQIofQ7ipz3pPlO6f8YZGnuhquE,982
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
11
+ nexaai/log.py,sha256=Kwo2CIfWN6iP4M4F5EUIV8KIO5hAsvz6HZAaOwJ27Og,2628
12
+ nexaai/rerank.py,sha256=vWaBucoQ1wz-2iYnZqyFIcEjm-4Xcs1KDbFN5X8zzDQ,1872
13
+ nexaai/runtime.py,sha256=JvllhlNPgYGLbgGyX2yNvmGzT0lZ5XbvTvEo8sZG_Ho,2067
14
+ nexaai/tts.py,sha256=ZnBpWUxIfHhh7KfEjddtH7hHOTa91zg7ogGLakMIALo,2167
15
+ nexaai/vlm.py,sha256=OCxwML-Z5uVGp3fjzJVtbCxfTLpgxkhQ8Wo6MVysoiw,4733
16
+ nexaai/asr_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
+ nexaai/asr_impl/mlx_asr_impl.py,sha256=eosd8-TIWAOwV0HltmoFrLwzXHcU4jyxtncvuZE9pgA,3257
18
+ nexaai/asr_impl/pybind_asr_impl.py,sha256=pE9Hb_hMi5yAc4MF83bLVOb8zDtreCkB3_u7XED9YpA,1516
19
+ nexaai/binds/__init__.py,sha256=eYuay_8DDXeOUWz2_R9HFSabohxs6hvZn391t2L0Po0,104
20
+ nexaai/binds/common_bind.cpython-310-darwin.so,sha256=ya8gz7NnUtHlniGnRyExdwWfdHimEHiJ7Dry4I7_y44,235264
21
+ nexaai/binds/embedder_bind.cpython-310-darwin.so,sha256=tPa0c0Dv_GiW66fgmAGWGCHXRGNApznqoQS0eQx9GFM,202064
22
+ nexaai/binds/libnexa_bridge.dylib,sha256=UzJk0OKTgh3Bf4u89h014KGEi_WIGXLr4ZLwpgNX-Hg,251192
23
+ nexaai/binds/llm_bind.cpython-310-darwin.so,sha256=TAWfa1Hzq00TjtC1xVsiAeLp6hv2LrL5afDz4omUghc,182784
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=s4oelR1kkFrk0MKL23I0m9Uei4yPf48rzdNvknpjodg,623192
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/libggml-base.dylib,sha256=JM4oOkie1su0ES5hMdtILeQHlRukRzH1vTleTupUXhg,650736
186
+ nexaai/binds/nexa_nexaml/libggml-cpu.so,sha256=qiYxbTe4Nt7n36zJVvq3zovgSZEmrN2is6gzTern7UI,677728
187
+ nexaai/binds/nexa_nexaml/libggml-metal.so,sha256=zfaX7rIBYQazH2lf-vza007BMhPTK1ASd2T0HLLIA4E,673104
188
+ nexaai/binds/nexa_nexaml/libggml.dylib,sha256=aOTj_6RrAMkfDO0ZI28_3nfcC-l4Y3dRCiS3C0d0_eI,58592
189
+ nexaai/binds/nexa_nexaml/libnexa-mm-process.dylib,sha256=TBX9-Ze8160oPyIKczTwhL4ICO6rqeK91nyMfQt5kOA,8568184
190
+ nexaai/binds/nexa_nexaml/libnexa-sampling.dylib,sha256=S42PpjUxoFb5WfdEPko9zdQpFnQhFTyCg-0ujWtoRjE,7865464
191
+ nexaai/binds/nexa_nexaml/libnexa_plugin.dylib,sha256=rkTrXOKH71m0SmUP5IBLsJrLTbCElcWX3GKn33BPZpY,224056
192
+ nexaai/binds/nexa_nexaml/libnexaproc.dylib,sha256=zupikdwP-MZKzTAjyE0lPRBC6z5oY_BEimZbnC9Bjbw,880560
193
+ nexaai/binds/nexa_nexaml/libqwen3-vl.dylib,sha256=nEqxCAzOdU0AwIP7LnYX84_z3qzfDVVdRIM9aarXa9M,753168
194
+ nexaai/binds/nexa_nexaml/libqwen3vl-vision.dylib,sha256=a-aSP_kCgEcK65x4B8GQCbpRW1YIrx7ihlyoQ9RCCVQ,570024
195
+ nexaai/cv_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
196
+ nexaai/cv_impl/mlx_cv_impl.py,sha256=gKECQOv8iaWwG3bl7xeqVy2NN_9K7tYerIFzfn4eLo4,3228
197
+ nexaai/cv_impl/pybind_cv_impl.py,sha256=uSmwBste4cT7c8DQmXzRLmzwDf773PAbXNYWW1UzVls,1064
198
+ nexaai/embedder_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
+ nexaai/embedder_impl/mlx_embedder_impl.py,sha256=dTjOC1VJ9ypIgCvkK_jKNSWpswbg132rDcTzWcL5oFA,4482
200
+ nexaai/embedder_impl/pybind_embedder_impl.py,sha256=9gsHuSbF64IZH9ugqv4-GTUuRpy-FJNUb0cww2QR3uA,3575
201
+ nexaai/image_gen_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
202
+ nexaai/image_gen_impl/mlx_image_gen_impl.py,sha256=BuDkksvXyb4J02GsdnbGAmYckfUU0Eah6BimoMD3QqY,11219
203
+ nexaai/image_gen_impl/pybind_image_gen_impl.py,sha256=ms34VYoD5AxZFG6cIG0QAJDjCtfphaZ1bHzKzey1xF8,3692
204
+ nexaai/llm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
+ nexaai/llm_impl/mlx_llm_impl.py,sha256=4v7jUFzHfE7zw2uViekGQDaTROz8A6oaW31Z3iVe6tg,11157
206
+ nexaai/llm_impl/pybind_llm_impl.py,sha256=aooqkcXZWhCo07wbSafGgBrA3WnijtnUADShjjgFsBQ,8051
207
+ nexaai/mlx_backend/ml.py,sha256=DKXVOAfh8cg7KTKljh7jpcPwfQFNigc6uv_ZXF6lse8,23977
208
+ nexaai/mlx_backend/profiling.py,sha256=Dc-mybFwBdCIKFWL7CbSHjkOJGAoYHG7r_e_XPhzwBU,9361
209
+ nexaai/mlx_backend/asr/__init__.py,sha256=fuT_9_xpYJ28m4yjly5L2jChUrzlSQz-b_S7nujxkSM,451
210
+ nexaai/mlx_backend/asr/interface.py,sha256=pE5expr8sP7O9bEgWaUaJ4ITX0MsCxFovG9iVWqVDVU,4246
211
+ nexaai/mlx_backend/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
+ nexaai/mlx_backend/common/utils.py,sha256=WtRTdE0bUhpsOmhuM_dhn8WHkOxtqRv0vNp5kSY-rNU,949
213
+ nexaai/mlx_backend/cv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
+ nexaai/mlx_backend/cv/generate.py,sha256=fC7a1QQqcOsoa3NkRTVY-e6i97T6Hry8KohWJtqQeCU,6288
215
+ nexaai/mlx_backend/cv/interface.py,sha256=qE51ApUETEZxDMPZB4VdV098fsXcIiEg4Hj9zaGQCp4,4686
216
+ nexaai/mlx_backend/cv/main.py,sha256=hYaF2C36hKTyy7kGMNkzLrdczPiFVS73H320klzzpVM,2856
217
+ nexaai/mlx_backend/cv/modeling/pp_ocr_v4.py,sha256=Vpa-QTy7N5oFfGI7Emldx1dOYJWv_4nAFNRDz_5vHBI,58593
218
+ nexaai/mlx_backend/embedding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
219
+ nexaai/mlx_backend/embedding/generate.py,sha256=leZA0Ir78-5GV3jloPKYSAKgb04Wr5jORFJlSSVyKs0,12855
220
+ nexaai/mlx_backend/embedding/interface.py,sha256=M7AGiq_UVLNIi2Ie6H08ySnMxIjIhUlNgmV9I_rKYt4,22742
221
+ nexaai/mlx_backend/embedding/main.py,sha256=xKRebBcooKuf8DzWKwCicftes3MAcYAd1QvcT9_AAPQ,6003
222
+ nexaai/mlx_backend/embedding/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
223
+ nexaai/mlx_backend/embedding/modeling/nexa_jina_v2.py,sha256=F9Z_9r-Dh0wNThiMp5W5hqE2dt5bf4ps5_c6h4BuWGw,15218
224
+ nexaai/mlx_backend/image_gen/__init__.py,sha256=8eFAF00-yWdEs0LJiszjHEsgPDAF8tSruBYvujCNgE0,42
225
+ nexaai/mlx_backend/image_gen/generate_sd.py,sha256=8DuPsJlxVf1LlFARVThiW807G-0cWPReYONj-x8qKRo,8616
226
+ nexaai/mlx_backend/image_gen/interface.py,sha256=7ElIiLm5gZXAfKPs497wLkn8qqLFLL5T-oV-hXVmEdw,3285
227
+ nexaai/mlx_backend/image_gen/main.py,sha256=jKkGDfqmGIsQwhHJaL_j_CTtr04xplD6dnnGe3AcilU,8123
228
+ nexaai/mlx_backend/image_gen/stable_diffusion/__init__.py,sha256=wriLb0wA5vCBlCoQMtfKrVVWMJw8fhXCCk6R9_Nrb9c,9524
229
+ nexaai/mlx_backend/image_gen/stable_diffusion/clip.py,sha256=feHQXi1NiGa01AMo7nK8M-sgBoZBHI95xAGMfAv64kE,3733
230
+ nexaai/mlx_backend/image_gen/stable_diffusion/config.py,sha256=lq2sWXevpnCk8KXOywEVOzgFT6WBNnG4xr7NLWgidII,1773
231
+ nexaai/mlx_backend/image_gen/stable_diffusion/model_io.py,sha256=ei-pdrqFxjeHLL6Ov5NZaHT5lceqZbHDyNFfUFUh_04,13755
232
+ nexaai/mlx_backend/image_gen/stable_diffusion/sampler.py,sha256=nJxiSmF79E2aDGzLqygOat4zpgaTzfR7Kp1PD0bmhWA,3397
233
+ nexaai/mlx_backend/image_gen/stable_diffusion/tokenizer.py,sha256=WMcmyQmb5MmhCp-NNU72Bqjq9vQvDzgR8KAfGKA2Qso,2991
234
+ nexaai/mlx_backend/image_gen/stable_diffusion/unet.py,sha256=rYj1-baAugL7CNyYYvLch891WUgpunhAJCVBNKxfZSA,14762
235
+ nexaai/mlx_backend/image_gen/stable_diffusion/vae.py,sha256=sQ1943x5SKyTmeL2xe3t84FL9DGO72Eab2m88r-BSe8,8044
236
+ nexaai/mlx_backend/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
+ nexaai/mlx_backend/llm/generate.py,sha256=Phes0tzxbbEWA2hDylQvD0LjorMaPwvcfZq9RKCAOt0,4399
238
+ nexaai/mlx_backend/llm/interface.py,sha256=SZFkuAUi2vxj_dSqj8RXf9vPTGMtpks_pZxxrF7iIe8,29330
239
+ nexaai/mlx_backend/llm/main.py,sha256=gFDE4VZv_CLKMCTn0N521OfCKH_Ys26bHDh6g9VEFNc,1982
240
+ nexaai/mlx_backend/mlx_audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
241
+ nexaai/mlx_backend/mlx_audio/server.py,sha256=Pqy13Fafq4WX_cTuvRFz1jq89beQm2QQGpXmhK4b9jc,17547
242
+ nexaai/mlx_backend/mlx_audio/utils.py,sha256=35_9pWHzCuf2HAWHLkmz8AeyPa9WlYFr86zSRasoaAg,6476
243
+ nexaai/mlx_backend/mlx_audio/version.py,sha256=PNiDER4qM19h9zdsdfgKt2_dT4WgYK7EguJ8RU2qA_g,22
244
+ nexaai/mlx_backend/mlx_audio/codec/__init__.py,sha256=6yClZf58zupCWcOgslT6uqPCSyDyJEgjpD9vmm1sCAk,46
245
+ nexaai/mlx_backend/mlx_audio/codec/models/__init__.py,sha256=23P_A2OE9OELL1E4o-XYTPuqSdD6RkgLVpONYDMKH2A,126
246
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/__init__.py,sha256=_y2zXCB4_lfqo4MErOzBcHop-CBJb7U36enAzIzbJUA,44
247
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/activation.py,sha256=Yupx7w5kmapfjaVRr5Yh8L7Bd49xC_WkWo2g8GBLMxA,1353
248
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/amp.py,sha256=gbmjKPSOP6R3sojvGG3UV7Bgs8bVV7mnbxSh78zz0uk,2685
249
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/bigvgan.py,sha256=ISk3wgi-uNTr8E05-LsrRC6EaA5rRs1vTUyG9FmQw4c,4837
250
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/conv.py,sha256=wSoTvDxZrJVnFnZpotfEDy8JfWOGHLRi7Cnjerzl3WA,3452
251
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/resample.py,sha256=FIVO_UUJ3tgAK_ixeXq195IjLG7atAXl6AXnSp2Vedo,4967
252
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/__init__.py,sha256=KIyZ5Ai7g4NbXRmJ3C8toG0uAavmnNxarY7ns6N9Hp4,21
253
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/base.py,sha256=Rb_DPkc4HGspB4qZBeREBDRJN4gNqV8hC5qIjUm4Ulk,7088
254
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/dac.py,sha256=CfVIZ9JzwL15OJyB2NHGvWBCaU5I7zryRYfRFTneaj8,7920
255
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/__init__.py,sha256=I7pth7lk2g8165zoyJF8V-FzhSAXIEjP11ozHjqaiSs,31
256
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/layers.py,sha256=HQGV0Km2VYRGZCBctuE-mgTpwDJ88q2hiq-dZowWKV0,3742
257
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/quantize.py,sha256=S_q7eo7_Ebf0UQzeJVO2WmVvgu7adWcipH8KOvqDTik,4948
258
+ nexaai/mlx_backend/mlx_audio/codec/models/encodec/__init__.py,sha256=usARsuej0lQqNbVh4wY-FrnfDtTlZUrY1F97mlVXRg4,44
259
+ nexaai/mlx_backend/mlx_audio/codec/models/encodec/encodec.py,sha256=8eCppGULNwSqR2rfLH4xhfRc0sFJtOI1zSHouIRakQE,26135
260
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/__init__.py,sha256=A_ATkvIxeWYRZScbHILXJfL7PUShEtY6Xn0LfojW04Q,45
261
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/mimi.py,sha256=-bVEeK5vehyf5C45YVid7yse6JKSzTt-oXNJtTXpqhc,9249
262
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/__init__.py,sha256=dMdUtb7s6kZiC7ubZSm1F_EMCHt1FtPTX8kcIsvpxaM,661
263
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/conv.py,sha256=GrQ16Zu3HZf5n6BD2WkiUB-JhBkjbgGReoTNuByghJw,11606
264
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/kv_cache.py,sha256=KppVMJZocUPQsBEGXkTAljwNdoh4f_bY8K3DRGQIzoM,6863
265
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/quantization.py,sha256=5ctB35w8mc3rCgSiFUfpEc5MW61UxCQ1iyCeBObgT0M,6036
266
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/seanet.py,sha256=B1ZYSOGquM998DU5M4aFvlDSlwREpC2eYm_y_a895yI,9342
267
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/transformer.py,sha256=4UE8OXTkOe1YE3G4uwNGur1s2_YvNJavXOda08wZf0c,7891
268
+ nexaai/mlx_backend/mlx_audio/codec/models/s3/__init__.py,sha256=Vj9NCtjPaMCJokuK4ZAjTIKfJyQGztQ6_dCjnUvukpw,36
269
+ nexaai/mlx_backend/mlx_audio/codec/models/s3/model.py,sha256=H0jf9-uj63ocz6qc9FFFAMwjMgJeg7538GiWi_uQ2TM,8078
270
+ nexaai/mlx_backend/mlx_audio/codec/models/s3/model_v2.py,sha256=NxUdM_i5_ckK-flqeYvWJ_vVrV9lwJPWlQY7A6cnims,11334
271
+ nexaai/mlx_backend/mlx_audio/codec/models/s3/utils.py,sha256=FPTUZOCfOqDIsn4PlI97QhECo8hAm59Kz1L6dw-AIeY,3634
272
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/__init__.py,sha256=oqKMQgBH2YTvxDrla_royWyV2XNFYhUqG7AKnjnEKdw,23
273
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/attention.py,sha256=-hRrfPehQl4KyTWxuWlaT89IRaBZJYgPgeO1Zph1zXE,3288
274
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/layers.py,sha256=TGn-J0mPVHssP7KDYl7ZiL8CIMnReOqjtgYG_rDnUVQ,8872
275
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/snac.py,sha256=ldWi6TqcwWp4WwluNin5uIDGiSWssRoZpwi1hGXzOqE,4706
276
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/vq.py,sha256=iqZa0Q95BQlA25ik7DlrA_KsF_IZQyZ9nQqXutB4Atk,4302
277
+ nexaai/mlx_backend/mlx_audio/codec/models/vocos/__init__.py,sha256=7NwXJClXTkxPbw1CcoWTQUW3naf4p5AVkhamt_fuZqs,25
278
+ nexaai/mlx_backend/mlx_audio/codec/models/vocos/mel.py,sha256=RgW7SJdOvAzZSljQrfiJvi-X3rxV0pqpx1gE2L2mVOg,833
279
+ nexaai/mlx_backend/mlx_audio/codec/models/vocos/vocos.py,sha256=oRSJGKy4IjQ2EZ6Hq9uCs1bon44Z-OBWjYOy7fpSyK8,12271
280
+ nexaai/mlx_backend/mlx_audio/codec/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
281
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_bigvgan.py,sha256=fs7P_aKdEqkMh-G5Z_AvIURUXCziKCzRu-cfL-r96w4,1643
282
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_descript.py,sha256=PfWklJavdj2QVLJz28v6XEDdHVBxxREWaHioFbdfm10,3214
283
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_encodec.py,sha256=u1fyPVJJCvcjdZkW8f5mwFZshIJnYec-1q1AnyGChQQ,1436
284
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_mimi.py,sha256=90ZUaODzPIIxpwIrI93sHDnwhyhYERLjErRMKF1AN94,527
285
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_s3.py,sha256=IyQSsXT__qci6AZ_LTTJR-hXhnlmyelSb4uApDovVzA,715
286
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_snac.py,sha256=oN_apJJejx9_h2rpV7B2TaMzTbdABhASbOHTPQNEX7Y,962
287
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_vocos.py,sha256=RjGdEIebCufA15WqSJJ40pOWf9a54hHfcHhhlt4j6SA,2631
288
+ nexaai/mlx_backend/mlx_audio/sts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
289
+ nexaai/mlx_backend/mlx_audio/sts/voice_pipeline.py,sha256=YUpecEHqjrRMegfN6n5KPG2A2h6raGuOYbY3xpjBjjs,11113
290
+ nexaai/mlx_backend/mlx_audio/sts/tests/test_voice_pipeline.py,sha256=7heJvtVONn22uzF2CPEEgLT9JPuyhSp-RhXk8rvtvEg,6484
291
+ nexaai/mlx_backend/mlx_audio/stt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
292
+ nexaai/mlx_backend/mlx_audio/stt/generate.py,sha256=Z-hlAcIGsT6UwY9NgfkHDkZcAoQ8z4wCGy1jVnJwwks,5526
293
+ nexaai/mlx_backend/mlx_audio/stt/utils.py,sha256=wNeL5ygqqD0dNxscib1EQK3ToGOyIH7sKyXUBE29n8Y,5567
294
+ nexaai/mlx_backend/mlx_audio/stt/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/__init__.py,sha256=tiICxkwYZ1jKyzYUv6QKgvDiphGEfkwnKdIthb5DYXQ,28
296
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/alignment.py,sha256=j7yT30wq0GFIGi8nZQIzoEQYBtahBDnBgSXO1H2Aihc,7320
297
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/attention.py,sha256=X-fxMfEzhDbr5Vg0v6NUzypvxD8-Ldb7mbISbAoaWhk,5676
298
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/audio.py,sha256=NsL4yceDASN6Sm8meLdnZgStfGNJYN0erkumh0O9Us0,2088
299
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/conformer.py,sha256=GOLHVcclkc27Z84ULfUuqPS2qKYD5KSEb_hsq5ZFMks,10371
300
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/ctc.py,sha256=cbyumguVJDB88dJodezkyfz_HGJu5o5Hfd4g31XO7-g,790
301
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/parakeet.py,sha256=BE1oPf-npIKE2CgS4FhSgCFj9RjyItSeUKaGYmSciNM,20601
302
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/rnnt.py,sha256=2hVrlgGvDxtjlOHc4_bNPlpQnp1E9wHFkH_Q__kUYi4,4351
303
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/tokenizer.py,sha256=Cgg_qE6Jwxw-tcbo2te92vdqjcjSmoqhesguvfgQRmk,134
304
+ nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/feature_extractor.py,sha256=Tlu-nJWkly00IexT9Iz9z3-myayuMWW2twFpra1FIOY,33012
305
+ nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/wav2vec.py,sha256=LTs0l9sPUDdYB_Y7qcctu6_8n8csuyszP1qWwpphgXs,26060
306
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/__init__.py,sha256=pJLy2AwH8n-HXEpW4pV_Gwy2Rv8RoDEDoKlNBGLxIjk,27
307
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/audio.py,sha256=2vcVHqJYAsZuB4s4381W-Vxyo7JpWmVCzl5cylBj5Pw,2446
308
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/decoding.py,sha256=ezzDzQkToqyR4cbJRXi5Tgoz_nwaCF41pNsnvuJYdGY,28501
309
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/timing.py,sha256=JzbCvxny67qlIdrp3rN0jGtdXzGa9yn0B43CsHaYIs0,10889
310
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/tokenizer.py,sha256=4-mbp9qOyJewg_W2XTdxGjnQFCQpAgcusGrU6neZoio,12407
311
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/whisper.py,sha256=6Dw83aLbxKKHs8962280UO00pocmR5VHbrBoR47RxZ0,34920
312
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/writers.py,sha256=NL08m0sPLc4eYv6sukGI8QC3zcH4XESoIisMrE-S0A8,10138
313
+ nexaai/mlx_backend/mlx_audio/stt/tests/test_models.py,sha256=x9LxoSo8vFyF3XocWCAOwZVUD2aGJhhvxlyxWiZzcU4,14663
314
+ nexaai/mlx_backend/mlx_audio/tts/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
315
+ nexaai/mlx_backend/mlx_audio/tts/audio_player.py,sha256=uASE9sx3_j-_5QIuYpoLxb0IBlczT4XKqQz1uyWGWhA,3677
316
+ nexaai/mlx_backend/mlx_audio/tts/convert.py,sha256=WHOQT58ZwRacVk96whTBXy_a24dpA7GEbtaCOdoZ0mo,1901
317
+ nexaai/mlx_backend/mlx_audio/tts/generate.py,sha256=ZIZ8p1AwnpySpzfua9NliP65W-RUyGbCbiH7lvFjsD0,14864
318
+ nexaai/mlx_backend/mlx_audio/tts/utils.py,sha256=yHjmzWxWwBg75O87rzmjfAHsfR4x9U8ncqjI7nEmWZg,11614
319
+ nexaai/mlx_backend/mlx_audio/tts/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
320
+ nexaai/mlx_backend/mlx_audio/tts/models/base.py,sha256=5cMTt3MKvaRZ0MbTMupremTerRbi3XU5xCs28f5Dmqw,2108
321
+ nexaai/mlx_backend/mlx_audio/tts/models/interpolate.py,sha256=C49nZRNRXko_eby7l7pvCrs0fA_ay-J_evtoyOaxcoA,3521
322
+ nexaai/mlx_backend/mlx_audio/tts/models/bark/__init__.py,sha256=SVIa-o96gDHLJ3ZD6jcB8tlRJHnj8oVnQdelnKL1qp8,116
323
+ nexaai/mlx_backend/mlx_audio/tts/models/bark/bark.py,sha256=C_by_WAVITgJ4K9QRpDghshv39Sc8TZ8lhC_XLVuTs0,18017
324
+ nexaai/mlx_backend/mlx_audio/tts/models/bark/isftnet.py,sha256=JWBdHtmmeIpo6zxazk7eTilNGrmvRqiWk9GGmRCI0S4,344
325
+ nexaai/mlx_backend/mlx_audio/tts/models/bark/pipeline.py,sha256=NjC9PYsceMScP04vBkkIqViqu7uiO1WNmxviwZHqn0Q,16299
326
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/__init__.py,sha256=D0wxtRXh7-JWboO6vdnpjg9vBtSJx3kM4IOKECg6fJs,23
327
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/audio.py,sha256=RzC6JzVc6H1DkJMljzdWLujwVqCOs2GvzQfpELzSsus,8968
328
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/config.py,sha256=2my1AGaM9ecHazeMkj0iecO30Ul90zdNGpNDARseYB8,9219
329
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/dia.py,sha256=oH4hmMdh7MAwZhYCRFJeJhNp0kFUvJJ15B4kk36po-Y,21881
330
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/layers.py,sha256=xIM02QXbBlgbzvVrxN7mygW6dQtJEfZzTvKGUPkSgWE,29145
331
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/__init__.py,sha256=zjEdjSAB_SBgt2ZVZornAlqWij4-4pzW4cVwPVjFN3c,102
332
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/attention.py,sha256=seTeDud8YI4n38IWHKMcRECfmFckRHMuOmRwbiq6Jt0,5621
333
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/bigvgan.py,sha256=0gNbCqPqU2qwcZdDAn9ufyAMBOkkrk7z5G7HRuB_wxE,3909
334
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/conformer.py,sha256=t1NE7muEOhTaJf258EBvE-w1GyOw6nF0oQZWdCxyAu8,7328
335
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/gpt2.py,sha256=fg1oz2eFOtwy3zexT1tfNm-8aFriH4M5TV911rBll8U,1258
336
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/indextts.py,sha256=ANchayvvun24CTygEmiqKXsmgxWujb2G2IjX29tQRKs,15027
337
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/mel.py,sha256=0xbO4Pk4K5H3CY5YhnC9Mdonl1AGYzgr_czMSwVxIM0,837
338
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/normalize.py,sha256=I_ZGZalBnHrG6v0IHI7Zw9wqUiZrVdyyBhC5jODmpAs,8128
339
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/perceiver.py,sha256=uKaZeLlZq-XWZ_IxnpZBrGRqcAQfP3j1mko8j-0gi50,1787
340
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
341
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py,sha256=iXpwm3yfbVvsfhTgbrwtnPcWbx37yoyHOv4odf6PAC4,1760
342
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py,sha256=KLOQJlEIuqER2eioSkTmB0h5BGQmLD72cpLK961g-p4,2855
343
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py,sha256=V1NMDWoN3gLXH-L2pqMrr2BFsW7c4xKcqr_Fbmmc81o,3336
344
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py,sha256=JWLMAdLb_u_icYxi_t95eWpzFjggyEjfEQkc-siJR-E,1064
345
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/__init__.py,sha256=jisbM7KCn5zkXi9T4ojfjXBlZ-MAacld0Ymvb3TpfNs,130
346
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/istftnet.py,sha256=KFhuRAF5M0zLBArZdgYMjh9A2IQVHDc8yHvymUWHqsY,32481
347
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/kokoro.py,sha256=L1AsRHaWAaQGUH2g5UGb3hqvWQEfsHTIA8ltxGDQa3o,12207
348
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/modules.py,sha256=a4541RzrYYP178DacGDwavtF1k4X-TczhsWvEiZohFk,22928
349
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/pipeline.py,sha256=5HJ3QMy-4Q6IxvEnxyxAvFockhtiA4Dh_VRci6XkZlc,16746
350
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/voice.py,sha256=AFnv_EPGGgT6-vMRzhviBd2Oaw0eG88euFUKpTH1dSk,4154
351
+ nexaai/mlx_backend/mlx_audio/tts/models/llama/__init__.py,sha256=scnfrCNEEZ9bBf2Qd2tm8QQLt27gP8j2ky2GFIGxdiA,74
352
+ nexaai/mlx_backend/mlx_audio/tts/models/llama/llama.py,sha256=o5iK50czp2e2zbDnJ0f--C552uPnciCvZoRuJHgxd4w,11433
353
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/__init__.py,sha256=UF-9cCswNVxvVqtXVoRgZwzEvbRCNYkVNk4cJcQV6t8,40
354
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/audio_processor.py,sha256=IF8rxHm_WcA82slU75RlwU573u7DF6dIet_TXNYNYEw,11464
355
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/dac_interface.py,sha256=Yti1ut4Z7NqyQ02Cskr28mhW-sSjjP_BpCflOn4Ws84,5029
356
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/default_speaker.json,sha256=-ZQMe_Ff9KoMXuxoWKcMBr2ti7Q1g4Hb3Bzd9XFFBKI,14048
357
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/outetts.py,sha256=3Qm9ZlbosZOXXGqPe-cT3fds3SANv1sUiG_MzsHmTD8,9222
358
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/prompt_processor.py,sha256=7iLnfQyG1dIISa4HJsW8RB9yLpbc_yP3jlJ_mPD3dQQ,6277
359
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/tokens.py,sha256=r4SdeGZCW04f2SMWnv_bYN5goFCdka4wnw7LjSiYShM,1231
360
+ nexaai/mlx_backend/mlx_audio/tts/models/sesame/__init__.py,sha256=T14qNKlLb_nHDtqOereBOo40UMUkmYzJKUqUn1Ac2oc,47
361
+ nexaai/mlx_backend/mlx_audio/tts/models/sesame/attention.py,sha256=OxwzCY6yhSU4NJNkkyHVVNsC0DF-97I3nuz4MCdMM1A,6316
362
+ nexaai/mlx_backend/mlx_audio/tts/models/sesame/sesame.py,sha256=IUTaUXmDmVSssxD85Vw2y8ijJswgLUM150-cO2_2kME,22818
363
+ nexaai/mlx_backend/mlx_audio/tts/models/sesame/watermarking.py,sha256=rFA56rgkq7jbFKrlH6EJRi_JQcDXLnk67JjVTpJyZBc,2972
364
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/__init__.py,sha256=8vB16nVHdnBU32aIL8Un7lGprcBvMe1Wn96r6KcYH1U,38
365
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/audio_tokenizer.py,sha256=Vg7cT22Pjai8FSscDdoVAKwc564fptEgVGXwuU0iQfU,4928
366
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/bicodec.py,sha256=VPSxIBfT99ymNNw2wiB7egvgKmpi9knJZevDkVzRuQw,8927
367
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/spark.py,sha256=824_1_x7n6Kz5TWxrxF2lOdSem9f0ceqg9fnDb7t6KE,12514
368
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
369
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py,sha256=fUlplV8aH5Baqdx-p77M5Jeykny37iNQkEXhCt4x85U,7193
370
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual.py,sha256=Nmt1tbHFApCFVagrtqBZZnZ4asSoHYF2D5J1liEPhcU,6820
371
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual_fsq.py,sha256=10-fNNb6rl0Uu0UKZ7-K5YpcIpiUUzg_80rke8Pt4KQ,9830
372
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
373
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/sampler.py,sha256=mFLlO-T6sIepOehbSCL7wUElqT3bXFUrebVfFTYs22A,3787
374
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
375
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py,sha256=x_u3JhePGym-CDvyp-lputrPvBfaeZNk0XBgNYqDaaY,3726
376
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py,sha256=Je5pVFEwrj4oSzqHHRadDtnctl6xyDG75hEzN3WEmGE,3993
377
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py,sha256=TdAMxK40cNbZezthIjcZqzsDmbPqMiVdDfaQ6ehXngw,3188
378
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
379
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py,sha256=1fIsn6OUBImzTeDVWoopP3gbe_jOogkOWq4YTVOCMIQ,8065
380
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py,sha256=k4zuggnUVB0hELZx2kVaN1t1ZayFeX9AFAZ8theeyis,9177
381
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py,sha256=kbuYk8-pCNhPzmJteUPyNHmI0o-zJ0fOONAurrBP64c,10052
382
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py,sha256=666kTSMPIkDZkBQvOM8AXOC4dHVSEqSD9kOiUu6UBS4,5045
383
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/audio.py,sha256=TxmS00kXX3XMmwgrJFRWxbhw_mI6SBcFA-RiKCGS3-Q,7014
384
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/file.py,sha256=XqBnJ3N1ikI09SbkJ-6VpEL6sjgfiTQ5lAGevSQemM4,7126
385
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/token_parser.py,sha256=SBtWwVyYeGPcHxtb9q2SqqIg6IeTn6fDmYKOCkGtb7g,5154
386
+ nexaai/mlx_backend/mlx_audio/tts/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
387
+ nexaai/mlx_backend/mlx_audio/tts/tests/test_base.py,sha256=dAeEA0IsBnUy8gxnE9ahOqXqWgLqEHjEVCCGGPPpqu0,2358
388
+ nexaai/mlx_backend/mlx_audio/tts/tests/test_convert.py,sha256=79ddUhtTUlElD9NvBupUxl-MV4HKFM9PUxQpTwKLnBA,5804
389
+ nexaai/mlx_backend/mlx_audio/tts/tests/test_interpolate.py,sha256=9dNmH03C46HtxwesH2DpT2oTNEG1KCZWYEKq6UQ3vfk,3536
390
+ nexaai/mlx_backend/mlx_audio/tts/tests/test_models.py,sha256=12RiOfPtSZQj5g5JM-yCJk3uGQfM3OdmRiPt5uUDE4E,35096
391
+ nexaai/mlx_backend/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
392
+ nexaai/mlx_backend/rerank/generate.py,sha256=Y6aWBg0bxVyLS7OiLTpM6cR0XoVw6mpna6QOkBFMpNM,6017
393
+ nexaai/mlx_backend/rerank/interface.py,sha256=iU8KmEdDa_QpptszWGlYGerp9LR08TMm8Ba80neMyAo,9922
394
+ nexaai/mlx_backend/rerank/main.py,sha256=HEiZxPvW54B1TlZ6svVguunSXOtUaHZSSPuQvxnBvHA,4258
395
+ nexaai/mlx_backend/rerank/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
396
+ nexaai/mlx_backend/rerank/modeling/nexa_jina_rerank.py,sha256=lVJSjTHWhpFy71elcp0yaWnQGKX1boU4xbkhwV4bMlE,10871
397
+ nexaai/mlx_backend/sd/__init__.py,sha256=n3pC_cDqtZuP0_X9OkSBwwKqjdLfRkbRIjjFYd_1iU0,44
398
+ nexaai/mlx_backend/sd/interface.py,sha256=5sGuEwfDGQtSeZ93JmDn2eL47XHmCyxkceDSyCK7e1g,13415
399
+ nexaai/mlx_backend/sd/main.py,sha256=cHlZhG8KHDFXbYRH-diKA7B1Qacq1euuGw0pKeXJGAI,8575
400
+ nexaai/mlx_backend/sd/modeling/__init__.py,sha256=wriLb0wA5vCBlCoQMtfKrVVWMJw8fhXCCk6R9_Nrb9c,9524
401
+ nexaai/mlx_backend/sd/modeling/clip.py,sha256=feHQXi1NiGa01AMo7nK8M-sgBoZBHI95xAGMfAv64kE,3733
402
+ nexaai/mlx_backend/sd/modeling/config.py,sha256=lq2sWXevpnCk8KXOywEVOzgFT6WBNnG4xr7NLWgidII,1773
403
+ nexaai/mlx_backend/sd/modeling/model_io.py,sha256=xUjF5XNUfRLHQz-LtGT_D3XGQ1MI7ZQWknmdUDMpi_s,13732
404
+ nexaai/mlx_backend/sd/modeling/sampler.py,sha256=nJxiSmF79E2aDGzLqygOat4zpgaTzfR7Kp1PD0bmhWA,3397
405
+ nexaai/mlx_backend/sd/modeling/tokenizer.py,sha256=WMcmyQmb5MmhCp-NNU72Bqjq9vQvDzgR8KAfGKA2Qso,2991
406
+ nexaai/mlx_backend/sd/modeling/unet.py,sha256=rYj1-baAugL7CNyYYvLch891WUgpunhAJCVBNKxfZSA,14762
407
+ nexaai/mlx_backend/sd/modeling/vae.py,sha256=sQ1943x5SKyTmeL2xe3t84FL9DGO72Eab2m88r-BSe8,8044
408
+ nexaai/mlx_backend/tts/__init__.py,sha256=fuT_9_xpYJ28m4yjly5L2jChUrzlSQz-b_S7nujxkSM,451
409
+ nexaai/mlx_backend/tts/interface.py,sha256=0FvZbIyOvg8jERZEQ6bygbv7v02O9xHO4-TPUlar0b4,9568
410
+ nexaai/mlx_backend/vlm/__init__.py,sha256=_25kvMEviX16Hg3bro8Ws70V0eeIEqYKV8ZDXqYzKew,73
411
+ nexaai/mlx_backend/vlm/generate.py,sha256=DqHFEAuqk-nko8ho6U9GAXTDAWz4d8GTe_hCt-XFyCw,19071
412
+ nexaai/mlx_backend/vlm/generate_qwen3_vl.py,sha256=undjso1mfxqpd6FMTksSA5qagRttxAGbOBj1x7cqI1s,9211
413
+ nexaai/mlx_backend/vlm/interface.py,sha256=vFTzJCbqq55ybv_tbDBC9NVn1_sXgCfqXdsV-3ia8vo,16177
414
+ nexaai/mlx_backend/vlm/main.py,sha256=nPcg25jupeDD74uvRoxpWp3Dsulw7WddI7vll6zejak,10664
415
+ nexaai/mlx_backend/vlm/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
416
+ nexaai/mlx_backend/vlm/modeling/convert.py,sha256=ia5i9cgTufFGmKyhkYUaW0nfNqT_bMo8i-Hg_zy5JC4,1863
417
+ nexaai/mlx_backend/vlm/modeling/processing_qwen2_5_vl.py,sha256=PdlV1pTp0_b6QPrXNZzA52GBMRjyODWLlN_uzrMtDLQ,10218
418
+ nexaai/mlx_backend/vlm/modeling/processing_qwen2_vl.py,sha256=Kzu_GcXiQeUt9o7AUILgmOsc6nfts7mN30rl4F_iFeg,10254
419
+ nexaai/mlx_backend/vlm/modeling/prompt_utils.py,sha256=ihebAhlzlmxX0JTV0n3_8gmTJK_0GelXgcAUOI2TjV8,15702
420
+ nexaai/mlx_backend/vlm/modeling/sample_utils.py,sha256=Q_PT7wbq-pHostpUgmhCm-WcsvZ_sWHKMq-Owy3XUT8,1354
421
+ nexaai/mlx_backend/vlm/modeling/tokenizer_utils.py,sha256=si_yU4NfBBdDk1vHGhGdzvwQyYKGOBcNOvuXXfeDXRc,10693
422
+ nexaai/mlx_backend/vlm/modeling/utils.py,sha256=W3xZmWEHK31BwtGQeqv60BQAT9F460JvV1YDWFM1nLw,30226
423
+ nexaai/mlx_backend/vlm/modeling/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
424
+ nexaai/mlx_backend/vlm/modeling/models/base.py,sha256=qVf-yv5C5_FigU6NPJHkikwQc0jMzshtHd-FRgVny_g,6212
425
+ nexaai/mlx_backend/vlm/modeling/models/cache.py,sha256=7q2waWeCZSjsDCuTi3nEY9M0cO9C7XMwRdLDmZLkl80,7409
426
+ nexaai/mlx_backend/vlm/modeling/models/kernels.py,sha256=nJYMiB3nxfpO3EpD4KfTvZ7Cn28AerRQDMEhRRDgvj8,10283
427
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/__init__.py,sha256=DsuevxWyQ_P-7qcxPfH86gjw-qo1sJIVsW8BMMMBR9s,126
428
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/aya_vision.py,sha256=c-D6o7HmSAFWhp1u-3SSeLo5KCqGBVl0lewlfUHuD08,6708
429
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/interpolate.py,sha256=JsFYtIZoDv8XAfqYKt7p3fdUPybGx8LVVtWi9ejLgZo,7073
430
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/language.py,sha256=Ch8pCFfErinfdLdazHmyDbqmce0Y3yGYrWxj2r8N8rc,7362
431
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/vision.py,sha256=BeVhbFbMLEUqRakLInWy3t90cX-F5EXkS9Yvt0ftrtY,18135
432
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/__init__.py,sha256=BQv9ZWMbrIxqE9N-hPThwZ-1u2DTtdt4yKo3lpE-xHA,178
433
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/conversation.py,sha256=H6-RV9A8wy8ea7TgM_G_DcCamYYRT1-X8TETbtgEXD4,8230
434
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/deepseek_vl_v2.py,sha256=Jf0SRNEUfe90DiUVgM9LfQ3EdC5duPHGf_nGXiS9R-A,17815
435
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/language.py,sha256=UAfsz7ENTvP6aCo1HiWLGpHp_rHj1TUya5SGEDPzeLo,20494
436
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/processing_deepsek_vl_v2.py,sha256=RAfwrkXiGnyRIlNmlh8eKPNSrudoNrvdgS9cEDANxiw,18671
437
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/vision.py,sha256=6Uf8gbhY8bCyXls_68TIbE_ly4wus4S5ELkOgSzVkLI,10923
438
+ nexaai/mlx_backend/vlm/modeling/models/florence2/__init__.py,sha256=TCHENiHr36OR7FGMVID0DDbNIwjtJifPtFiuCSBy2nk,125
439
+ nexaai/mlx_backend/vlm/modeling/models/florence2/florence2.py,sha256=TtkKb6MsjptZxjpRI-xjf7t37MIfuqvpWbp15lGSv7E,13099
440
+ nexaai/mlx_backend/vlm/modeling/models/florence2/language.py,sha256=WL0eXkeKFC-mqTsueoVFTP4fn_DkJgU047m2W6y-1xA,16594
441
+ nexaai/mlx_backend/vlm/modeling/models/florence2/vision.py,sha256=5bna_aw7gDJ_knjimiZ9czLydkEJmt0nuN5gnptNcLE,16997
442
+ nexaai/mlx_backend/vlm/modeling/models/gemma3/__init__.py,sha256=iOd-lWlJDgnEyoZZ6vikZd3PsRhBq8_uSLPIAUjPpfo,122
443
+ nexaai/mlx_backend/vlm/modeling/models/gemma3/gemma3.py,sha256=6lIqddtl5RCVWCnlnvix1qPGyhbZon_jLvUoXFg2nwc,7548
444
+ nexaai/mlx_backend/vlm/modeling/models/gemma3/language.py,sha256=eHb8aqbEUYS1Ma8nq4migF_qVR87xzqTH4PnECI9IYc,10268
445
+ nexaai/mlx_backend/vlm/modeling/models/gemma3/vision.py,sha256=UExcSWWL1-4eTkVYRHiK1s8-VGc7eiVS__MwMUnmdvM,7654
446
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/__init__.py,sha256=iu_nBtI1gg6yS6jQqOV_eXHSdEBSttuaXcJh1plwQl0,138
447
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/audio.py,sha256=sP2gePQo6TwB4p29DvGh97pnXbaYiGtXcYRygohn-9s,42203
448
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/config.py,sha256=YBcgZu5vgcW6EXLYiExuiSFIILME_DBupLB2_uXNZPE,4109
449
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/gemma3n.py,sha256=zsGBamEiiLkOTt7MTQwj9FBSjiuIM_catjxlHy0yRNI,11762
450
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/language.py,sha256=5JrrGqqGd6DKgrmKEgyrXeIw8T0_F9shW1Ht1shUP3s,21718
451
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/vision.py,sha256=_JF-cxEhizjlzAysOtcqolEBNqaHlW7RcZ35BG2O3Q4,32774
452
+ nexaai/mlx_backend/vlm/modeling/models/idefics2/__init__.py,sha256=9-RTi8hnIXow9Lng_3ZauPcH0-KfAxqtkkopPbp9hCQ,145
453
+ nexaai/mlx_backend/vlm/modeling/models/idefics2/idefics2.py,sha256=4XGhEnFFWtA8aAfTddwnXaJuQZxs74Jciz-Rq7CZ614,9532
454
+ nexaai/mlx_backend/vlm/modeling/models/idefics2/language.py,sha256=U4sM5pwbxVrZu_ukPmD_2e1hp3xpNJSv1YB8ZJQZpv0,5996
455
+ nexaai/mlx_backend/vlm/modeling/models/idefics2/vision.py,sha256=ZGsEORw1N6R7lJ3Yiz90O3sGVlt-DZo4p_exvImxQxM,8843
456
+ nexaai/mlx_backend/vlm/modeling/models/idefics3/__init__.py,sha256=QO4U4tH6cnmibJM6lGaUBjiFLnq5pysC63gb2Tcv0RY,124
457
+ nexaai/mlx_backend/vlm/modeling/models/idefics3/idefics3.py,sha256=YuMYYjbqJwShFxGR59ZA_nZRVT8RXvoh7fmJ29cswDg,5461
458
+ nexaai/mlx_backend/vlm/modeling/models/idefics3/language.py,sha256=cYPQU-xEuKDywxH9gaGB-3ZbS26mPBQgG7eM2UHAFpc,6062
459
+ nexaai/mlx_backend/vlm/modeling/models/idefics3/vision.py,sha256=gZyDmPeErlGsgtK1s8lLxg72g7D_-PFha9E5_lC2tm8,7587
460
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/__init__.py,sha256=yJda-w1nYNxbQw0bEk_eb0FESvj9YmQfyfC5TUk-G6M,198
461
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/internvl_chat.py,sha256=qiwnN-CfqquV90QHhZdPwZ3O792Z2nLG-HVBn7WUUMM,4431
462
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/language.py,sha256=KC9Eu315Z5ehGOGEbj29ih7eq1RN9QLR2N4Zqrl7Kjk,6725
463
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/processor.py,sha256=UkE-qFLRcS3xeEa57rRkCQTyG-e8JiolY7eFyMH8ZsA,14235
464
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/vision.py,sha256=IhnusA8AUjHktsNAzITLUE87J3UIlbg0icDjRZSWiyg,9702
465
+ nexaai/mlx_backend/vlm/modeling/models/kimi_vl/__init__.py,sha256=xu3qapXNTsgV_Wiy6KPHlqmJvbnhXRnSJNK-m6Jfj4Y,123
466
+ nexaai/mlx_backend/vlm/modeling/models/kimi_vl/kimi_vl.py,sha256=xVixys0VUa8lkYpMIdUuN7pifzsD_2OYMRb9CEkd2MA,4405
467
+ nexaai/mlx_backend/vlm/modeling/models/kimi_vl/language.py,sha256=zls5RbW1LPLQJD9lviQz3fXaGcb7QyfI8RyKiq1o22o,16768
468
+ nexaai/mlx_backend/vlm/modeling/models/kimi_vl/vision.py,sha256=wk3RXFbLM4Li1czZegvlWj3GuOiNdmVXER3m2xYSupk,18094
469
+ nexaai/mlx_backend/vlm/modeling/models/llama4/__init__.py,sha256=Yg0P88xUaJvvzct3xMJjd2A1dx7JV8Ukg3bBMEBGe9g,122
470
+ nexaai/mlx_backend/vlm/modeling/models/llama4/language.py,sha256=Q_-bmHY8XMxQO4flSGiytYnGH7FI_UabCSwrCKowCyE,12949
471
+ nexaai/mlx_backend/vlm/modeling/models/llama4/llama4.py,sha256=Ok3jH2UiE9afRPhrpQkLTtdilpd1bMQiAIqGqrn3hTA,4392
472
+ nexaai/mlx_backend/vlm/modeling/models/llama4/vision.py,sha256=3PzBb9ynusCg-Zw_81xb0Y1Bcpjk6G0h8Rk090LrKoc,18435
473
+ nexaai/mlx_backend/vlm/modeling/models/llava/__init__.py,sha256=XTbyDs7MRdWKiIjcrpj8jWRX_lWpkUeDUwq8XftMio0,121
474
+ nexaai/mlx_backend/vlm/modeling/models/llava/language.py,sha256=FnuZwfHbDrDMbQKA8n53bHm8Hy3IX39AvLA7tBYQ6U0,7743
475
+ nexaai/mlx_backend/vlm/modeling/models/llava/llava.py,sha256=yfib0AQcyYe7L7smCiGy2BqCIWi3qIjJSEiUgOzGQTg,5285
476
+ nexaai/mlx_backend/vlm/modeling/models/llava/vision.py,sha256=ZV0WvzxGQ1k4esrSTa3yiAwjtOWnT40sjg02mVCoAx8,8520
477
+ nexaai/mlx_backend/vlm/modeling/models/llava_bunny/__init__.py,sha256=9jsgrMKG-lSyB0R6Gpa-mA00kPUztEw3LpGwciJIuyU,147
478
+ nexaai/mlx_backend/vlm/modeling/models/llava_bunny/language.py,sha256=XstwscHuoegRyOqAKWyQBCoP2CkoXDuNRrcLxoOcNcI,7560
479
+ nexaai/mlx_backend/vlm/modeling/models/llava_bunny/llava_bunny.py,sha256=7LR-JxOVp2bGm0glBlWl4PT97U4wOdCb6ReNM5HBecU,8295
480
+ nexaai/mlx_backend/vlm/modeling/models/llava_bunny/vision.py,sha256=JwKWMPp2tig8JHBNc72qiFwUO2hHmV2pNTDDqR62nAo,9703
481
+ nexaai/mlx_backend/vlm/modeling/models/llava_next/__init__.py,sha256=0DqRY9eU4is6YTBnpTaaDw7dHgpb4LshbhiV4u1Tvac,126
482
+ nexaai/mlx_backend/vlm/modeling/models/llava_next/language.py,sha256=JzHDhLohuSe18E0w7vWo0BGZmAQ4PFVoIVq6cl8BTVo,7375
483
+ nexaai/mlx_backend/vlm/modeling/models/llava_next/llava_next.py,sha256=vm7zpnCqqt5NBwmOafPC6FVKMGaadOuyTB-nVlDECIo,5432
484
+ nexaai/mlx_backend/vlm/modeling/models/llava_next/vision.py,sha256=iuHeSO4N-6dXZj2l_Cu06pX8NvuIFxqFGxOR5REVNN4,7926
485
+ nexaai/mlx_backend/vlm/modeling/models/mistral3/__init__.py,sha256=Jcg12HYdW9E8uDHdPz1SS9PTfeinqDqWZPxGTwv7B1c,124
486
+ nexaai/mlx_backend/vlm/modeling/models/mistral3/mistral3.py,sha256=2Ef50Mw9BHvDICU-GSYnXQK1aIYhDo1ygRTGim1NEEg,9414
487
+ nexaai/mlx_backend/vlm/modeling/models/mllama/__init__.py,sha256=-wzqUK3A74dQBift1InXI79l8zfU5WgvjAmAJlAFutg,122
488
+ nexaai/mlx_backend/vlm/modeling/models/mllama/language.py,sha256=tHjeQoziSzY34qoGYZ3jyCTsZD0o-2qf6qi3oG5UPGs,14699
489
+ nexaai/mlx_backend/vlm/modeling/models/mllama/mllama.py,sha256=xPT2-drmM3EgJ649caGzuNU9YYzZwxpr64qGvrqLRbg,5518
490
+ nexaai/mlx_backend/vlm/modeling/models/mllama/vision.py,sha256=Pns7GLeNqX5hJbAsVltUSR5S-C_jv65LkfzeLCbps50,17179
491
+ nexaai/mlx_backend/vlm/modeling/models/molmo/__init__.py,sha256=Ho4yNHWTcZKUNFeePWKf93lm26t8aqbfpmyrGJ3LaTY,121
492
+ nexaai/mlx_backend/vlm/modeling/models/molmo/language.py,sha256=iuNNDGiGA6b5_Eab4tlQ6oY1rNK_OoMQT0V41VMPNIg,7319
493
+ nexaai/mlx_backend/vlm/modeling/models/molmo/molmo.py,sha256=CRo1CgvhpDX979IyddxuO9Q7eVQPOM37ACuGOaKOyEA,4421
494
+ nexaai/mlx_backend/vlm/modeling/models/molmo/vision.py,sha256=ycj7SlrRJ6HLmZ6xs6YQ8Jq3lC-i5gx8BZve36_yjrM,16039
495
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/__init__.py,sha256=KRtd-Xac8BS1Y98wBQnCsno0g2oXAaJTso92KM7C8bc,171
496
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/language.py,sha256=6-peH6hjHZYNjPaqipZ7lR6JZSPq-iR1QRx-3_1Jc10,7381
497
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/multi_modality.py,sha256=PlcagwaquP5o4jY4kwRkoSFdXKhPBl4mWzMOVn5JgIc,12542
498
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/sam.py,sha256=wBVbATFQCYPwj24SacVMYyCMtp_UJMb48hTvw4mSlek,19066
499
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/vision.py,sha256=j8WUDlAsOdHmQt_JrPE7PsCJ3vH1zwvjkU_kwNd7jo8,17362
500
+ nexaai/mlx_backend/vlm/modeling/models/paligemma/__init__.py,sha256=VY8-bvKoa7eEZtagTdxPiI-Hdib77F4vyic7Y-pVEJk,125
501
+ nexaai/mlx_backend/vlm/modeling/models/paligemma/language.py,sha256=l3WeLMVtEc0CR6cJh0Oq1YWArqZ6lAjeY-iwUDYd_vs,9330
502
+ nexaai/mlx_backend/vlm/modeling/models/paligemma/paligemma.py,sha256=TdqS_uthWJvmD03RHXp8tD44vrGhaL1kEMgSvX2_7FM,5554
503
+ nexaai/mlx_backend/vlm/modeling/models/paligemma/vision.py,sha256=HTHbpel48XGcgjLyiOH406vv2LCZGKcs5gIfgC1ayEU,7756
504
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/__init__.py,sha256=_09_A3rCKPgiLoh5nNvZ9q1Y7gwaJrj3yYG7FxsqzPQ,122
505
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/language.py,sha256=Nmye5NBz8rR5tPGPBKGmLhWGYlVRxGfFyAA5O-siBMs,384
506
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/phi3_v.py,sha256=F_JzvFCGVdFmlgLDbZAszdL_LqfOep5x2P2UzAZfmQI,7754
507
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/su_rope.py,sha256=8GuFFbTnfTAvnMB3PyDtuausPf7NCyTddYPHtcBrQeU,3365
508
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/vision.py,sha256=i69DehvOYyBgFrCmbF0TG2YSrIHoRDvTG9hzrraFtZM,10845
509
+ nexaai/mlx_backend/vlm/modeling/models/pixtral/__init__.py,sha256=fMUWctNaCVUXn94PAWOy3EAZCO1nPWETW4tQUTXIukA,123
510
+ nexaai/mlx_backend/vlm/modeling/models/pixtral/language.py,sha256=TguNVrGerRI3yuuoXuJIM1NoRWdDcBYCD7HwblCvVHk,7320
511
+ nexaai/mlx_backend/vlm/modeling/models/pixtral/pixtral.py,sha256=p1V0kT4Jjim01qv8EOrxeFR10QxKqAgwMxgRS5mswU8,5840
512
+ nexaai/mlx_backend/vlm/modeling/models/pixtral/vision.py,sha256=HOqbwRTmedGBu7XLkcDjcgrL5VCZYHMVCdGrZGjV1zo,10618
513
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/__init__.py,sha256=Gh9nT0rpEOQOGzNK3Cd80tt3_2mt9pGGoiSdmt34B1c,116
514
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/config.py,sha256=aKtTJhN5M_KaHf3QrOoACf08kJpWZh3IELv1YjHNHX4,3137
515
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/language.py,sha256=OeUoAfIg7dNB43tzRTLk3brdPmYFwaf_uUH4a-VwIzo,19189
516
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/qwen2_5_vl.py,sha256=xLbbNujUc1pq9nSQz6Y6IG0KzTBqMB2pju8SFR_cwp0,5893
517
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/vision.py,sha256=8z0aZ5vpCIBfelBZuNsuGhHDuiSWNx460zQZUtaAnMo,14612
518
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/__init__.py,sha256=P1WUzaUZF27dXhvUTunDLt5Dz62SzWWYgdbTGAv5etw,114
519
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/config.py,sha256=yPnWEyLruqmakMVGsFpizd_2rFOGwyscAmC6jW6ZtgI,2940
520
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/language.py,sha256=OeUoAfIg7dNB43tzRTLk3brdPmYFwaf_uUH4a-VwIzo,19189
521
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/qwen2_vl.py,sha256=YysRg1PszpZdsH7hywqN2pIMZAbU1P636KZoSJCNri8,5740
522
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/vision.py,sha256=rcneYZYwP5fx3p8xxXEDGvnWAMIn8DXenqBPLBjmVcI,10555
523
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/processor.py,sha256=_WZK8uv0LAGHO8V5LwCojyS4UYk0tfICsZ9GM4_Pfxo,19156
524
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/qwen3vl.py,sha256=LArnNtI98B_GJOblPNijVage9EmVfa-YZYI-2XGFZek,50662
525
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
526
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/base.py,sha256=4RlZwgz8YX2ngmJNaymxFFpw9hJu-0EMw9xwXpngW9o,3496
527
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/cache.py,sha256=NMOB6x-RT6svF4H-Ymo5WqnP7ptAal3aaKjWZXWGMsM,17671
528
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/generate.py,sha256=Mw7Btz0_t7erQOrfWzCXT-ktEwZl61OODcmDMIo3VS0,26719
529
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/rope_utils.py,sha256=ty0dA3SsEUFtFbHo16tKdnKymrNKKsUO3KMYapMajbY,8704
530
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/sample_utils.py,sha256=8SEeVwgjuvaYy-4ALAU0RHQMuRr2k7EkXba_csxk498,10673
531
+ nexaai/mlx_backend/vlm/modeling/models/qwen3_vl/llm_common/tokenizer_utils.py,sha256=Gqanx4hBDcon_k5ClhUsS4YpMbZNiee8jvImGS9h43s,13229
532
+ nexaai/mlx_backend/vlm/modeling/models/smolvlm/__init__.py,sha256=nvaihrxZuqymlQZbPCSTKBoxzJYx5fg3U1aM5eXUutw,123
533
+ nexaai/mlx_backend/vlm/modeling/models/smolvlm/smolvlm.py,sha256=i-B_d0AxninzMWSHx-kc2X5nwp-0bmKnibjS7nXeKGA,2363
534
+ nexaai/mlx_backend/vlm/modeling/trainer/__init__.py,sha256=rGAttw-lYQ2HUXVeuDDprKq8ERq3WIIFnRsA9tYwAjo,252
535
+ nexaai/mlx_backend/vlm/modeling/trainer/lora.py,sha256=tGjvenjEQ8_1Az8Nz3smz5Mgvu20wOmBw8857egiWPM,2134
536
+ nexaai/mlx_backend/vlm/modeling/trainer/trainer.py,sha256=h16SaHt76JzFruXuidgXDx7_2evx4L0SecvzqLmhyZw,9081
537
+ nexaai/mlx_backend/vlm/modeling/trainer/utils.py,sha256=29oHf_7946YeJKP_-Dt-NPeN4xJq8Fj7Yv4jZKO9RWA,4909
538
+ nexaai/rerank_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
539
+ nexaai/rerank_impl/mlx_rerank_impl.py,sha256=h37PKSIRBY8mwzVeLeP4ix9ui3waIsg4gorzelYLJbM,3243
540
+ nexaai/rerank_impl/pybind_rerank_impl.py,sha256=CtwkG7YrW58GPMDERJSnISGTVCXWNju5__R2W837t7c,1513
541
+ nexaai/tts_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
542
+ nexaai/tts_impl/mlx_tts_impl.py,sha256=i_uNPdvlXYtL3e01oKjDlP9jgkWCRt1bBHsExaaiJi8,3101
543
+ nexaai/tts_impl/pybind_tts_impl.py,sha256=mpn44r6pfYLIl-NrEy2dXHjGtWtNCmM7HRyxiANxUI4,1444
544
+ nexaai/utils/avatar_fetcher.py,sha256=bWy8ujgbOiTHFCjFxTwkn3uXbZ84PgEGUkXkR3MH4bI,3821
545
+ nexaai/utils/decode.py,sha256=61n4Zf6c5QLyqGoctEitlI9BX3tPlP2a5aaKNHbw3T4,404
546
+ nexaai/utils/manifest_utils.py,sha256=sR9Nme4GbD3Cb3fMd55yLvGZpqxb71vd6b2XZTsrIGM,12328
547
+ nexaai/utils/model_manager.py,sha256=p2kJKK63Zk-rEUucFsgY0T5PyXi_IvJY0gKewUVcAV4,56081
548
+ nexaai/utils/model_types.py,sha256=-DER8L4lAUR_iLS99F0r57avwqWtuN21ug5pX2p24_E,1369
549
+ nexaai/utils/progress_tracker.py,sha256=jdUqtmPqyhwC9uSKvQcJEYETwSt-OhP4oitdJ94614o,15394
550
+ nexaai/utils/quantization_utils.py,sha256=FYcNSAKGlBqFDUTx3jSKOr2lnq4nyiyC0ZG8oSxFwiU,7825
551
+ nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
552
+ nexaai/vlm_impl/mlx_vlm_impl.py,sha256=pLtWm_ckz8a0U-AtAOMVseFDO4OVPvHyYO2KlfBaGYk,10833
553
+ nexaai/vlm_impl/pybind_vlm_impl.py,sha256=FAbhpRJzHgI78r0mUvKybO97R1szvNhH0aTn_I52oT4,8597
554
+ nexaai-1.0.16rc13.dist-info/METADATA,sha256=eqPLK_7JBryWiB7qvdppmdEoHd42jZohyBHi0j1Lges,1202
555
+ nexaai-1.0.16rc13.dist-info/WHEEL,sha256=iQSZrVFvx3QLCM4QzUFhPJ_sKq8NkUPO1c2CPQ_E6ZA,114
556
+ nexaai-1.0.16rc13.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
557
+ nexaai-1.0.16rc13.dist-info/RECORD,,