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