nexaai 1.0.4rc10__py3-none-macosx_11_0_arm64.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 (519) hide show
  1. nexaai/__init__.py +71 -0
  2. nexaai/_version.py +4 -0
  3. nexaai/asr.py +60 -0
  4. nexaai/asr_impl/__init__.py +0 -0
  5. nexaai/asr_impl/mlx_asr_impl.py +91 -0
  6. nexaai/asr_impl/pybind_asr_impl.py +43 -0
  7. nexaai/base.py +39 -0
  8. nexaai/binds/__init__.py +3 -0
  9. nexaai/binds/common_bind.cpython-310-darwin.so +0 -0
  10. nexaai/binds/embedder_bind.cpython-310-darwin.so +0 -0
  11. nexaai/binds/libnexa_bridge.dylib +0 -0
  12. nexaai/binds/llm_bind.cpython-310-darwin.so +0 -0
  13. nexaai/binds/nexa_llama_cpp/libggml-base.dylib +0 -0
  14. nexaai/binds/nexa_llama_cpp/libggml-cpu.so +0 -0
  15. nexaai/binds/nexa_llama_cpp/libggml-metal.so +0 -0
  16. nexaai/binds/nexa_llama_cpp/libggml.dylib +0 -0
  17. nexaai/binds/nexa_llama_cpp/libllama.dylib +0 -0
  18. nexaai/binds/nexa_llama_cpp/libmtmd.dylib +0 -0
  19. nexaai/binds/nexa_llama_cpp/libnexa_plugin.dylib +0 -0
  20. nexaai/binds/nexa_mlx/libnexa_plugin.dylib +0 -0
  21. nexaai/binds/nexa_mlx/py-lib/ml.py +842 -0
  22. nexaai/binds/nexa_mlx/py-lib/mlx_audio/__init__.py +0 -0
  23. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/__init__.py +1 -0
  24. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/__init__.py +5 -0
  25. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/__init__.py +1 -0
  26. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/activation.py +51 -0
  27. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/amp.py +96 -0
  28. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/bigvgan.py +149 -0
  29. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/conv.py +114 -0
  30. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/resample.py +177 -0
  31. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/__init__.py +1 -0
  32. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/base.py +228 -0
  33. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/dac.py +285 -0
  34. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/__init__.py +1 -0
  35. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/layers.py +129 -0
  36. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/quantize.py +149 -0
  37. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/encodec/__init__.py +1 -0
  38. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/encodec/encodec.py +777 -0
  39. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/__init__.py +1 -0
  40. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/mimi.py +286 -0
  41. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/__init__.py +20 -0
  42. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/conv.py +398 -0
  43. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/kv_cache.py +199 -0
  44. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/quantization.py +179 -0
  45. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/seanet.py +314 -0
  46. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/transformer.py +256 -0
  47. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/__init__.py +1 -0
  48. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/model.py +260 -0
  49. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/model_v2.py +383 -0
  50. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/utils.py +122 -0
  51. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/__init__.py +1 -0
  52. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/attention.py +97 -0
  53. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/layers.py +306 -0
  54. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/snac.py +154 -0
  55. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/vq.py +135 -0
  56. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/__init__.py +1 -0
  57. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/mel.py +33 -0
  58. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/vocos.py +359 -0
  59. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/__init__.py +0 -0
  60. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_bigvgan.py +54 -0
  61. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_descript.py +109 -0
  62. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_encodec.py +58 -0
  63. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_mimi.py +22 -0
  64. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_s3.py +25 -0
  65. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_snac.py +40 -0
  66. nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_vocos.py +93 -0
  67. nexaai/binds/nexa_mlx/py-lib/mlx_audio/server.py +525 -0
  68. nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/__init__.py +0 -0
  69. nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/tests/test_voice_pipeline.py +156 -0
  70. nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/voice_pipeline.py +327 -0
  71. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/__init__.py +0 -0
  72. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/generate.py +174 -0
  73. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/__init__.py +0 -0
  74. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/__init__.py +1 -0
  75. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/alignment.py +248 -0
  76. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/attention.py +187 -0
  77. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/audio.py +76 -0
  78. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/conformer.py +331 -0
  79. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/ctc.py +34 -0
  80. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/parakeet.py +604 -0
  81. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/rnnt.py +157 -0
  82. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/tokenizer.py +2 -0
  83. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/wav2vec/feature_extractor.py +757 -0
  84. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/wav2vec/wav2vec.py +738 -0
  85. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/__init__.py +1 -0
  86. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/audio.py +82 -0
  87. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/decoding.py +742 -0
  88. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/timing.py +329 -0
  89. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/tokenizer.py +398 -0
  90. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/whisper.py +862 -0
  91. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/writers.py +268 -0
  92. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/tests/test_models.py +381 -0
  93. nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/utils.py +195 -0
  94. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/__init__.py +1 -0
  95. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/audio_player.py +120 -0
  96. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/convert.py +71 -0
  97. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/generate.py +449 -0
  98. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/__init__.py +0 -0
  99. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/__init__.py +4 -0
  100. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/bark.py +528 -0
  101. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/isftnet.py +12 -0
  102. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/pipeline.py +442 -0
  103. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/base.py +84 -0
  104. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/__init__.py +1 -0
  105. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/audio.py +287 -0
  106. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/config.py +256 -0
  107. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/dia.py +592 -0
  108. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/layers.py +870 -0
  109. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/__init__.py +3 -0
  110. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/attention.py +180 -0
  111. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/bigvgan.py +124 -0
  112. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/conformer.py +247 -0
  113. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py +0 -0
  114. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py +59 -0
  115. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py +91 -0
  116. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py +132 -0
  117. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py +42 -0
  118. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/gpt2.py +38 -0
  119. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/indextts.py +412 -0
  120. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/mel.py +37 -0
  121. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/normalize.py +294 -0
  122. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/perceiver.py +62 -0
  123. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/interpolate.py +108 -0
  124. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/__init__.py +4 -0
  125. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/istftnet.py +979 -0
  126. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/kokoro.py +331 -0
  127. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/modules.py +659 -0
  128. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/pipeline.py +453 -0
  129. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/voice.py +113 -0
  130. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/llama/__init__.py +3 -0
  131. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/llama/llama.py +324 -0
  132. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/__init__.py +1 -0
  133. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/audio_processor.py +351 -0
  134. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/dac_interface.py +162 -0
  135. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/outetts.py +255 -0
  136. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/prompt_processor.py +181 -0
  137. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/tokens.py +36 -0
  138. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/__init__.py +3 -0
  139. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/attention.py +195 -0
  140. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/sesame.py +633 -0
  141. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/watermarking.py +105 -0
  142. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/__init__.py +1 -0
  143. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/audio_tokenizer.py +138 -0
  144. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/bicodec.py +269 -0
  145. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/__init__.py +0 -0
  146. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/blocks/__init__.py +0 -0
  147. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/blocks/sampler.py +111 -0
  148. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py +0 -0
  149. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py +120 -0
  150. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py +136 -0
  151. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py +113 -0
  152. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py +238 -0
  153. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/residual.py +209 -0
  154. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/residual_fsq.py +309 -0
  155. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/__init__.py +1 -0
  156. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py +283 -0
  157. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py +326 -0
  158. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py +297 -0
  159. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py +155 -0
  160. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/spark.py +382 -0
  161. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/audio.py +220 -0
  162. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/file.py +221 -0
  163. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/token_parser.py +181 -0
  164. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/__init__.py +0 -0
  165. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_base.py +66 -0
  166. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_convert.py +173 -0
  167. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_interpolate.py +88 -0
  168. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_models.py +974 -0
  169. nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/utils.py +337 -0
  170. nexaai/binds/nexa_mlx/py-lib/mlx_audio/utils.py +237 -0
  171. nexaai/binds/nexa_mlx/py-lib/mlx_audio/version.py +1 -0
  172. nexaai/binds/nexa_mlx/py-lib/profiling.py +239 -0
  173. nexaai/common.py +61 -0
  174. nexaai/cv.py +87 -0
  175. nexaai/cv_impl/__init__.py +0 -0
  176. nexaai/cv_impl/mlx_cv_impl.py +88 -0
  177. nexaai/cv_impl/pybind_cv_impl.py +31 -0
  178. nexaai/embedder.py +68 -0
  179. nexaai/embedder_impl/__init__.py +0 -0
  180. nexaai/embedder_impl/mlx_embedder_impl.py +114 -0
  181. nexaai/embedder_impl/pybind_embedder_impl.py +91 -0
  182. nexaai/image_gen.py +136 -0
  183. nexaai/image_gen_impl/__init__.py +0 -0
  184. nexaai/image_gen_impl/mlx_image_gen_impl.py +291 -0
  185. nexaai/image_gen_impl/pybind_image_gen_impl.py +84 -0
  186. nexaai/llm.py +89 -0
  187. nexaai/llm_impl/__init__.py +0 -0
  188. nexaai/llm_impl/mlx_llm_impl.py +249 -0
  189. nexaai/llm_impl/pybind_llm_impl.py +207 -0
  190. nexaai/mlx_backend/asr/__init__.py +12 -0
  191. nexaai/mlx_backend/asr/interface.py +122 -0
  192. nexaai/mlx_backend/common/__init__.py +0 -0
  193. nexaai/mlx_backend/common/utils.py +25 -0
  194. nexaai/mlx_backend/cv/__init__.py +0 -0
  195. nexaai/mlx_backend/cv/generate.py +195 -0
  196. nexaai/mlx_backend/cv/interface.py +151 -0
  197. nexaai/mlx_backend/cv/main.py +81 -0
  198. nexaai/mlx_backend/cv/modeling/pp_ocr_v4.py +1736 -0
  199. nexaai/mlx_backend/embedding/__init__.py +0 -0
  200. nexaai/mlx_backend/embedding/generate.py +130 -0
  201. nexaai/mlx_backend/embedding/interface.py +312 -0
  202. nexaai/mlx_backend/embedding/main.py +82 -0
  203. nexaai/mlx_backend/embedding/modeling/__init__.py +0 -0
  204. nexaai/mlx_backend/embedding/modeling/nexa_jina_v2.py +399 -0
  205. nexaai/mlx_backend/llm/__init__.py +0 -0
  206. nexaai/mlx_backend/llm/generate.py +149 -0
  207. nexaai/mlx_backend/llm/interface.py +764 -0
  208. nexaai/mlx_backend/llm/main.py +68 -0
  209. nexaai/mlx_backend/ml.py +842 -0
  210. nexaai/mlx_backend/mlx_audio/__init__.py +0 -0
  211. nexaai/mlx_backend/mlx_audio/codec/__init__.py +1 -0
  212. nexaai/mlx_backend/mlx_audio/codec/models/__init__.py +5 -0
  213. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/__init__.py +1 -0
  214. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/activation.py +51 -0
  215. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/amp.py +96 -0
  216. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/bigvgan.py +149 -0
  217. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/conv.py +114 -0
  218. nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/resample.py +177 -0
  219. nexaai/mlx_backend/mlx_audio/codec/models/descript/__init__.py +1 -0
  220. nexaai/mlx_backend/mlx_audio/codec/models/descript/base.py +228 -0
  221. nexaai/mlx_backend/mlx_audio/codec/models/descript/dac.py +285 -0
  222. nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/__init__.py +1 -0
  223. nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/layers.py +129 -0
  224. nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/quantize.py +149 -0
  225. nexaai/mlx_backend/mlx_audio/codec/models/encodec/__init__.py +1 -0
  226. nexaai/mlx_backend/mlx_audio/codec/models/encodec/encodec.py +777 -0
  227. nexaai/mlx_backend/mlx_audio/codec/models/mimi/__init__.py +1 -0
  228. nexaai/mlx_backend/mlx_audio/codec/models/mimi/mimi.py +286 -0
  229. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/__init__.py +20 -0
  230. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/conv.py +398 -0
  231. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/kv_cache.py +199 -0
  232. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/quantization.py +179 -0
  233. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/seanet.py +314 -0
  234. nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/transformer.py +256 -0
  235. nexaai/mlx_backend/mlx_audio/codec/models/s3/__init__.py +1 -0
  236. nexaai/mlx_backend/mlx_audio/codec/models/s3/model.py +260 -0
  237. nexaai/mlx_backend/mlx_audio/codec/models/s3/model_v2.py +383 -0
  238. nexaai/mlx_backend/mlx_audio/codec/models/s3/utils.py +122 -0
  239. nexaai/mlx_backend/mlx_audio/codec/models/snac/__init__.py +1 -0
  240. nexaai/mlx_backend/mlx_audio/codec/models/snac/attention.py +97 -0
  241. nexaai/mlx_backend/mlx_audio/codec/models/snac/layers.py +306 -0
  242. nexaai/mlx_backend/mlx_audio/codec/models/snac/snac.py +154 -0
  243. nexaai/mlx_backend/mlx_audio/codec/models/snac/vq.py +135 -0
  244. nexaai/mlx_backend/mlx_audio/codec/models/vocos/__init__.py +1 -0
  245. nexaai/mlx_backend/mlx_audio/codec/models/vocos/mel.py +33 -0
  246. nexaai/mlx_backend/mlx_audio/codec/models/vocos/vocos.py +359 -0
  247. nexaai/mlx_backend/mlx_audio/codec/tests/__init__.py +0 -0
  248. nexaai/mlx_backend/mlx_audio/codec/tests/test_bigvgan.py +54 -0
  249. nexaai/mlx_backend/mlx_audio/codec/tests/test_descript.py +109 -0
  250. nexaai/mlx_backend/mlx_audio/codec/tests/test_encodec.py +58 -0
  251. nexaai/mlx_backend/mlx_audio/codec/tests/test_mimi.py +22 -0
  252. nexaai/mlx_backend/mlx_audio/codec/tests/test_s3.py +25 -0
  253. nexaai/mlx_backend/mlx_audio/codec/tests/test_snac.py +40 -0
  254. nexaai/mlx_backend/mlx_audio/codec/tests/test_vocos.py +93 -0
  255. nexaai/mlx_backend/mlx_audio/server.py +525 -0
  256. nexaai/mlx_backend/mlx_audio/sts/__init__.py +0 -0
  257. nexaai/mlx_backend/mlx_audio/sts/tests/test_voice_pipeline.py +156 -0
  258. nexaai/mlx_backend/mlx_audio/sts/voice_pipeline.py +327 -0
  259. nexaai/mlx_backend/mlx_audio/stt/__init__.py +0 -0
  260. nexaai/mlx_backend/mlx_audio/stt/generate.py +174 -0
  261. nexaai/mlx_backend/mlx_audio/stt/models/__init__.py +0 -0
  262. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/__init__.py +1 -0
  263. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/alignment.py +248 -0
  264. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/attention.py +187 -0
  265. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/audio.py +76 -0
  266. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/conformer.py +331 -0
  267. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/ctc.py +34 -0
  268. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/parakeet.py +604 -0
  269. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/rnnt.py +157 -0
  270. nexaai/mlx_backend/mlx_audio/stt/models/parakeet/tokenizer.py +2 -0
  271. nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/feature_extractor.py +757 -0
  272. nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/wav2vec.py +738 -0
  273. nexaai/mlx_backend/mlx_audio/stt/models/whisper/__init__.py +1 -0
  274. nexaai/mlx_backend/mlx_audio/stt/models/whisper/audio.py +82 -0
  275. nexaai/mlx_backend/mlx_audio/stt/models/whisper/decoding.py +742 -0
  276. nexaai/mlx_backend/mlx_audio/stt/models/whisper/timing.py +329 -0
  277. nexaai/mlx_backend/mlx_audio/stt/models/whisper/tokenizer.py +398 -0
  278. nexaai/mlx_backend/mlx_audio/stt/models/whisper/whisper.py +862 -0
  279. nexaai/mlx_backend/mlx_audio/stt/models/whisper/writers.py +268 -0
  280. nexaai/mlx_backend/mlx_audio/stt/tests/test_models.py +381 -0
  281. nexaai/mlx_backend/mlx_audio/stt/utils.py +195 -0
  282. nexaai/mlx_backend/mlx_audio/tts/__init__.py +1 -0
  283. nexaai/mlx_backend/mlx_audio/tts/audio_player.py +120 -0
  284. nexaai/mlx_backend/mlx_audio/tts/convert.py +71 -0
  285. nexaai/mlx_backend/mlx_audio/tts/generate.py +449 -0
  286. nexaai/mlx_backend/mlx_audio/tts/models/__init__.py +0 -0
  287. nexaai/mlx_backend/mlx_audio/tts/models/bark/__init__.py +4 -0
  288. nexaai/mlx_backend/mlx_audio/tts/models/bark/bark.py +528 -0
  289. nexaai/mlx_backend/mlx_audio/tts/models/bark/isftnet.py +12 -0
  290. nexaai/mlx_backend/mlx_audio/tts/models/bark/pipeline.py +442 -0
  291. nexaai/mlx_backend/mlx_audio/tts/models/base.py +84 -0
  292. nexaai/mlx_backend/mlx_audio/tts/models/dia/__init__.py +1 -0
  293. nexaai/mlx_backend/mlx_audio/tts/models/dia/audio.py +287 -0
  294. nexaai/mlx_backend/mlx_audio/tts/models/dia/config.py +256 -0
  295. nexaai/mlx_backend/mlx_audio/tts/models/dia/dia.py +592 -0
  296. nexaai/mlx_backend/mlx_audio/tts/models/dia/layers.py +870 -0
  297. nexaai/mlx_backend/mlx_audio/tts/models/indextts/__init__.py +3 -0
  298. nexaai/mlx_backend/mlx_audio/tts/models/indextts/attention.py +180 -0
  299. nexaai/mlx_backend/mlx_audio/tts/models/indextts/bigvgan.py +124 -0
  300. nexaai/mlx_backend/mlx_audio/tts/models/indextts/conformer.py +247 -0
  301. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py +0 -0
  302. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py +59 -0
  303. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py +91 -0
  304. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py +132 -0
  305. nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py +42 -0
  306. nexaai/mlx_backend/mlx_audio/tts/models/indextts/gpt2.py +38 -0
  307. nexaai/mlx_backend/mlx_audio/tts/models/indextts/indextts.py +412 -0
  308. nexaai/mlx_backend/mlx_audio/tts/models/indextts/mel.py +37 -0
  309. nexaai/mlx_backend/mlx_audio/tts/models/indextts/normalize.py +294 -0
  310. nexaai/mlx_backend/mlx_audio/tts/models/indextts/perceiver.py +62 -0
  311. nexaai/mlx_backend/mlx_audio/tts/models/interpolate.py +108 -0
  312. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/__init__.py +4 -0
  313. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/istftnet.py +979 -0
  314. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/kokoro.py +331 -0
  315. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/modules.py +659 -0
  316. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/pipeline.py +453 -0
  317. nexaai/mlx_backend/mlx_audio/tts/models/kokoro/voice.py +113 -0
  318. nexaai/mlx_backend/mlx_audio/tts/models/llama/__init__.py +3 -0
  319. nexaai/mlx_backend/mlx_audio/tts/models/llama/llama.py +324 -0
  320. nexaai/mlx_backend/mlx_audio/tts/models/outetts/__init__.py +1 -0
  321. nexaai/mlx_backend/mlx_audio/tts/models/outetts/audio_processor.py +351 -0
  322. nexaai/mlx_backend/mlx_audio/tts/models/outetts/dac_interface.py +162 -0
  323. nexaai/mlx_backend/mlx_audio/tts/models/outetts/default_speaker.json +461 -0
  324. nexaai/mlx_backend/mlx_audio/tts/models/outetts/outetts.py +255 -0
  325. nexaai/mlx_backend/mlx_audio/tts/models/outetts/prompt_processor.py +181 -0
  326. nexaai/mlx_backend/mlx_audio/tts/models/outetts/tokens.py +36 -0
  327. nexaai/mlx_backend/mlx_audio/tts/models/sesame/__init__.py +3 -0
  328. nexaai/mlx_backend/mlx_audio/tts/models/sesame/attention.py +195 -0
  329. nexaai/mlx_backend/mlx_audio/tts/models/sesame/sesame.py +633 -0
  330. nexaai/mlx_backend/mlx_audio/tts/models/sesame/watermarking.py +105 -0
  331. nexaai/mlx_backend/mlx_audio/tts/models/spark/__init__.py +1 -0
  332. nexaai/mlx_backend/mlx_audio/tts/models/spark/audio_tokenizer.py +138 -0
  333. nexaai/mlx_backend/mlx_audio/tts/models/spark/bicodec.py +269 -0
  334. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/__init__.py +0 -0
  335. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/__init__.py +0 -0
  336. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/sampler.py +111 -0
  337. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py +0 -0
  338. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py +120 -0
  339. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py +136 -0
  340. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py +113 -0
  341. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py +238 -0
  342. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual.py +209 -0
  343. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual_fsq.py +309 -0
  344. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/__init__.py +1 -0
  345. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py +283 -0
  346. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py +326 -0
  347. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py +297 -0
  348. nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py +155 -0
  349. nexaai/mlx_backend/mlx_audio/tts/models/spark/spark.py +382 -0
  350. nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/audio.py +220 -0
  351. nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/file.py +221 -0
  352. nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/token_parser.py +181 -0
  353. nexaai/mlx_backend/mlx_audio/tts/tests/__init__.py +0 -0
  354. nexaai/mlx_backend/mlx_audio/tts/tests/test_base.py +66 -0
  355. nexaai/mlx_backend/mlx_audio/tts/tests/test_convert.py +173 -0
  356. nexaai/mlx_backend/mlx_audio/tts/tests/test_interpolate.py +88 -0
  357. nexaai/mlx_backend/mlx_audio/tts/tests/test_models.py +974 -0
  358. nexaai/mlx_backend/mlx_audio/tts/utils.py +337 -0
  359. nexaai/mlx_backend/mlx_audio/utils.py +237 -0
  360. nexaai/mlx_backend/mlx_audio/version.py +1 -0
  361. nexaai/mlx_backend/profiling.py +239 -0
  362. nexaai/mlx_backend/rerank/__init__.py +0 -0
  363. nexaai/mlx_backend/rerank/generate.py +174 -0
  364. nexaai/mlx_backend/rerank/interface.py +287 -0
  365. nexaai/mlx_backend/rerank/main.py +127 -0
  366. nexaai/mlx_backend/rerank/modeling/__init__.py +0 -0
  367. nexaai/mlx_backend/rerank/modeling/nexa_jina_rerank.py +330 -0
  368. nexaai/mlx_backend/sd/__init__.py +1 -0
  369. nexaai/mlx_backend/sd/interface.py +362 -0
  370. nexaai/mlx_backend/sd/main.py +286 -0
  371. nexaai/mlx_backend/sd/modeling/__init__.py +306 -0
  372. nexaai/mlx_backend/sd/modeling/clip.py +116 -0
  373. nexaai/mlx_backend/sd/modeling/config.py +65 -0
  374. nexaai/mlx_backend/sd/modeling/model_io.py +330 -0
  375. nexaai/mlx_backend/sd/modeling/sampler.py +105 -0
  376. nexaai/mlx_backend/sd/modeling/tokenizer.py +100 -0
  377. nexaai/mlx_backend/sd/modeling/unet.py +460 -0
  378. nexaai/mlx_backend/sd/modeling/vae.py +274 -0
  379. nexaai/mlx_backend/tts/__init__.py +12 -0
  380. nexaai/mlx_backend/tts/interface.py +276 -0
  381. nexaai/mlx_backend/vlm/__init__.py +3 -0
  382. nexaai/mlx_backend/vlm/generate.py +572 -0
  383. nexaai/mlx_backend/vlm/interface.py +406 -0
  384. nexaai/mlx_backend/vlm/main.py +157 -0
  385. nexaai/mlx_backend/vlm/modeling/__init__.py +0 -0
  386. nexaai/mlx_backend/vlm/modeling/convert.py +68 -0
  387. nexaai/mlx_backend/vlm/modeling/models/__init__.py +0 -0
  388. nexaai/mlx_backend/vlm/modeling/models/aya_vision/__init__.py +8 -0
  389. nexaai/mlx_backend/vlm/modeling/models/aya_vision/aya_vision.py +193 -0
  390. nexaai/mlx_backend/vlm/modeling/models/aya_vision/interpolate.py +186 -0
  391. nexaai/mlx_backend/vlm/modeling/models/aya_vision/language.py +233 -0
  392. nexaai/mlx_backend/vlm/modeling/models/aya_vision/vision.py +503 -0
  393. nexaai/mlx_backend/vlm/modeling/models/base.py +202 -0
  394. nexaai/mlx_backend/vlm/modeling/models/cache.py +230 -0
  395. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/__init__.py +10 -0
  396. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/conversation.py +264 -0
  397. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/deepseek_vl_v2.py +472 -0
  398. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/language.py +591 -0
  399. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/processing_deepsek_vl_v2.py +526 -0
  400. nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/vision.py +356 -0
  401. nexaai/mlx_backend/vlm/modeling/models/florence2/__init__.py +8 -0
  402. nexaai/mlx_backend/vlm/modeling/models/florence2/florence2.py +366 -0
  403. nexaai/mlx_backend/vlm/modeling/models/florence2/language.py +488 -0
  404. nexaai/mlx_backend/vlm/modeling/models/florence2/vision.py +591 -0
  405. nexaai/mlx_backend/vlm/modeling/models/gemma3/__init__.py +8 -0
  406. nexaai/mlx_backend/vlm/modeling/models/gemma3/gemma3.py +213 -0
  407. nexaai/mlx_backend/vlm/modeling/models/gemma3/language.py +315 -0
  408. nexaai/mlx_backend/vlm/modeling/models/gemma3/vision.py +238 -0
  409. nexaai/mlx_backend/vlm/modeling/models/gemma3n/__init__.py +2 -0
  410. nexaai/mlx_backend/vlm/modeling/models/gemma3n/audio.py +1038 -0
  411. nexaai/mlx_backend/vlm/modeling/models/gemma3n/config.py +139 -0
  412. nexaai/mlx_backend/vlm/modeling/models/gemma3n/gemma3n.py +322 -0
  413. nexaai/mlx_backend/vlm/modeling/models/gemma3n/language.py +629 -0
  414. nexaai/mlx_backend/vlm/modeling/models/gemma3n/vision.py +1022 -0
  415. nexaai/mlx_backend/vlm/modeling/models/idefics2/__init__.py +9 -0
  416. nexaai/mlx_backend/vlm/modeling/models/idefics2/idefics2.py +294 -0
  417. nexaai/mlx_backend/vlm/modeling/models/idefics2/language.py +191 -0
  418. nexaai/mlx_backend/vlm/modeling/models/idefics2/vision.py +267 -0
  419. nexaai/mlx_backend/vlm/modeling/models/idefics3/__init__.py +8 -0
  420. nexaai/mlx_backend/vlm/modeling/models/idefics3/idefics3.py +175 -0
  421. nexaai/mlx_backend/vlm/modeling/models/idefics3/language.py +192 -0
  422. nexaai/mlx_backend/vlm/modeling/models/idefics3/vision.py +233 -0
  423. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/__init__.py +9 -0
  424. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/internvl_chat.py +140 -0
  425. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/language.py +220 -0
  426. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/processor.py +393 -0
  427. nexaai/mlx_backend/vlm/modeling/models/internvl_chat/vision.py +293 -0
  428. nexaai/mlx_backend/vlm/modeling/models/kernels.py +307 -0
  429. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/__init__.py +8 -0
  430. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/kimi_vl.py +143 -0
  431. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/language.py +509 -0
  432. nexaai/mlx_backend/vlm/modeling/models/kimi_vl/vision.py +522 -0
  433. nexaai/mlx_backend/vlm/modeling/models/llama4/__init__.py +8 -0
  434. nexaai/mlx_backend/vlm/modeling/models/llama4/language.py +386 -0
  435. nexaai/mlx_backend/vlm/modeling/models/llama4/llama4.py +138 -0
  436. nexaai/mlx_backend/vlm/modeling/models/llama4/vision.py +560 -0
  437. nexaai/mlx_backend/vlm/modeling/models/llava/__init__.py +8 -0
  438. nexaai/mlx_backend/vlm/modeling/models/llava/language.py +240 -0
  439. nexaai/mlx_backend/vlm/modeling/models/llava/llava.py +153 -0
  440. nexaai/mlx_backend/vlm/modeling/models/llava/vision.py +259 -0
  441. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/__init__.py +9 -0
  442. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/language.py +236 -0
  443. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/llava_bunny.py +256 -0
  444. nexaai/mlx_backend/vlm/modeling/models/llava_bunny/vision.py +303 -0
  445. nexaai/mlx_backend/vlm/modeling/models/llava_next/__init__.py +8 -0
  446. nexaai/mlx_backend/vlm/modeling/models/llava_next/language.py +230 -0
  447. nexaai/mlx_backend/vlm/modeling/models/llava_next/llava_next.py +160 -0
  448. nexaai/mlx_backend/vlm/modeling/models/llava_next/vision.py +243 -0
  449. nexaai/mlx_backend/vlm/modeling/models/mistral3/__init__.py +8 -0
  450. nexaai/mlx_backend/vlm/modeling/models/mistral3/mistral3.py +283 -0
  451. nexaai/mlx_backend/vlm/modeling/models/mllama/__init__.py +8 -0
  452. nexaai/mlx_backend/vlm/modeling/models/mllama/language.py +416 -0
  453. nexaai/mlx_backend/vlm/modeling/models/mllama/mllama.py +172 -0
  454. nexaai/mlx_backend/vlm/modeling/models/mllama/vision.py +499 -0
  455. nexaai/mlx_backend/vlm/modeling/models/molmo/__init__.py +8 -0
  456. nexaai/mlx_backend/vlm/modeling/models/molmo/language.py +243 -0
  457. nexaai/mlx_backend/vlm/modeling/models/molmo/molmo.py +133 -0
  458. nexaai/mlx_backend/vlm/modeling/models/molmo/vision.py +465 -0
  459. nexaai/mlx_backend/vlm/modeling/models/multi_modality/__init__.py +10 -0
  460. nexaai/mlx_backend/vlm/modeling/models/multi_modality/language.py +230 -0
  461. nexaai/mlx_backend/vlm/modeling/models/multi_modality/multi_modality.py +385 -0
  462. nexaai/mlx_backend/vlm/modeling/models/multi_modality/sam.py +557 -0
  463. nexaai/mlx_backend/vlm/modeling/models/multi_modality/vision.py +526 -0
  464. nexaai/mlx_backend/vlm/modeling/models/paligemma/__init__.py +8 -0
  465. nexaai/mlx_backend/vlm/modeling/models/paligemma/language.py +282 -0
  466. nexaai/mlx_backend/vlm/modeling/models/paligemma/paligemma.py +160 -0
  467. nexaai/mlx_backend/vlm/modeling/models/paligemma/vision.py +242 -0
  468. nexaai/mlx_backend/vlm/modeling/models/phi3_v/__init__.py +8 -0
  469. nexaai/mlx_backend/vlm/modeling/models/phi3_v/language.py +21 -0
  470. nexaai/mlx_backend/vlm/modeling/models/phi3_v/phi3_v.py +243 -0
  471. nexaai/mlx_backend/vlm/modeling/models/phi3_v/su_rope.py +71 -0
  472. nexaai/mlx_backend/vlm/modeling/models/phi3_v/vision.py +324 -0
  473. nexaai/mlx_backend/vlm/modeling/models/pixtral/__init__.py +8 -0
  474. nexaai/mlx_backend/vlm/modeling/models/pixtral/language.py +229 -0
  475. nexaai/mlx_backend/vlm/modeling/models/pixtral/pixtral.py +161 -0
  476. nexaai/mlx_backend/vlm/modeling/models/pixtral/vision.py +320 -0
  477. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/__init__.py +2 -0
  478. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/config.py +108 -0
  479. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/language.py +490 -0
  480. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/qwen2_5_vl.py +168 -0
  481. nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/vision.py +414 -0
  482. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/__init__.py +2 -0
  483. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/config.py +104 -0
  484. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/language.py +490 -0
  485. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/qwen2_vl.py +167 -0
  486. nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/vision.py +312 -0
  487. nexaai/mlx_backend/vlm/modeling/models/smolvlm/__init__.py +8 -0
  488. nexaai/mlx_backend/vlm/modeling/models/smolvlm/smolvlm.py +62 -0
  489. nexaai/mlx_backend/vlm/modeling/processing_qwen2_5_vl.py +209 -0
  490. nexaai/mlx_backend/vlm/modeling/processing_qwen2_vl.py +215 -0
  491. nexaai/mlx_backend/vlm/modeling/prompt_utils.py +474 -0
  492. nexaai/mlx_backend/vlm/modeling/sample_utils.py +39 -0
  493. nexaai/mlx_backend/vlm/modeling/tokenizer_utils.py +344 -0
  494. nexaai/mlx_backend/vlm/modeling/trainer/__init__.py +9 -0
  495. nexaai/mlx_backend/vlm/modeling/trainer/lora.py +70 -0
  496. nexaai/mlx_backend/vlm/modeling/trainer/trainer.py +296 -0
  497. nexaai/mlx_backend/vlm/modeling/trainer/utils.py +160 -0
  498. nexaai/mlx_backend/vlm/modeling/utils.py +928 -0
  499. nexaai/rerank.py +51 -0
  500. nexaai/rerank_impl/__init__.py +0 -0
  501. nexaai/rerank_impl/mlx_rerank_impl.py +91 -0
  502. nexaai/rerank_impl/pybind_rerank_impl.py +42 -0
  503. nexaai/runtime.py +64 -0
  504. nexaai/tts.py +70 -0
  505. nexaai/tts_impl/__init__.py +0 -0
  506. nexaai/tts_impl/mlx_tts_impl.py +93 -0
  507. nexaai/tts_impl/pybind_tts_impl.py +42 -0
  508. nexaai/utils/avatar_fetcher.py +104 -0
  509. nexaai/utils/decode.py +18 -0
  510. nexaai/utils/model_manager.py +1195 -0
  511. nexaai/utils/progress_tracker.py +372 -0
  512. nexaai/vlm.py +120 -0
  513. nexaai/vlm_impl/__init__.py +0 -0
  514. nexaai/vlm_impl/mlx_vlm_impl.py +205 -0
  515. nexaai/vlm_impl/pybind_vlm_impl.py +228 -0
  516. nexaai-1.0.4rc10.dist-info/METADATA +26 -0
  517. nexaai-1.0.4rc10.dist-info/RECORD +519 -0
  518. nexaai-1.0.4rc10.dist-info/WHEEL +5 -0
  519. nexaai-1.0.4rc10.dist-info/top_level.txt +1 -0
@@ -0,0 +1,519 @@
1
+ nexaai/__init__.py,sha256=JTjJWdiBXHZyc_91Oe-GNOcODFp9gbUQM43bzNY7S8Q,1906
2
+ nexaai/_version.py,sha256=lFFe7Y_E8V8g8N5BD2csUB_26_IX5IFYu5lDMmGqOXc,143
3
+ nexaai/asr.py,sha256=Yg8Yml_nklzJYl3C_lwvEApTdNjY2czAurDaoEjkiIU,1813
4
+ nexaai/base.py,sha256=N8PRgDFA-XPku2vWnQIofQ7ipz3pPlO6f8YZGnuhquE,982
5
+ nexaai/common.py,sha256=VPM7NaUNaLTT7quW-u4D2uOeNrQqPjvfcgJlYGS3Qy8,1525
6
+ nexaai/cv.py,sha256=CYfLSDU0_QJkcaIDIJ-a-JjA9FMvIUrSfG71_7-79hI,2934
7
+ nexaai/embedder.py,sha256=VheiZEYBuuBjhQcvLawCz26jX0I169Xk4b9VP-ERjqU,2211
8
+ nexaai/image_gen.py,sha256=IhLQLpmPkK9KcHteUdaQdxrnTIjk6xdyekRqeJtHfWw,4122
9
+ nexaai/llm.py,sha256=egHa6YafNWyZy5qrmZRNZlFHO8LRUejc_gkOpK0nbnw,3105
10
+ nexaai/rerank.py,sha256=7EEm96gpvd6kXO_Q8xSrQDlLZdAYTk0MODeNWDq70WA,1631
11
+ nexaai/runtime.py,sha256=mxxHYsb5iBUAm2K_u-XJWr_U-spJ9S4eApc8kf9myjw,1957
12
+ nexaai/tts.py,sha256=4EbC0BfFh5TLrm_3Q5vx1sXdug5gvOi-owNeX7ekbdA,1926
13
+ nexaai/vlm.py,sha256=g65S8ChMnp_wsz_O4szjR3Z8sD_46NHaxDlfdoZoQ0c,4291
14
+ nexaai/asr_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ nexaai/asr_impl/mlx_asr_impl.py,sha256=JuyxFzFbbgclK5_2Rq5pT278h0q8LztJX7Tggz0zkbM,3191
16
+ nexaai/asr_impl/pybind_asr_impl.py,sha256=ybvthYgtVbH_JgpSsl0nxjZYvXyk8KGRSKdsJ-hLfZE,1450
17
+ nexaai/binds/__init__.py,sha256=T9Ua7SzHNglSeEqXlfH5ymYXRyXhNKkC9z_y_bWCNMo,80
18
+ nexaai/binds/common_bind.cpython-310-darwin.so,sha256=hVxY76tn7hN6uHDIgM7LWNvgoudHgNZVoaygM9X1RWE,217232
19
+ nexaai/binds/embedder_bind.cpython-310-darwin.so,sha256=FT8581RNciilskK89PhtnNSjw4Oh0-xk8QdbJVFmOd8,202064
20
+ nexaai/binds/libnexa_bridge.dylib,sha256=bsbRsgLNzy7dUJFwPgzaVL7thGIvvP2wpD0FNZv4X6A,251256
21
+ nexaai/binds/llm_bind.cpython-310-darwin.so,sha256=Bv08rn9OBAHy01eAQeANiJSrCxskn1xSx4Gl1Vcrhm0,166064
22
+ nexaai/binds/nexa_llama_cpp/libggml-base.dylib,sha256=i2aH2Gt0WRVFkuEfgWsE2hnRE2uZRXH83WQfrBrT-oI,631840
23
+ nexaai/binds/nexa_llama_cpp/libggml-cpu.so,sha256=1qFcy_h2kozVyVaTF5oyQA7xrutzkw_LUn_jIw-9mTs,659216
24
+ nexaai/binds/nexa_llama_cpp/libggml-metal.so,sha256=fCbK0DD8Uospc653JD0iaf7EJxRiXajIm9OEGE2nd9Q,673104
25
+ nexaai/binds/nexa_llama_cpp/libggml.dylib,sha256=aOxGtGHFL5sn7ihZTOrcFYqn941O6RMpK3CwWYniN0g,58592
26
+ nexaai/binds/nexa_llama_cpp/libllama.dylib,sha256=hmKPTc8OUHL985DAiVlh8tT4gVV5Fm6Vk7GGBXBPZds,1746592
27
+ nexaai/binds/nexa_llama_cpp/libmtmd.dylib,sha256=TuDI-WK7LSNISNCIhTCzvCwgZSFRLC5Xsk5aGh1Ja_Y,586784
28
+ nexaai/binds/nexa_llama_cpp/libnexa_plugin.dylib,sha256=sIseaikcmDXra4Zed7nt0KNN2u2bDTwRvPfUJx0B6dk,1750280
29
+ nexaai/binds/nexa_mlx/libnexa_plugin.dylib,sha256=aw8if8RwXjb02CehbqGPHOeEKRUcTpzeJZLOkjTBm8A,596328
30
+ nexaai/binds/nexa_mlx/py-lib/ml.py,sha256=LafDM_TeXmuQkld2tdQxUBGgooT0JPMXngLam2TADqU,23179
31
+ nexaai/binds/nexa_mlx/py-lib/profiling.py,sha256=Dc-mybFwBdCIKFWL7CbSHjkOJGAoYHG7r_e_XPhzwBU,9361
32
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/server.py,sha256=Pqy13Fafq4WX_cTuvRFz1jq89beQm2QQGpXmhK4b9jc,17547
34
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/utils.py,sha256=35_9pWHzCuf2HAWHLkmz8AeyPa9WlYFr86zSRasoaAg,6476
35
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/version.py,sha256=PNiDER4qM19h9zdsdfgKt2_dT4WgYK7EguJ8RU2qA_g,22
36
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/__init__.py,sha256=6yClZf58zupCWcOgslT6uqPCSyDyJEgjpD9vmm1sCAk,46
37
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/__init__.py,sha256=23P_A2OE9OELL1E4o-XYTPuqSdD6RkgLVpONYDMKH2A,126
38
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/__init__.py,sha256=_y2zXCB4_lfqo4MErOzBcHop-CBJb7U36enAzIzbJUA,44
39
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/activation.py,sha256=Yupx7w5kmapfjaVRr5Yh8L7Bd49xC_WkWo2g8GBLMxA,1353
40
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/amp.py,sha256=gbmjKPSOP6R3sojvGG3UV7Bgs8bVV7mnbxSh78zz0uk,2685
41
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/bigvgan.py,sha256=ISk3wgi-uNTr8E05-LsrRC6EaA5rRs1vTUyG9FmQw4c,4837
42
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/conv.py,sha256=wSoTvDxZrJVnFnZpotfEDy8JfWOGHLRi7Cnjerzl3WA,3452
43
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/bigvgan/resample.py,sha256=FIVO_UUJ3tgAK_ixeXq195IjLG7atAXl6AXnSp2Vedo,4967
44
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/__init__.py,sha256=KIyZ5Ai7g4NbXRmJ3C8toG0uAavmnNxarY7ns6N9Hp4,21
45
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/base.py,sha256=Rb_DPkc4HGspB4qZBeREBDRJN4gNqV8hC5qIjUm4Ulk,7088
46
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/dac.py,sha256=CfVIZ9JzwL15OJyB2NHGvWBCaU5I7zryRYfRFTneaj8,7920
47
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/__init__.py,sha256=I7pth7lk2g8165zoyJF8V-FzhSAXIEjP11ozHjqaiSs,31
48
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/layers.py,sha256=HQGV0Km2VYRGZCBctuE-mgTpwDJ88q2hiq-dZowWKV0,3742
49
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/descript/nn/quantize.py,sha256=S_q7eo7_Ebf0UQzeJVO2WmVvgu7adWcipH8KOvqDTik,4948
50
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/encodec/__init__.py,sha256=usARsuej0lQqNbVh4wY-FrnfDtTlZUrY1F97mlVXRg4,44
51
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/encodec/encodec.py,sha256=8eCppGULNwSqR2rfLH4xhfRc0sFJtOI1zSHouIRakQE,26135
52
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/__init__.py,sha256=A_ATkvIxeWYRZScbHILXJfL7PUShEtY6Xn0LfojW04Q,45
53
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/mimi.py,sha256=-bVEeK5vehyf5C45YVid7yse6JKSzTt-oXNJtTXpqhc,9249
54
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/__init__.py,sha256=dMdUtb7s6kZiC7ubZSm1F_EMCHt1FtPTX8kcIsvpxaM,661
55
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/conv.py,sha256=GrQ16Zu3HZf5n6BD2WkiUB-JhBkjbgGReoTNuByghJw,11606
56
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/kv_cache.py,sha256=KppVMJZocUPQsBEGXkTAljwNdoh4f_bY8K3DRGQIzoM,6863
57
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/quantization.py,sha256=5ctB35w8mc3rCgSiFUfpEc5MW61UxCQ1iyCeBObgT0M,6036
58
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/seanet.py,sha256=B1ZYSOGquM998DU5M4aFvlDSlwREpC2eYm_y_a895yI,9342
59
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/mimi/modules/transformer.py,sha256=4UE8OXTkOe1YE3G4uwNGur1s2_YvNJavXOda08wZf0c,7891
60
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/__init__.py,sha256=Vj9NCtjPaMCJokuK4ZAjTIKfJyQGztQ6_dCjnUvukpw,36
61
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/model.py,sha256=H0jf9-uj63ocz6qc9FFFAMwjMgJeg7538GiWi_uQ2TM,8078
62
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/model_v2.py,sha256=NxUdM_i5_ckK-flqeYvWJ_vVrV9lwJPWlQY7A6cnims,11334
63
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/s3/utils.py,sha256=FPTUZOCfOqDIsn4PlI97QhECo8hAm59Kz1L6dw-AIeY,3634
64
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/__init__.py,sha256=oqKMQgBH2YTvxDrla_royWyV2XNFYhUqG7AKnjnEKdw,23
65
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/attention.py,sha256=-hRrfPehQl4KyTWxuWlaT89IRaBZJYgPgeO1Zph1zXE,3288
66
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/layers.py,sha256=TGn-J0mPVHssP7KDYl7ZiL8CIMnReOqjtgYG_rDnUVQ,8872
67
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/snac.py,sha256=ldWi6TqcwWp4WwluNin5uIDGiSWssRoZpwi1hGXzOqE,4706
68
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/snac/vq.py,sha256=iqZa0Q95BQlA25ik7DlrA_KsF_IZQyZ9nQqXutB4Atk,4302
69
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/__init__.py,sha256=7NwXJClXTkxPbw1CcoWTQUW3naf4p5AVkhamt_fuZqs,25
70
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/mel.py,sha256=RgW7SJdOvAzZSljQrfiJvi-X3rxV0pqpx1gE2L2mVOg,833
71
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/models/vocos/vocos.py,sha256=oRSJGKy4IjQ2EZ6Hq9uCs1bon44Z-OBWjYOy7fpSyK8,12271
72
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_bigvgan.py,sha256=fs7P_aKdEqkMh-G5Z_AvIURUXCziKCzRu-cfL-r96w4,1643
74
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_descript.py,sha256=PfWklJavdj2QVLJz28v6XEDdHVBxxREWaHioFbdfm10,3214
75
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_encodec.py,sha256=u1fyPVJJCvcjdZkW8f5mwFZshIJnYec-1q1AnyGChQQ,1436
76
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_mimi.py,sha256=90ZUaODzPIIxpwIrI93sHDnwhyhYERLjErRMKF1AN94,527
77
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_s3.py,sha256=IyQSsXT__qci6AZ_LTTJR-hXhnlmyelSb4uApDovVzA,715
78
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_snac.py,sha256=oN_apJJejx9_h2rpV7B2TaMzTbdABhASbOHTPQNEX7Y,962
79
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/codec/tests/test_vocos.py,sha256=RjGdEIebCufA15WqSJJ40pOWf9a54hHfcHhhlt4j6SA,2631
80
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
81
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/voice_pipeline.py,sha256=YUpecEHqjrRMegfN6n5KPG2A2h6raGuOYbY3xpjBjjs,11113
82
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/sts/tests/test_voice_pipeline.py,sha256=7heJvtVONn22uzF2CPEEgLT9JPuyhSp-RhXk8rvtvEg,6484
83
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/generate.py,sha256=Z-hlAcIGsT6UwY9NgfkHDkZcAoQ8z4wCGy1jVnJwwks,5526
85
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/utils.py,sha256=wNeL5ygqqD0dNxscib1EQK3ToGOyIH7sKyXUBE29n8Y,5567
86
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/__init__.py,sha256=tiICxkwYZ1jKyzYUv6QKgvDiphGEfkwnKdIthb5DYXQ,28
88
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/alignment.py,sha256=j7yT30wq0GFIGi8nZQIzoEQYBtahBDnBgSXO1H2Aihc,7320
89
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/attention.py,sha256=X-fxMfEzhDbr5Vg0v6NUzypvxD8-Ldb7mbISbAoaWhk,5676
90
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/audio.py,sha256=NsL4yceDASN6Sm8meLdnZgStfGNJYN0erkumh0O9Us0,2088
91
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/conformer.py,sha256=GOLHVcclkc27Z84ULfUuqPS2qKYD5KSEb_hsq5ZFMks,10371
92
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/ctc.py,sha256=cbyumguVJDB88dJodezkyfz_HGJu5o5Hfd4g31XO7-g,790
93
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/parakeet.py,sha256=BE1oPf-npIKE2CgS4FhSgCFj9RjyItSeUKaGYmSciNM,20601
94
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/rnnt.py,sha256=2hVrlgGvDxtjlOHc4_bNPlpQnp1E9wHFkH_Q__kUYi4,4351
95
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/parakeet/tokenizer.py,sha256=Cgg_qE6Jwxw-tcbo2te92vdqjcjSmoqhesguvfgQRmk,134
96
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/wav2vec/feature_extractor.py,sha256=Tlu-nJWkly00IexT9Iz9z3-myayuMWW2twFpra1FIOY,33012
97
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/wav2vec/wav2vec.py,sha256=LTs0l9sPUDdYB_Y7qcctu6_8n8csuyszP1qWwpphgXs,26060
98
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/__init__.py,sha256=pJLy2AwH8n-HXEpW4pV_Gwy2Rv8RoDEDoKlNBGLxIjk,27
99
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/audio.py,sha256=2vcVHqJYAsZuB4s4381W-Vxyo7JpWmVCzl5cylBj5Pw,2446
100
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/decoding.py,sha256=ezzDzQkToqyR4cbJRXi5Tgoz_nwaCF41pNsnvuJYdGY,28501
101
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/timing.py,sha256=JzbCvxny67qlIdrp3rN0jGtdXzGa9yn0B43CsHaYIs0,10889
102
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/tokenizer.py,sha256=4-mbp9qOyJewg_W2XTdxGjnQFCQpAgcusGrU6neZoio,12407
103
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/whisper.py,sha256=6Dw83aLbxKKHs8962280UO00pocmR5VHbrBoR47RxZ0,34920
104
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/models/whisper/writers.py,sha256=NL08m0sPLc4eYv6sukGI8QC3zcH4XESoIisMrE-S0A8,10138
105
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/stt/tests/test_models.py,sha256=x9LxoSo8vFyF3XocWCAOwZVUD2aGJhhvxlyxWiZzcU4,14663
106
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
107
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/audio_player.py,sha256=uASE9sx3_j-_5QIuYpoLxb0IBlczT4XKqQz1uyWGWhA,3677
108
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/convert.py,sha256=WHOQT58ZwRacVk96whTBXy_a24dpA7GEbtaCOdoZ0mo,1901
109
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/generate.py,sha256=ZIZ8p1AwnpySpzfua9NliP65W-RUyGbCbiH7lvFjsD0,14864
110
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/utils.py,sha256=yHjmzWxWwBg75O87rzmjfAHsfR4x9U8ncqjI7nEmWZg,11614
111
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/base.py,sha256=5cMTt3MKvaRZ0MbTMupremTerRbi3XU5xCs28f5Dmqw,2108
113
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/interpolate.py,sha256=C49nZRNRXko_eby7l7pvCrs0fA_ay-J_evtoyOaxcoA,3521
114
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/__init__.py,sha256=SVIa-o96gDHLJ3ZD6jcB8tlRJHnj8oVnQdelnKL1qp8,116
115
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/bark.py,sha256=C_by_WAVITgJ4K9QRpDghshv39Sc8TZ8lhC_XLVuTs0,18017
116
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/isftnet.py,sha256=JWBdHtmmeIpo6zxazk7eTilNGrmvRqiWk9GGmRCI0S4,344
117
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/bark/pipeline.py,sha256=NjC9PYsceMScP04vBkkIqViqu7uiO1WNmxviwZHqn0Q,16299
118
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/__init__.py,sha256=D0wxtRXh7-JWboO6vdnpjg9vBtSJx3kM4IOKECg6fJs,23
119
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/audio.py,sha256=RzC6JzVc6H1DkJMljzdWLujwVqCOs2GvzQfpELzSsus,8968
120
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/config.py,sha256=2my1AGaM9ecHazeMkj0iecO30Ul90zdNGpNDARseYB8,9219
121
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/dia.py,sha256=oH4hmMdh7MAwZhYCRFJeJhNp0kFUvJJ15B4kk36po-Y,21881
122
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/dia/layers.py,sha256=xIM02QXbBlgbzvVrxN7mygW6dQtJEfZzTvKGUPkSgWE,29145
123
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/__init__.py,sha256=zjEdjSAB_SBgt2ZVZornAlqWij4-4pzW4cVwPVjFN3c,102
124
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/attention.py,sha256=seTeDud8YI4n38IWHKMcRECfmFckRHMuOmRwbiq6Jt0,5621
125
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/bigvgan.py,sha256=0gNbCqPqU2qwcZdDAn9ufyAMBOkkrk7z5G7HRuB_wxE,3909
126
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/conformer.py,sha256=t1NE7muEOhTaJf258EBvE-w1GyOw6nF0oQZWdCxyAu8,7328
127
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/gpt2.py,sha256=fg1oz2eFOtwy3zexT1tfNm-8aFriH4M5TV911rBll8U,1258
128
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/indextts.py,sha256=ANchayvvun24CTygEmiqKXsmgxWujb2G2IjX29tQRKs,15027
129
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/mel.py,sha256=0xbO4Pk4K5H3CY5YhnC9Mdonl1AGYzgr_czMSwVxIM0,837
130
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/normalize.py,sha256=I_ZGZalBnHrG6v0IHI7Zw9wqUiZrVdyyBhC5jODmpAs,8128
131
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/perceiver.py,sha256=uKaZeLlZq-XWZ_IxnpZBrGRqcAQfP3j1mko8j-0gi50,1787
132
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py,sha256=iXpwm3yfbVvsfhTgbrwtnPcWbx37yoyHOv4odf6PAC4,1760
134
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py,sha256=KLOQJlEIuqER2eioSkTmB0h5BGQmLD72cpLK961g-p4,2855
135
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py,sha256=V1NMDWoN3gLXH-L2pqMrr2BFsW7c4xKcqr_Fbmmc81o,3336
136
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py,sha256=JWLMAdLb_u_icYxi_t95eWpzFjggyEjfEQkc-siJR-E,1064
137
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/__init__.py,sha256=jisbM7KCn5zkXi9T4ojfjXBlZ-MAacld0Ymvb3TpfNs,130
138
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/istftnet.py,sha256=KFhuRAF5M0zLBArZdgYMjh9A2IQVHDc8yHvymUWHqsY,32481
139
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/kokoro.py,sha256=L1AsRHaWAaQGUH2g5UGb3hqvWQEfsHTIA8ltxGDQa3o,12207
140
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/modules.py,sha256=a4541RzrYYP178DacGDwavtF1k4X-TczhsWvEiZohFk,22928
141
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/pipeline.py,sha256=5HJ3QMy-4Q6IxvEnxyxAvFockhtiA4Dh_VRci6XkZlc,16746
142
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/kokoro/voice.py,sha256=AFnv_EPGGgT6-vMRzhviBd2Oaw0eG88euFUKpTH1dSk,4154
143
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/llama/__init__.py,sha256=scnfrCNEEZ9bBf2Qd2tm8QQLt27gP8j2ky2GFIGxdiA,74
144
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/llama/llama.py,sha256=o5iK50czp2e2zbDnJ0f--C552uPnciCvZoRuJHgxd4w,11433
145
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/__init__.py,sha256=UF-9cCswNVxvVqtXVoRgZwzEvbRCNYkVNk4cJcQV6t8,40
146
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/audio_processor.py,sha256=IF8rxHm_WcA82slU75RlwU573u7DF6dIet_TXNYNYEw,11464
147
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/dac_interface.py,sha256=Yti1ut4Z7NqyQ02Cskr28mhW-sSjjP_BpCflOn4Ws84,5029
148
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/outetts.py,sha256=3Qm9ZlbosZOXXGqPe-cT3fds3SANv1sUiG_MzsHmTD8,9222
149
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/prompt_processor.py,sha256=7iLnfQyG1dIISa4HJsW8RB9yLpbc_yP3jlJ_mPD3dQQ,6277
150
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/outetts/tokens.py,sha256=r4SdeGZCW04f2SMWnv_bYN5goFCdka4wnw7LjSiYShM,1231
151
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/__init__.py,sha256=T14qNKlLb_nHDtqOereBOo40UMUkmYzJKUqUn1Ac2oc,47
152
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/attention.py,sha256=OxwzCY6yhSU4NJNkkyHVVNsC0DF-97I3nuz4MCdMM1A,6316
153
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/sesame.py,sha256=IUTaUXmDmVSssxD85Vw2y8ijJswgLUM150-cO2_2kME,22818
154
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/sesame/watermarking.py,sha256=rFA56rgkq7jbFKrlH6EJRi_JQcDXLnk67JjVTpJyZBc,2972
155
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/__init__.py,sha256=8vB16nVHdnBU32aIL8Un7lGprcBvMe1Wn96r6KcYH1U,38
156
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/audio_tokenizer.py,sha256=Vg7cT22Pjai8FSscDdoVAKwc564fptEgVGXwuU0iQfU,4928
157
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/bicodec.py,sha256=VPSxIBfT99ymNNw2wiB7egvgKmpi9knJZevDkVzRuQw,8927
158
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/spark.py,sha256=824_1_x7n6Kz5TWxrxF2lOdSem9f0ceqg9fnDb7t6KE,12514
159
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py,sha256=fUlplV8aH5Baqdx-p77M5Jeykny37iNQkEXhCt4x85U,7193
161
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/residual.py,sha256=Nmt1tbHFApCFVagrtqBZZnZ4asSoHYF2D5J1liEPhcU,6820
162
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/residual_fsq.py,sha256=10-fNNb6rl0Uu0UKZ7-K5YpcIpiUUzg_80rke8Pt4KQ,9830
163
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/blocks/sampler.py,sha256=mFLlO-T6sIepOehbSCL7wUElqT3bXFUrebVfFTYs22A,3787
165
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py,sha256=x_u3JhePGym-CDvyp-lputrPvBfaeZNk0XBgNYqDaaY,3726
167
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py,sha256=Je5pVFEwrj4oSzqHHRadDtnctl6xyDG75hEzN3WEmGE,3993
168
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py,sha256=TdAMxK40cNbZezthIjcZqzsDmbPqMiVdDfaQ6ehXngw,3188
169
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
170
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py,sha256=1fIsn6OUBImzTeDVWoopP3gbe_jOogkOWq4YTVOCMIQ,8065
171
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py,sha256=k4zuggnUVB0hELZx2kVaN1t1ZayFeX9AFAZ8theeyis,9177
172
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py,sha256=kbuYk8-pCNhPzmJteUPyNHmI0o-zJ0fOONAurrBP64c,10052
173
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py,sha256=666kTSMPIkDZkBQvOM8AXOC4dHVSEqSD9kOiUu6UBS4,5045
174
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/audio.py,sha256=TxmS00kXX3XMmwgrJFRWxbhw_mI6SBcFA-RiKCGS3-Q,7014
175
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/file.py,sha256=XqBnJ3N1ikI09SbkJ-6VpEL6sjgfiTQ5lAGevSQemM4,7126
176
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/models/spark/utils/token_parser.py,sha256=SBtWwVyYeGPcHxtb9q2SqqIg6IeTn6fDmYKOCkGtb7g,5154
177
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
178
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_base.py,sha256=dAeEA0IsBnUy8gxnE9ahOqXqWgLqEHjEVCCGGPPpqu0,2358
179
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_convert.py,sha256=79ddUhtTUlElD9NvBupUxl-MV4HKFM9PUxQpTwKLnBA,5804
180
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_interpolate.py,sha256=9dNmH03C46HtxwesH2DpT2oTNEG1KCZWYEKq6UQ3vfk,3536
181
+ nexaai/binds/nexa_mlx/py-lib/mlx_audio/tts/tests/test_models.py,sha256=12RiOfPtSZQj5g5JM-yCJk3uGQfM3OdmRiPt5uUDE4E,35096
182
+ nexaai/cv_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
+ nexaai/cv_impl/mlx_cv_impl.py,sha256=mdK4DEffPe96AgDGDXtQeHlG958hf8FO1fBZ1qjZMEE,3162
184
+ nexaai/cv_impl/pybind_cv_impl.py,sha256=yS4JKfRSaIjjVP7hJ-CizG76pIX85bpmGLk9B9cnL24,998
185
+ nexaai/embedder_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
+ nexaai/embedder_impl/mlx_embedder_impl.py,sha256=dTOz34WGDnhsI9L7Ctv6fGPngvMAUc4FwEwRgBp_M9I,4317
187
+ nexaai/embedder_impl/pybind_embedder_impl.py,sha256=AGGrOq4z0mDpQZInOvJsOIlQWflByhDjsihMu_Wjtbk,3286
188
+ nexaai/image_gen_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
+ nexaai/image_gen_impl/mlx_image_gen_impl.py,sha256=OxSbk9zIDj7tTvsdM8bMJQDBhpn-mygBNktewd_wgtE,11153
190
+ nexaai/image_gen_impl/pybind_image_gen_impl.py,sha256=XoSdWG5ID_g93WT9QB0qCP64a4rX-Rva0u4fQ8xpoqg,3626
191
+ nexaai/llm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
192
+ nexaai/llm_impl/mlx_llm_impl.py,sha256=HCi1uQBjccDDi64LbAgyH85lWx7qDZIW8i43dojGfF0,10210
193
+ nexaai/llm_impl/pybind_llm_impl.py,sha256=8Us4N5KF6oi-0-K_5Dpf2rYe9smd89ZfWFrP_fWBsM4,7374
194
+ nexaai/mlx_backend/ml.py,sha256=LafDM_TeXmuQkld2tdQxUBGgooT0JPMXngLam2TADqU,23179
195
+ nexaai/mlx_backend/profiling.py,sha256=Dc-mybFwBdCIKFWL7CbSHjkOJGAoYHG7r_e_XPhzwBU,9361
196
+ nexaai/mlx_backend/asr/__init__.py,sha256=fuT_9_xpYJ28m4yjly5L2jChUrzlSQz-b_S7nujxkSM,451
197
+ nexaai/mlx_backend/asr/interface.py,sha256=pE5expr8sP7O9bEgWaUaJ4ITX0MsCxFovG9iVWqVDVU,4246
198
+ nexaai/mlx_backend/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
199
+ nexaai/mlx_backend/common/utils.py,sha256=WtRTdE0bUhpsOmhuM_dhn8WHkOxtqRv0vNp5kSY-rNU,949
200
+ nexaai/mlx_backend/cv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
201
+ nexaai/mlx_backend/cv/generate.py,sha256=fC7a1QQqcOsoa3NkRTVY-e6i97T6Hry8KohWJtqQeCU,6288
202
+ nexaai/mlx_backend/cv/interface.py,sha256=qE51ApUETEZxDMPZB4VdV098fsXcIiEg4Hj9zaGQCp4,4686
203
+ nexaai/mlx_backend/cv/main.py,sha256=hYaF2C36hKTyy7kGMNkzLrdczPiFVS73H320klzzpVM,2856
204
+ nexaai/mlx_backend/cv/modeling/pp_ocr_v4.py,sha256=Vpa-QTy7N5oFfGI7Emldx1dOYJWv_4nAFNRDz_5vHBI,58593
205
+ nexaai/mlx_backend/embedding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
+ nexaai/mlx_backend/embedding/generate.py,sha256=irAbc_nBD9wMqe5z1eFgp6Gf_mONow2I3z3g-DAAbtY,5018
207
+ nexaai/mlx_backend/embedding/interface.py,sha256=hW0yrtD55ol0hB-X5glcXMc4TiyKuT4U5GaI8SP-kAU,11508
208
+ nexaai/mlx_backend/embedding/main.py,sha256=_kIwz69A7UXA_u0VNP6eqM2W-LH_1_1hlJtro6U_FjI,2620
209
+ nexaai/mlx_backend/embedding/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
210
+ nexaai/mlx_backend/embedding/modeling/nexa_jina_v2.py,sha256=F9Z_9r-Dh0wNThiMp5W5hqE2dt5bf4ps5_c6h4BuWGw,15218
211
+ nexaai/mlx_backend/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
212
+ nexaai/mlx_backend/llm/generate.py,sha256=Phes0tzxbbEWA2hDylQvD0LjorMaPwvcfZq9RKCAOt0,4399
213
+ nexaai/mlx_backend/llm/interface.py,sha256=Fx28O2jCDPaEfr0xLffWnqGIU5Gspggxr-o54-fBWj4,29257
214
+ nexaai/mlx_backend/llm/main.py,sha256=gFDE4VZv_CLKMCTn0N521OfCKH_Ys26bHDh6g9VEFNc,1982
215
+ nexaai/mlx_backend/mlx_audio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
216
+ nexaai/mlx_backend/mlx_audio/server.py,sha256=Pqy13Fafq4WX_cTuvRFz1jq89beQm2QQGpXmhK4b9jc,17547
217
+ nexaai/mlx_backend/mlx_audio/utils.py,sha256=35_9pWHzCuf2HAWHLkmz8AeyPa9WlYFr86zSRasoaAg,6476
218
+ nexaai/mlx_backend/mlx_audio/version.py,sha256=PNiDER4qM19h9zdsdfgKt2_dT4WgYK7EguJ8RU2qA_g,22
219
+ nexaai/mlx_backend/mlx_audio/codec/__init__.py,sha256=6yClZf58zupCWcOgslT6uqPCSyDyJEgjpD9vmm1sCAk,46
220
+ nexaai/mlx_backend/mlx_audio/codec/models/__init__.py,sha256=23P_A2OE9OELL1E4o-XYTPuqSdD6RkgLVpONYDMKH2A,126
221
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/__init__.py,sha256=_y2zXCB4_lfqo4MErOzBcHop-CBJb7U36enAzIzbJUA,44
222
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/activation.py,sha256=Yupx7w5kmapfjaVRr5Yh8L7Bd49xC_WkWo2g8GBLMxA,1353
223
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/amp.py,sha256=gbmjKPSOP6R3sojvGG3UV7Bgs8bVV7mnbxSh78zz0uk,2685
224
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/bigvgan.py,sha256=ISk3wgi-uNTr8E05-LsrRC6EaA5rRs1vTUyG9FmQw4c,4837
225
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/conv.py,sha256=wSoTvDxZrJVnFnZpotfEDy8JfWOGHLRi7Cnjerzl3WA,3452
226
+ nexaai/mlx_backend/mlx_audio/codec/models/bigvgan/resample.py,sha256=FIVO_UUJ3tgAK_ixeXq195IjLG7atAXl6AXnSp2Vedo,4967
227
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/__init__.py,sha256=KIyZ5Ai7g4NbXRmJ3C8toG0uAavmnNxarY7ns6N9Hp4,21
228
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/base.py,sha256=Rb_DPkc4HGspB4qZBeREBDRJN4gNqV8hC5qIjUm4Ulk,7088
229
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/dac.py,sha256=CfVIZ9JzwL15OJyB2NHGvWBCaU5I7zryRYfRFTneaj8,7920
230
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/__init__.py,sha256=I7pth7lk2g8165zoyJF8V-FzhSAXIEjP11ozHjqaiSs,31
231
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/layers.py,sha256=HQGV0Km2VYRGZCBctuE-mgTpwDJ88q2hiq-dZowWKV0,3742
232
+ nexaai/mlx_backend/mlx_audio/codec/models/descript/nn/quantize.py,sha256=S_q7eo7_Ebf0UQzeJVO2WmVvgu7adWcipH8KOvqDTik,4948
233
+ nexaai/mlx_backend/mlx_audio/codec/models/encodec/__init__.py,sha256=usARsuej0lQqNbVh4wY-FrnfDtTlZUrY1F97mlVXRg4,44
234
+ nexaai/mlx_backend/mlx_audio/codec/models/encodec/encodec.py,sha256=8eCppGULNwSqR2rfLH4xhfRc0sFJtOI1zSHouIRakQE,26135
235
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/__init__.py,sha256=A_ATkvIxeWYRZScbHILXJfL7PUShEtY6Xn0LfojW04Q,45
236
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/mimi.py,sha256=-bVEeK5vehyf5C45YVid7yse6JKSzTt-oXNJtTXpqhc,9249
237
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/__init__.py,sha256=dMdUtb7s6kZiC7ubZSm1F_EMCHt1FtPTX8kcIsvpxaM,661
238
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/conv.py,sha256=GrQ16Zu3HZf5n6BD2WkiUB-JhBkjbgGReoTNuByghJw,11606
239
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/kv_cache.py,sha256=KppVMJZocUPQsBEGXkTAljwNdoh4f_bY8K3DRGQIzoM,6863
240
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/quantization.py,sha256=5ctB35w8mc3rCgSiFUfpEc5MW61UxCQ1iyCeBObgT0M,6036
241
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/seanet.py,sha256=B1ZYSOGquM998DU5M4aFvlDSlwREpC2eYm_y_a895yI,9342
242
+ nexaai/mlx_backend/mlx_audio/codec/models/mimi/modules/transformer.py,sha256=4UE8OXTkOe1YE3G4uwNGur1s2_YvNJavXOda08wZf0c,7891
243
+ nexaai/mlx_backend/mlx_audio/codec/models/s3/__init__.py,sha256=Vj9NCtjPaMCJokuK4ZAjTIKfJyQGztQ6_dCjnUvukpw,36
244
+ nexaai/mlx_backend/mlx_audio/codec/models/s3/model.py,sha256=H0jf9-uj63ocz6qc9FFFAMwjMgJeg7538GiWi_uQ2TM,8078
245
+ nexaai/mlx_backend/mlx_audio/codec/models/s3/model_v2.py,sha256=NxUdM_i5_ckK-flqeYvWJ_vVrV9lwJPWlQY7A6cnims,11334
246
+ nexaai/mlx_backend/mlx_audio/codec/models/s3/utils.py,sha256=FPTUZOCfOqDIsn4PlI97QhECo8hAm59Kz1L6dw-AIeY,3634
247
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/__init__.py,sha256=oqKMQgBH2YTvxDrla_royWyV2XNFYhUqG7AKnjnEKdw,23
248
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/attention.py,sha256=-hRrfPehQl4KyTWxuWlaT89IRaBZJYgPgeO1Zph1zXE,3288
249
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/layers.py,sha256=TGn-J0mPVHssP7KDYl7ZiL8CIMnReOqjtgYG_rDnUVQ,8872
250
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/snac.py,sha256=ldWi6TqcwWp4WwluNin5uIDGiSWssRoZpwi1hGXzOqE,4706
251
+ nexaai/mlx_backend/mlx_audio/codec/models/snac/vq.py,sha256=iqZa0Q95BQlA25ik7DlrA_KsF_IZQyZ9nQqXutB4Atk,4302
252
+ nexaai/mlx_backend/mlx_audio/codec/models/vocos/__init__.py,sha256=7NwXJClXTkxPbw1CcoWTQUW3naf4p5AVkhamt_fuZqs,25
253
+ nexaai/mlx_backend/mlx_audio/codec/models/vocos/mel.py,sha256=RgW7SJdOvAzZSljQrfiJvi-X3rxV0pqpx1gE2L2mVOg,833
254
+ nexaai/mlx_backend/mlx_audio/codec/models/vocos/vocos.py,sha256=oRSJGKy4IjQ2EZ6Hq9uCs1bon44Z-OBWjYOy7fpSyK8,12271
255
+ nexaai/mlx_backend/mlx_audio/codec/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
256
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_bigvgan.py,sha256=fs7P_aKdEqkMh-G5Z_AvIURUXCziKCzRu-cfL-r96w4,1643
257
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_descript.py,sha256=PfWklJavdj2QVLJz28v6XEDdHVBxxREWaHioFbdfm10,3214
258
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_encodec.py,sha256=u1fyPVJJCvcjdZkW8f5mwFZshIJnYec-1q1AnyGChQQ,1436
259
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_mimi.py,sha256=90ZUaODzPIIxpwIrI93sHDnwhyhYERLjErRMKF1AN94,527
260
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_s3.py,sha256=IyQSsXT__qci6AZ_LTTJR-hXhnlmyelSb4uApDovVzA,715
261
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_snac.py,sha256=oN_apJJejx9_h2rpV7B2TaMzTbdABhASbOHTPQNEX7Y,962
262
+ nexaai/mlx_backend/mlx_audio/codec/tests/test_vocos.py,sha256=RjGdEIebCufA15WqSJJ40pOWf9a54hHfcHhhlt4j6SA,2631
263
+ nexaai/mlx_backend/mlx_audio/sts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
264
+ nexaai/mlx_backend/mlx_audio/sts/voice_pipeline.py,sha256=YUpecEHqjrRMegfN6n5KPG2A2h6raGuOYbY3xpjBjjs,11113
265
+ nexaai/mlx_backend/mlx_audio/sts/tests/test_voice_pipeline.py,sha256=7heJvtVONn22uzF2CPEEgLT9JPuyhSp-RhXk8rvtvEg,6484
266
+ nexaai/mlx_backend/mlx_audio/stt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
267
+ nexaai/mlx_backend/mlx_audio/stt/generate.py,sha256=Z-hlAcIGsT6UwY9NgfkHDkZcAoQ8z4wCGy1jVnJwwks,5526
268
+ nexaai/mlx_backend/mlx_audio/stt/utils.py,sha256=wNeL5ygqqD0dNxscib1EQK3ToGOyIH7sKyXUBE29n8Y,5567
269
+ nexaai/mlx_backend/mlx_audio/stt/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
270
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/__init__.py,sha256=tiICxkwYZ1jKyzYUv6QKgvDiphGEfkwnKdIthb5DYXQ,28
271
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/alignment.py,sha256=j7yT30wq0GFIGi8nZQIzoEQYBtahBDnBgSXO1H2Aihc,7320
272
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/attention.py,sha256=X-fxMfEzhDbr5Vg0v6NUzypvxD8-Ldb7mbISbAoaWhk,5676
273
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/audio.py,sha256=NsL4yceDASN6Sm8meLdnZgStfGNJYN0erkumh0O9Us0,2088
274
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/conformer.py,sha256=GOLHVcclkc27Z84ULfUuqPS2qKYD5KSEb_hsq5ZFMks,10371
275
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/ctc.py,sha256=cbyumguVJDB88dJodezkyfz_HGJu5o5Hfd4g31XO7-g,790
276
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/parakeet.py,sha256=BE1oPf-npIKE2CgS4FhSgCFj9RjyItSeUKaGYmSciNM,20601
277
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/rnnt.py,sha256=2hVrlgGvDxtjlOHc4_bNPlpQnp1E9wHFkH_Q__kUYi4,4351
278
+ nexaai/mlx_backend/mlx_audio/stt/models/parakeet/tokenizer.py,sha256=Cgg_qE6Jwxw-tcbo2te92vdqjcjSmoqhesguvfgQRmk,134
279
+ nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/feature_extractor.py,sha256=Tlu-nJWkly00IexT9Iz9z3-myayuMWW2twFpra1FIOY,33012
280
+ nexaai/mlx_backend/mlx_audio/stt/models/wav2vec/wav2vec.py,sha256=LTs0l9sPUDdYB_Y7qcctu6_8n8csuyszP1qWwpphgXs,26060
281
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/__init__.py,sha256=pJLy2AwH8n-HXEpW4pV_Gwy2Rv8RoDEDoKlNBGLxIjk,27
282
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/audio.py,sha256=2vcVHqJYAsZuB4s4381W-Vxyo7JpWmVCzl5cylBj5Pw,2446
283
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/decoding.py,sha256=ezzDzQkToqyR4cbJRXi5Tgoz_nwaCF41pNsnvuJYdGY,28501
284
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/timing.py,sha256=JzbCvxny67qlIdrp3rN0jGtdXzGa9yn0B43CsHaYIs0,10889
285
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/tokenizer.py,sha256=4-mbp9qOyJewg_W2XTdxGjnQFCQpAgcusGrU6neZoio,12407
286
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/whisper.py,sha256=6Dw83aLbxKKHs8962280UO00pocmR5VHbrBoR47RxZ0,34920
287
+ nexaai/mlx_backend/mlx_audio/stt/models/whisper/writers.py,sha256=NL08m0sPLc4eYv6sukGI8QC3zcH4XESoIisMrE-S0A8,10138
288
+ nexaai/mlx_backend/mlx_audio/stt/tests/test_models.py,sha256=x9LxoSo8vFyF3XocWCAOwZVUD2aGJhhvxlyxWiZzcU4,14663
289
+ nexaai/mlx_backend/mlx_audio/tts/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
290
+ nexaai/mlx_backend/mlx_audio/tts/audio_player.py,sha256=uASE9sx3_j-_5QIuYpoLxb0IBlczT4XKqQz1uyWGWhA,3677
291
+ nexaai/mlx_backend/mlx_audio/tts/convert.py,sha256=WHOQT58ZwRacVk96whTBXy_a24dpA7GEbtaCOdoZ0mo,1901
292
+ nexaai/mlx_backend/mlx_audio/tts/generate.py,sha256=ZIZ8p1AwnpySpzfua9NliP65W-RUyGbCbiH7lvFjsD0,14864
293
+ nexaai/mlx_backend/mlx_audio/tts/utils.py,sha256=yHjmzWxWwBg75O87rzmjfAHsfR4x9U8ncqjI7nEmWZg,11614
294
+ nexaai/mlx_backend/mlx_audio/tts/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
+ nexaai/mlx_backend/mlx_audio/tts/models/base.py,sha256=5cMTt3MKvaRZ0MbTMupremTerRbi3XU5xCs28f5Dmqw,2108
296
+ nexaai/mlx_backend/mlx_audio/tts/models/interpolate.py,sha256=C49nZRNRXko_eby7l7pvCrs0fA_ay-J_evtoyOaxcoA,3521
297
+ nexaai/mlx_backend/mlx_audio/tts/models/bark/__init__.py,sha256=SVIa-o96gDHLJ3ZD6jcB8tlRJHnj8oVnQdelnKL1qp8,116
298
+ nexaai/mlx_backend/mlx_audio/tts/models/bark/bark.py,sha256=C_by_WAVITgJ4K9QRpDghshv39Sc8TZ8lhC_XLVuTs0,18017
299
+ nexaai/mlx_backend/mlx_audio/tts/models/bark/isftnet.py,sha256=JWBdHtmmeIpo6zxazk7eTilNGrmvRqiWk9GGmRCI0S4,344
300
+ nexaai/mlx_backend/mlx_audio/tts/models/bark/pipeline.py,sha256=NjC9PYsceMScP04vBkkIqViqu7uiO1WNmxviwZHqn0Q,16299
301
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/__init__.py,sha256=D0wxtRXh7-JWboO6vdnpjg9vBtSJx3kM4IOKECg6fJs,23
302
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/audio.py,sha256=RzC6JzVc6H1DkJMljzdWLujwVqCOs2GvzQfpELzSsus,8968
303
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/config.py,sha256=2my1AGaM9ecHazeMkj0iecO30Ul90zdNGpNDARseYB8,9219
304
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/dia.py,sha256=oH4hmMdh7MAwZhYCRFJeJhNp0kFUvJJ15B4kk36po-Y,21881
305
+ nexaai/mlx_backend/mlx_audio/tts/models/dia/layers.py,sha256=xIM02QXbBlgbzvVrxN7mygW6dQtJEfZzTvKGUPkSgWE,29145
306
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/__init__.py,sha256=zjEdjSAB_SBgt2ZVZornAlqWij4-4pzW4cVwPVjFN3c,102
307
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/attention.py,sha256=seTeDud8YI4n38IWHKMcRECfmFckRHMuOmRwbiq6Jt0,5621
308
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/bigvgan.py,sha256=0gNbCqPqU2qwcZdDAn9ufyAMBOkkrk7z5G7HRuB_wxE,3909
309
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/conformer.py,sha256=t1NE7muEOhTaJf258EBvE-w1GyOw6nF0oQZWdCxyAu8,7328
310
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/gpt2.py,sha256=fg1oz2eFOtwy3zexT1tfNm-8aFriH4M5TV911rBll8U,1258
311
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/indextts.py,sha256=ANchayvvun24CTygEmiqKXsmgxWujb2G2IjX29tQRKs,15027
312
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/mel.py,sha256=0xbO4Pk4K5H3CY5YhnC9Mdonl1AGYzgr_czMSwVxIM0,837
313
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/normalize.py,sha256=I_ZGZalBnHrG6v0IHI7Zw9wqUiZrVdyyBhC5jODmpAs,8128
314
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/perceiver.py,sha256=uKaZeLlZq-XWZ_IxnpZBrGRqcAQfP3j1mko8j-0gi50,1787
315
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
316
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/asp.py,sha256=iXpwm3yfbVvsfhTgbrwtnPcWbx37yoyHOv4odf6PAC4,1760
317
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/ecapa_tdnn.py,sha256=KLOQJlEIuqER2eioSkTmB0h5BGQmLD72cpLK961g-p4,2855
318
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/se_res2net.py,sha256=V1NMDWoN3gLXH-L2pqMrr2BFsW7c4xKcqr_Fbmmc81o,3336
319
+ nexaai/mlx_backend/mlx_audio/tts/models/indextts/ecapa_tdnn/tdnn.py,sha256=JWLMAdLb_u_icYxi_t95eWpzFjggyEjfEQkc-siJR-E,1064
320
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/__init__.py,sha256=jisbM7KCn5zkXi9T4ojfjXBlZ-MAacld0Ymvb3TpfNs,130
321
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/istftnet.py,sha256=KFhuRAF5M0zLBArZdgYMjh9A2IQVHDc8yHvymUWHqsY,32481
322
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/kokoro.py,sha256=L1AsRHaWAaQGUH2g5UGb3hqvWQEfsHTIA8ltxGDQa3o,12207
323
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/modules.py,sha256=a4541RzrYYP178DacGDwavtF1k4X-TczhsWvEiZohFk,22928
324
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/pipeline.py,sha256=5HJ3QMy-4Q6IxvEnxyxAvFockhtiA4Dh_VRci6XkZlc,16746
325
+ nexaai/mlx_backend/mlx_audio/tts/models/kokoro/voice.py,sha256=AFnv_EPGGgT6-vMRzhviBd2Oaw0eG88euFUKpTH1dSk,4154
326
+ nexaai/mlx_backend/mlx_audio/tts/models/llama/__init__.py,sha256=scnfrCNEEZ9bBf2Qd2tm8QQLt27gP8j2ky2GFIGxdiA,74
327
+ nexaai/mlx_backend/mlx_audio/tts/models/llama/llama.py,sha256=o5iK50czp2e2zbDnJ0f--C552uPnciCvZoRuJHgxd4w,11433
328
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/__init__.py,sha256=UF-9cCswNVxvVqtXVoRgZwzEvbRCNYkVNk4cJcQV6t8,40
329
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/audio_processor.py,sha256=IF8rxHm_WcA82slU75RlwU573u7DF6dIet_TXNYNYEw,11464
330
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/dac_interface.py,sha256=Yti1ut4Z7NqyQ02Cskr28mhW-sSjjP_BpCflOn4Ws84,5029
331
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/default_speaker.json,sha256=-ZQMe_Ff9KoMXuxoWKcMBr2ti7Q1g4Hb3Bzd9XFFBKI,14048
332
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/outetts.py,sha256=3Qm9ZlbosZOXXGqPe-cT3fds3SANv1sUiG_MzsHmTD8,9222
333
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/prompt_processor.py,sha256=7iLnfQyG1dIISa4HJsW8RB9yLpbc_yP3jlJ_mPD3dQQ,6277
334
+ nexaai/mlx_backend/mlx_audio/tts/models/outetts/tokens.py,sha256=r4SdeGZCW04f2SMWnv_bYN5goFCdka4wnw7LjSiYShM,1231
335
+ nexaai/mlx_backend/mlx_audio/tts/models/sesame/__init__.py,sha256=T14qNKlLb_nHDtqOereBOo40UMUkmYzJKUqUn1Ac2oc,47
336
+ nexaai/mlx_backend/mlx_audio/tts/models/sesame/attention.py,sha256=OxwzCY6yhSU4NJNkkyHVVNsC0DF-97I3nuz4MCdMM1A,6316
337
+ nexaai/mlx_backend/mlx_audio/tts/models/sesame/sesame.py,sha256=IUTaUXmDmVSssxD85Vw2y8ijJswgLUM150-cO2_2kME,22818
338
+ nexaai/mlx_backend/mlx_audio/tts/models/sesame/watermarking.py,sha256=rFA56rgkq7jbFKrlH6EJRi_JQcDXLnk67JjVTpJyZBc,2972
339
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/__init__.py,sha256=8vB16nVHdnBU32aIL8Un7lGprcBvMe1Wn96r6KcYH1U,38
340
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/audio_tokenizer.py,sha256=Vg7cT22Pjai8FSscDdoVAKwc564fptEgVGXwuU0iQfU,4928
341
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/bicodec.py,sha256=VPSxIBfT99ymNNw2wiB7egvgKmpi9knJZevDkVzRuQw,8927
342
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/spark.py,sha256=824_1_x7n6Kz5TWxrxF2lOdSem9f0ceqg9fnDb7t6KE,12514
343
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
344
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/finite_scalar_quantization.py,sha256=fUlplV8aH5Baqdx-p77M5Jeykny37iNQkEXhCt4x85U,7193
345
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual.py,sha256=Nmt1tbHFApCFVagrtqBZZnZ4asSoHYF2D5J1liEPhcU,6820
346
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/residual_fsq.py,sha256=10-fNNb6rl0Uu0UKZ7-K5YpcIpiUUzg_80rke8Pt4KQ,9830
347
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
348
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/blocks/sampler.py,sha256=mFLlO-T6sIepOehbSCL7wUElqT3bXFUrebVfFTYs22A,3787
349
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
350
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_decoder.py,sha256=x_u3JhePGym-CDvyp-lputrPvBfaeZNk0XBgNYqDaaY,3726
351
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/feat_encoder.py,sha256=Je5pVFEwrj4oSzqHHRadDtnctl6xyDG75hEzN3WEmGE,3993
352
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/encoder_decoder/wave_generator.py,sha256=TdAMxK40cNbZezthIjcZqzsDmbPqMiVdDfaQ6ehXngw,3188
353
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
354
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/ecapa_tdnn.py,sha256=1fIsn6OUBImzTeDVWoopP3gbe_jOogkOWq4YTVOCMIQ,8065
355
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/perceiver_encoder.py,sha256=k4zuggnUVB0hELZx2kVaN1t1ZayFeX9AFAZ8theeyis,9177
356
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/pooling_layers.py,sha256=kbuYk8-pCNhPzmJteUPyNHmI0o-zJ0fOONAurrBP64c,10052
357
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/modules/speaker/speaker_encoder.py,sha256=666kTSMPIkDZkBQvOM8AXOC4dHVSEqSD9kOiUu6UBS4,5045
358
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/audio.py,sha256=TxmS00kXX3XMmwgrJFRWxbhw_mI6SBcFA-RiKCGS3-Q,7014
359
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/file.py,sha256=XqBnJ3N1ikI09SbkJ-6VpEL6sjgfiTQ5lAGevSQemM4,7126
360
+ nexaai/mlx_backend/mlx_audio/tts/models/spark/utils/token_parser.py,sha256=SBtWwVyYeGPcHxtb9q2SqqIg6IeTn6fDmYKOCkGtb7g,5154
361
+ nexaai/mlx_backend/mlx_audio/tts/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
+ nexaai/mlx_backend/mlx_audio/tts/tests/test_base.py,sha256=dAeEA0IsBnUy8gxnE9ahOqXqWgLqEHjEVCCGGPPpqu0,2358
363
+ nexaai/mlx_backend/mlx_audio/tts/tests/test_convert.py,sha256=79ddUhtTUlElD9NvBupUxl-MV4HKFM9PUxQpTwKLnBA,5804
364
+ nexaai/mlx_backend/mlx_audio/tts/tests/test_interpolate.py,sha256=9dNmH03C46HtxwesH2DpT2oTNEG1KCZWYEKq6UQ3vfk,3536
365
+ nexaai/mlx_backend/mlx_audio/tts/tests/test_models.py,sha256=12RiOfPtSZQj5g5JM-yCJk3uGQfM3OdmRiPt5uUDE4E,35096
366
+ nexaai/mlx_backend/rerank/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
+ nexaai/mlx_backend/rerank/generate.py,sha256=Y6aWBg0bxVyLS7OiLTpM6cR0XoVw6mpna6QOkBFMpNM,6017
368
+ nexaai/mlx_backend/rerank/interface.py,sha256=iU8KmEdDa_QpptszWGlYGerp9LR08TMm8Ba80neMyAo,9922
369
+ nexaai/mlx_backend/rerank/main.py,sha256=HEiZxPvW54B1TlZ6svVguunSXOtUaHZSSPuQvxnBvHA,4258
370
+ nexaai/mlx_backend/rerank/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
371
+ nexaai/mlx_backend/rerank/modeling/nexa_jina_rerank.py,sha256=lVJSjTHWhpFy71elcp0yaWnQGKX1boU4xbkhwV4bMlE,10871
372
+ nexaai/mlx_backend/sd/__init__.py,sha256=n3pC_cDqtZuP0_X9OkSBwwKqjdLfRkbRIjjFYd_1iU0,44
373
+ nexaai/mlx_backend/sd/interface.py,sha256=5sGuEwfDGQtSeZ93JmDn2eL47XHmCyxkceDSyCK7e1g,13415
374
+ nexaai/mlx_backend/sd/main.py,sha256=cHlZhG8KHDFXbYRH-diKA7B1Qacq1euuGw0pKeXJGAI,8575
375
+ nexaai/mlx_backend/sd/modeling/__init__.py,sha256=wriLb0wA5vCBlCoQMtfKrVVWMJw8fhXCCk6R9_Nrb9c,9524
376
+ nexaai/mlx_backend/sd/modeling/clip.py,sha256=feHQXi1NiGa01AMo7nK8M-sgBoZBHI95xAGMfAv64kE,3733
377
+ nexaai/mlx_backend/sd/modeling/config.py,sha256=lq2sWXevpnCk8KXOywEVOzgFT6WBNnG4xr7NLWgidII,1773
378
+ nexaai/mlx_backend/sd/modeling/model_io.py,sha256=0jpMHJdMoTk0Jo4Uz1ZGiXekAWzPuTTD5g7ms4m4idY,11668
379
+ nexaai/mlx_backend/sd/modeling/sampler.py,sha256=nJxiSmF79E2aDGzLqygOat4zpgaTzfR7Kp1PD0bmhWA,3397
380
+ nexaai/mlx_backend/sd/modeling/tokenizer.py,sha256=WMcmyQmb5MmhCp-NNU72Bqjq9vQvDzgR8KAfGKA2Qso,2991
381
+ nexaai/mlx_backend/sd/modeling/unet.py,sha256=rYj1-baAugL7CNyYYvLch891WUgpunhAJCVBNKxfZSA,14762
382
+ nexaai/mlx_backend/sd/modeling/vae.py,sha256=sQ1943x5SKyTmeL2xe3t84FL9DGO72Eab2m88r-BSe8,8044
383
+ nexaai/mlx_backend/tts/__init__.py,sha256=fuT_9_xpYJ28m4yjly5L2jChUrzlSQz-b_S7nujxkSM,451
384
+ nexaai/mlx_backend/tts/interface.py,sha256=0FvZbIyOvg8jERZEQ6bygbv7v02O9xHO4-TPUlar0b4,9568
385
+ nexaai/mlx_backend/vlm/__init__.py,sha256=_25kvMEviX16Hg3bro8Ws70V0eeIEqYKV8ZDXqYzKew,73
386
+ nexaai/mlx_backend/vlm/generate.py,sha256=DqHFEAuqk-nko8ho6U9GAXTDAWz4d8GTe_hCt-XFyCw,19071
387
+ nexaai/mlx_backend/vlm/interface.py,sha256=FWPFpq7xxeXSJSnIXOE8m78hu1ryhoocaoQImwXtpao,15613
388
+ nexaai/mlx_backend/vlm/main.py,sha256=4XRpxotxPn4HKaAfcbC06YH80fQqZ_oGPx18tHfHOBY,5628
389
+ nexaai/mlx_backend/vlm/modeling/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
390
+ nexaai/mlx_backend/vlm/modeling/convert.py,sha256=ia5i9cgTufFGmKyhkYUaW0nfNqT_bMo8i-Hg_zy5JC4,1863
391
+ nexaai/mlx_backend/vlm/modeling/processing_qwen2_5_vl.py,sha256=PdlV1pTp0_b6QPrXNZzA52GBMRjyODWLlN_uzrMtDLQ,10218
392
+ nexaai/mlx_backend/vlm/modeling/processing_qwen2_vl.py,sha256=Kzu_GcXiQeUt9o7AUILgmOsc6nfts7mN30rl4F_iFeg,10254
393
+ nexaai/mlx_backend/vlm/modeling/prompt_utils.py,sha256=ihebAhlzlmxX0JTV0n3_8gmTJK_0GelXgcAUOI2TjV8,15702
394
+ nexaai/mlx_backend/vlm/modeling/sample_utils.py,sha256=Q_PT7wbq-pHostpUgmhCm-WcsvZ_sWHKMq-Owy3XUT8,1354
395
+ nexaai/mlx_backend/vlm/modeling/tokenizer_utils.py,sha256=si_yU4NfBBdDk1vHGhGdzvwQyYKGOBcNOvuXXfeDXRc,10693
396
+ nexaai/mlx_backend/vlm/modeling/utils.py,sha256=W3xZmWEHK31BwtGQeqv60BQAT9F460JvV1YDWFM1nLw,30226
397
+ nexaai/mlx_backend/vlm/modeling/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
398
+ nexaai/mlx_backend/vlm/modeling/models/base.py,sha256=qVf-yv5C5_FigU6NPJHkikwQc0jMzshtHd-FRgVny_g,6212
399
+ nexaai/mlx_backend/vlm/modeling/models/cache.py,sha256=7q2waWeCZSjsDCuTi3nEY9M0cO9C7XMwRdLDmZLkl80,7409
400
+ nexaai/mlx_backend/vlm/modeling/models/kernels.py,sha256=nJYMiB3nxfpO3EpD4KfTvZ7Cn28AerRQDMEhRRDgvj8,10283
401
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/__init__.py,sha256=DsuevxWyQ_P-7qcxPfH86gjw-qo1sJIVsW8BMMMBR9s,126
402
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/aya_vision.py,sha256=c-D6o7HmSAFWhp1u-3SSeLo5KCqGBVl0lewlfUHuD08,6708
403
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/interpolate.py,sha256=JsFYtIZoDv8XAfqYKt7p3fdUPybGx8LVVtWi9ejLgZo,7073
404
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/language.py,sha256=Ch8pCFfErinfdLdazHmyDbqmce0Y3yGYrWxj2r8N8rc,7362
405
+ nexaai/mlx_backend/vlm/modeling/models/aya_vision/vision.py,sha256=BeVhbFbMLEUqRakLInWy3t90cX-F5EXkS9Yvt0ftrtY,18135
406
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/__init__.py,sha256=BQv9ZWMbrIxqE9N-hPThwZ-1u2DTtdt4yKo3lpE-xHA,178
407
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/conversation.py,sha256=H6-RV9A8wy8ea7TgM_G_DcCamYYRT1-X8TETbtgEXD4,8230
408
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/deepseek_vl_v2.py,sha256=Jf0SRNEUfe90DiUVgM9LfQ3EdC5duPHGf_nGXiS9R-A,17815
409
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/language.py,sha256=UAfsz7ENTvP6aCo1HiWLGpHp_rHj1TUya5SGEDPzeLo,20494
410
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/processing_deepsek_vl_v2.py,sha256=RAfwrkXiGnyRIlNmlh8eKPNSrudoNrvdgS9cEDANxiw,18671
411
+ nexaai/mlx_backend/vlm/modeling/models/deepseek_vl_v2/vision.py,sha256=6Uf8gbhY8bCyXls_68TIbE_ly4wus4S5ELkOgSzVkLI,10923
412
+ nexaai/mlx_backend/vlm/modeling/models/florence2/__init__.py,sha256=TCHENiHr36OR7FGMVID0DDbNIwjtJifPtFiuCSBy2nk,125
413
+ nexaai/mlx_backend/vlm/modeling/models/florence2/florence2.py,sha256=TtkKb6MsjptZxjpRI-xjf7t37MIfuqvpWbp15lGSv7E,13099
414
+ nexaai/mlx_backend/vlm/modeling/models/florence2/language.py,sha256=WL0eXkeKFC-mqTsueoVFTP4fn_DkJgU047m2W6y-1xA,16594
415
+ nexaai/mlx_backend/vlm/modeling/models/florence2/vision.py,sha256=5bna_aw7gDJ_knjimiZ9czLydkEJmt0nuN5gnptNcLE,16997
416
+ nexaai/mlx_backend/vlm/modeling/models/gemma3/__init__.py,sha256=iOd-lWlJDgnEyoZZ6vikZd3PsRhBq8_uSLPIAUjPpfo,122
417
+ nexaai/mlx_backend/vlm/modeling/models/gemma3/gemma3.py,sha256=6lIqddtl5RCVWCnlnvix1qPGyhbZon_jLvUoXFg2nwc,7548
418
+ nexaai/mlx_backend/vlm/modeling/models/gemma3/language.py,sha256=eHb8aqbEUYS1Ma8nq4migF_qVR87xzqTH4PnECI9IYc,10268
419
+ nexaai/mlx_backend/vlm/modeling/models/gemma3/vision.py,sha256=UExcSWWL1-4eTkVYRHiK1s8-VGc7eiVS__MwMUnmdvM,7654
420
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/__init__.py,sha256=iu_nBtI1gg6yS6jQqOV_eXHSdEBSttuaXcJh1plwQl0,138
421
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/audio.py,sha256=sP2gePQo6TwB4p29DvGh97pnXbaYiGtXcYRygohn-9s,42203
422
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/config.py,sha256=YBcgZu5vgcW6EXLYiExuiSFIILME_DBupLB2_uXNZPE,4109
423
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/gemma3n.py,sha256=zsGBamEiiLkOTt7MTQwj9FBSjiuIM_catjxlHy0yRNI,11762
424
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/language.py,sha256=5JrrGqqGd6DKgrmKEgyrXeIw8T0_F9shW1Ht1shUP3s,21718
425
+ nexaai/mlx_backend/vlm/modeling/models/gemma3n/vision.py,sha256=_JF-cxEhizjlzAysOtcqolEBNqaHlW7RcZ35BG2O3Q4,32774
426
+ nexaai/mlx_backend/vlm/modeling/models/idefics2/__init__.py,sha256=9-RTi8hnIXow9Lng_3ZauPcH0-KfAxqtkkopPbp9hCQ,145
427
+ nexaai/mlx_backend/vlm/modeling/models/idefics2/idefics2.py,sha256=4XGhEnFFWtA8aAfTddwnXaJuQZxs74Jciz-Rq7CZ614,9532
428
+ nexaai/mlx_backend/vlm/modeling/models/idefics2/language.py,sha256=U4sM5pwbxVrZu_ukPmD_2e1hp3xpNJSv1YB8ZJQZpv0,5996
429
+ nexaai/mlx_backend/vlm/modeling/models/idefics2/vision.py,sha256=ZGsEORw1N6R7lJ3Yiz90O3sGVlt-DZo4p_exvImxQxM,8843
430
+ nexaai/mlx_backend/vlm/modeling/models/idefics3/__init__.py,sha256=QO4U4tH6cnmibJM6lGaUBjiFLnq5pysC63gb2Tcv0RY,124
431
+ nexaai/mlx_backend/vlm/modeling/models/idefics3/idefics3.py,sha256=YuMYYjbqJwShFxGR59ZA_nZRVT8RXvoh7fmJ29cswDg,5461
432
+ nexaai/mlx_backend/vlm/modeling/models/idefics3/language.py,sha256=cYPQU-xEuKDywxH9gaGB-3ZbS26mPBQgG7eM2UHAFpc,6062
433
+ nexaai/mlx_backend/vlm/modeling/models/idefics3/vision.py,sha256=gZyDmPeErlGsgtK1s8lLxg72g7D_-PFha9E5_lC2tm8,7587
434
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/__init__.py,sha256=yJda-w1nYNxbQw0bEk_eb0FESvj9YmQfyfC5TUk-G6M,198
435
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/internvl_chat.py,sha256=qiwnN-CfqquV90QHhZdPwZ3O792Z2nLG-HVBn7WUUMM,4431
436
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/language.py,sha256=KC9Eu315Z5ehGOGEbj29ih7eq1RN9QLR2N4Zqrl7Kjk,6725
437
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/processor.py,sha256=UkE-qFLRcS3xeEa57rRkCQTyG-e8JiolY7eFyMH8ZsA,14235
438
+ nexaai/mlx_backend/vlm/modeling/models/internvl_chat/vision.py,sha256=IhnusA8AUjHktsNAzITLUE87J3UIlbg0icDjRZSWiyg,9702
439
+ nexaai/mlx_backend/vlm/modeling/models/kimi_vl/__init__.py,sha256=xu3qapXNTsgV_Wiy6KPHlqmJvbnhXRnSJNK-m6Jfj4Y,123
440
+ nexaai/mlx_backend/vlm/modeling/models/kimi_vl/kimi_vl.py,sha256=xVixys0VUa8lkYpMIdUuN7pifzsD_2OYMRb9CEkd2MA,4405
441
+ nexaai/mlx_backend/vlm/modeling/models/kimi_vl/language.py,sha256=zls5RbW1LPLQJD9lviQz3fXaGcb7QyfI8RyKiq1o22o,16768
442
+ nexaai/mlx_backend/vlm/modeling/models/kimi_vl/vision.py,sha256=wk3RXFbLM4Li1czZegvlWj3GuOiNdmVXER3m2xYSupk,18094
443
+ nexaai/mlx_backend/vlm/modeling/models/llama4/__init__.py,sha256=Yg0P88xUaJvvzct3xMJjd2A1dx7JV8Ukg3bBMEBGe9g,122
444
+ nexaai/mlx_backend/vlm/modeling/models/llama4/language.py,sha256=Q_-bmHY8XMxQO4flSGiytYnGH7FI_UabCSwrCKowCyE,12949
445
+ nexaai/mlx_backend/vlm/modeling/models/llama4/llama4.py,sha256=Ok3jH2UiE9afRPhrpQkLTtdilpd1bMQiAIqGqrn3hTA,4392
446
+ nexaai/mlx_backend/vlm/modeling/models/llama4/vision.py,sha256=3PzBb9ynusCg-Zw_81xb0Y1Bcpjk6G0h8Rk090LrKoc,18435
447
+ nexaai/mlx_backend/vlm/modeling/models/llava/__init__.py,sha256=XTbyDs7MRdWKiIjcrpj8jWRX_lWpkUeDUwq8XftMio0,121
448
+ nexaai/mlx_backend/vlm/modeling/models/llava/language.py,sha256=FnuZwfHbDrDMbQKA8n53bHm8Hy3IX39AvLA7tBYQ6U0,7743
449
+ nexaai/mlx_backend/vlm/modeling/models/llava/llava.py,sha256=yfib0AQcyYe7L7smCiGy2BqCIWi3qIjJSEiUgOzGQTg,5285
450
+ nexaai/mlx_backend/vlm/modeling/models/llava/vision.py,sha256=ZV0WvzxGQ1k4esrSTa3yiAwjtOWnT40sjg02mVCoAx8,8520
451
+ nexaai/mlx_backend/vlm/modeling/models/llava_bunny/__init__.py,sha256=9jsgrMKG-lSyB0R6Gpa-mA00kPUztEw3LpGwciJIuyU,147
452
+ nexaai/mlx_backend/vlm/modeling/models/llava_bunny/language.py,sha256=XstwscHuoegRyOqAKWyQBCoP2CkoXDuNRrcLxoOcNcI,7560
453
+ nexaai/mlx_backend/vlm/modeling/models/llava_bunny/llava_bunny.py,sha256=7LR-JxOVp2bGm0glBlWl4PT97U4wOdCb6ReNM5HBecU,8295
454
+ nexaai/mlx_backend/vlm/modeling/models/llava_bunny/vision.py,sha256=JwKWMPp2tig8JHBNc72qiFwUO2hHmV2pNTDDqR62nAo,9703
455
+ nexaai/mlx_backend/vlm/modeling/models/llava_next/__init__.py,sha256=0DqRY9eU4is6YTBnpTaaDw7dHgpb4LshbhiV4u1Tvac,126
456
+ nexaai/mlx_backend/vlm/modeling/models/llava_next/language.py,sha256=JzHDhLohuSe18E0w7vWo0BGZmAQ4PFVoIVq6cl8BTVo,7375
457
+ nexaai/mlx_backend/vlm/modeling/models/llava_next/llava_next.py,sha256=vm7zpnCqqt5NBwmOafPC6FVKMGaadOuyTB-nVlDECIo,5432
458
+ nexaai/mlx_backend/vlm/modeling/models/llava_next/vision.py,sha256=iuHeSO4N-6dXZj2l_Cu06pX8NvuIFxqFGxOR5REVNN4,7926
459
+ nexaai/mlx_backend/vlm/modeling/models/mistral3/__init__.py,sha256=Jcg12HYdW9E8uDHdPz1SS9PTfeinqDqWZPxGTwv7B1c,124
460
+ nexaai/mlx_backend/vlm/modeling/models/mistral3/mistral3.py,sha256=2Ef50Mw9BHvDICU-GSYnXQK1aIYhDo1ygRTGim1NEEg,9414
461
+ nexaai/mlx_backend/vlm/modeling/models/mllama/__init__.py,sha256=-wzqUK3A74dQBift1InXI79l8zfU5WgvjAmAJlAFutg,122
462
+ nexaai/mlx_backend/vlm/modeling/models/mllama/language.py,sha256=tHjeQoziSzY34qoGYZ3jyCTsZD0o-2qf6qi3oG5UPGs,14699
463
+ nexaai/mlx_backend/vlm/modeling/models/mllama/mllama.py,sha256=xPT2-drmM3EgJ649caGzuNU9YYzZwxpr64qGvrqLRbg,5518
464
+ nexaai/mlx_backend/vlm/modeling/models/mllama/vision.py,sha256=Pns7GLeNqX5hJbAsVltUSR5S-C_jv65LkfzeLCbps50,17179
465
+ nexaai/mlx_backend/vlm/modeling/models/molmo/__init__.py,sha256=Ho4yNHWTcZKUNFeePWKf93lm26t8aqbfpmyrGJ3LaTY,121
466
+ nexaai/mlx_backend/vlm/modeling/models/molmo/language.py,sha256=iuNNDGiGA6b5_Eab4tlQ6oY1rNK_OoMQT0V41VMPNIg,7319
467
+ nexaai/mlx_backend/vlm/modeling/models/molmo/molmo.py,sha256=CRo1CgvhpDX979IyddxuO9Q7eVQPOM37ACuGOaKOyEA,4421
468
+ nexaai/mlx_backend/vlm/modeling/models/molmo/vision.py,sha256=ycj7SlrRJ6HLmZ6xs6YQ8Jq3lC-i5gx8BZve36_yjrM,16039
469
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/__init__.py,sha256=KRtd-Xac8BS1Y98wBQnCsno0g2oXAaJTso92KM7C8bc,171
470
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/language.py,sha256=6-peH6hjHZYNjPaqipZ7lR6JZSPq-iR1QRx-3_1Jc10,7381
471
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/multi_modality.py,sha256=PlcagwaquP5o4jY4kwRkoSFdXKhPBl4mWzMOVn5JgIc,12542
472
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/sam.py,sha256=wBVbATFQCYPwj24SacVMYyCMtp_UJMb48hTvw4mSlek,19066
473
+ nexaai/mlx_backend/vlm/modeling/models/multi_modality/vision.py,sha256=j8WUDlAsOdHmQt_JrPE7PsCJ3vH1zwvjkU_kwNd7jo8,17362
474
+ nexaai/mlx_backend/vlm/modeling/models/paligemma/__init__.py,sha256=VY8-bvKoa7eEZtagTdxPiI-Hdib77F4vyic7Y-pVEJk,125
475
+ nexaai/mlx_backend/vlm/modeling/models/paligemma/language.py,sha256=l3WeLMVtEc0CR6cJh0Oq1YWArqZ6lAjeY-iwUDYd_vs,9330
476
+ nexaai/mlx_backend/vlm/modeling/models/paligemma/paligemma.py,sha256=TdqS_uthWJvmD03RHXp8tD44vrGhaL1kEMgSvX2_7FM,5554
477
+ nexaai/mlx_backend/vlm/modeling/models/paligemma/vision.py,sha256=HTHbpel48XGcgjLyiOH406vv2LCZGKcs5gIfgC1ayEU,7756
478
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/__init__.py,sha256=_09_A3rCKPgiLoh5nNvZ9q1Y7gwaJrj3yYG7FxsqzPQ,122
479
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/language.py,sha256=Nmye5NBz8rR5tPGPBKGmLhWGYlVRxGfFyAA5O-siBMs,384
480
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/phi3_v.py,sha256=F_JzvFCGVdFmlgLDbZAszdL_LqfOep5x2P2UzAZfmQI,7754
481
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/su_rope.py,sha256=8GuFFbTnfTAvnMB3PyDtuausPf7NCyTddYPHtcBrQeU,3365
482
+ nexaai/mlx_backend/vlm/modeling/models/phi3_v/vision.py,sha256=i69DehvOYyBgFrCmbF0TG2YSrIHoRDvTG9hzrraFtZM,10845
483
+ nexaai/mlx_backend/vlm/modeling/models/pixtral/__init__.py,sha256=fMUWctNaCVUXn94PAWOy3EAZCO1nPWETW4tQUTXIukA,123
484
+ nexaai/mlx_backend/vlm/modeling/models/pixtral/language.py,sha256=TguNVrGerRI3yuuoXuJIM1NoRWdDcBYCD7HwblCvVHk,7320
485
+ nexaai/mlx_backend/vlm/modeling/models/pixtral/pixtral.py,sha256=p1V0kT4Jjim01qv8EOrxeFR10QxKqAgwMxgRS5mswU8,5840
486
+ nexaai/mlx_backend/vlm/modeling/models/pixtral/vision.py,sha256=HOqbwRTmedGBu7XLkcDjcgrL5VCZYHMVCdGrZGjV1zo,10618
487
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/__init__.py,sha256=Gh9nT0rpEOQOGzNK3Cd80tt3_2mt9pGGoiSdmt34B1c,116
488
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/config.py,sha256=aKtTJhN5M_KaHf3QrOoACf08kJpWZh3IELv1YjHNHX4,3137
489
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/language.py,sha256=OeUoAfIg7dNB43tzRTLk3brdPmYFwaf_uUH4a-VwIzo,19189
490
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/qwen2_5_vl.py,sha256=xLbbNujUc1pq9nSQz6Y6IG0KzTBqMB2pju8SFR_cwp0,5893
491
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_5_vl/vision.py,sha256=8z0aZ5vpCIBfelBZuNsuGhHDuiSWNx460zQZUtaAnMo,14612
492
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/__init__.py,sha256=P1WUzaUZF27dXhvUTunDLt5Dz62SzWWYgdbTGAv5etw,114
493
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/config.py,sha256=yPnWEyLruqmakMVGsFpizd_2rFOGwyscAmC6jW6ZtgI,2940
494
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/language.py,sha256=OeUoAfIg7dNB43tzRTLk3brdPmYFwaf_uUH4a-VwIzo,19189
495
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/qwen2_vl.py,sha256=YysRg1PszpZdsH7hywqN2pIMZAbU1P636KZoSJCNri8,5740
496
+ nexaai/mlx_backend/vlm/modeling/models/qwen2_vl/vision.py,sha256=rcneYZYwP5fx3p8xxXEDGvnWAMIn8DXenqBPLBjmVcI,10555
497
+ nexaai/mlx_backend/vlm/modeling/models/smolvlm/__init__.py,sha256=nvaihrxZuqymlQZbPCSTKBoxzJYx5fg3U1aM5eXUutw,123
498
+ nexaai/mlx_backend/vlm/modeling/models/smolvlm/smolvlm.py,sha256=i-B_d0AxninzMWSHx-kc2X5nwp-0bmKnibjS7nXeKGA,2363
499
+ nexaai/mlx_backend/vlm/modeling/trainer/__init__.py,sha256=rGAttw-lYQ2HUXVeuDDprKq8ERq3WIIFnRsA9tYwAjo,252
500
+ nexaai/mlx_backend/vlm/modeling/trainer/lora.py,sha256=tGjvenjEQ8_1Az8Nz3smz5Mgvu20wOmBw8857egiWPM,2134
501
+ nexaai/mlx_backend/vlm/modeling/trainer/trainer.py,sha256=h16SaHt76JzFruXuidgXDx7_2evx4L0SecvzqLmhyZw,9081
502
+ nexaai/mlx_backend/vlm/modeling/trainer/utils.py,sha256=29oHf_7946YeJKP_-Dt-NPeN4xJq8Fj7Yv4jZKO9RWA,4909
503
+ nexaai/rerank_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
504
+ nexaai/rerank_impl/mlx_rerank_impl.py,sha256=I-jumShLm1jAmKunRcDNUU4yjfWLoWClFMFONd88-Es,3177
505
+ nexaai/rerank_impl/pybind_rerank_impl.py,sha256=FIIN96zCxXopqpqZdBd7OjuqqviFBY8HMZek1bCeoJw,1447
506
+ nexaai/tts_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
507
+ nexaai/tts_impl/mlx_tts_impl.py,sha256=D71IFtIYWzrVdBS2y5vDBWjZ4ZAzRRjFHC0KO0pA5BU,3035
508
+ nexaai/tts_impl/pybind_tts_impl.py,sha256=Be5QiXzDz6h1LTIQzUBd0ZyBs7rUpNA-pULCXFtt2Is,1378
509
+ nexaai/utils/avatar_fetcher.py,sha256=bWy8ujgbOiTHFCjFxTwkn3uXbZ84PgEGUkXkR3MH4bI,3821
510
+ nexaai/utils/decode.py,sha256=61n4Zf6c5QLyqGoctEitlI9BX3tPlP2a5aaKNHbw3T4,404
511
+ nexaai/utils/model_manager.py,sha256=1WHWRGIDZy4224yp2aqdnNwTt5dUYwsRwhpQseZhF74,48464
512
+ nexaai/utils/progress_tracker.py,sha256=YO24mqqxiUseb1hd9ehLS2dD1t_4lYej_JWi76H7VnI,14374
513
+ nexaai/vlm_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
514
+ nexaai/vlm_impl/mlx_vlm_impl.py,sha256=4lFZ8ZQnYZ-Uoh9j2Fh2UzpdpMAy_v1Jz-lrqX33XcI,8947
515
+ nexaai/vlm_impl/pybind_vlm_impl.py,sha256=C-3fa0AIypI33OAGuGfVxo1V7zN0wjQMgruKlDIlW4Q,8333
516
+ nexaai-1.0.4rc10.dist-info/METADATA,sha256=sdKEn7EnUMeF9HS3wD5Dd0op_IsP6jQGrEPUk1vrPxM,952
517
+ nexaai-1.0.4rc10.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
518
+ nexaai-1.0.4rc10.dist-info/top_level.txt,sha256=LRE2YERlrZk2vfuygnSzsEeqSknnZbz3Z1MHyNmBU4w,7
519
+ nexaai-1.0.4rc10.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ nexaai