nexaai 0.0.8.5__tar.gz → 0.0.8.6.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nexaai might be problematic. Click here for more details.
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/PKG-INFO +47 -7
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/README.md +46 -6
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/build-info.cpp +1 -1
- nexaai-0.0.8.6.1/examples/local_file_organization/LICENSE +21 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/README.md +214 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/data_processing_common.py +204 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/local_file_organization/file_utils.py +61 -61
- nexaai-0.0.8.6.1/examples/local_file_organization/image_data_processing.py +182 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/main.py +337 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/output_filter.py +21 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/requirements.txt +10 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/sample_data/1.xlsx +0 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/sample_data/c8fed35720671596882b0c6a2ad9586d.gif +0 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/sample_data/go_bruin.pptx +0 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/sample_data/sub_dir1/1111_63.csv +11 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/sample_data/text_files/ccc.md +5 -0
- nexaai-0.0.8.6.1/examples/local_file_organization/text_data_processing.py +181 -0
- nexaai-0.0.8.6.1/nexa/__init__.py +1 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/cli/entry.py +2 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/constants.py +3 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/general.py +127 -26
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/nexa_inference_image.py +46 -9
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/nexa_inference_text.py +8 -8
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/nexa_inference_vlm.py +3 -3
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/nexa_inference_voice.py +4 -9
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/sd/_internals_diffusion.py +1 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/sd/_logger_diffusion.py +2 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/sd/stable_diffusion.py +5 -9
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/sd/stable_diffusion_cpp.py +1 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/nexa_inference_image.py +1 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/nexa_inference_text.py +1 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/nexa_inference_tts.py +1 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/nexa_inference_voice.py +1 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/pyproject.toml +1 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/scripts/releases-to-pep-503.sh +1 -1
- nexaai-0.0.8.5/examples/local_file_organization/README.md +0 -195
- nexaai-0.0.8.5/examples/local_file_organization/data_processing.py +0 -263
- nexaai-0.0.8.5/examples/local_file_organization/main.py +0 -99
- nexaai-0.0.8.5/examples/local_file_organization/requirements.txt +0 -4
- nexaai-0.0.8.5/examples/local_file_organization/sample_data/text_files/dsflsdflj.txt +0 -1
- nexaai-0.0.8.5/nexa/__init__.py +0 -1
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/.gitmodules +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/CLI.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/LICENSE +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/MANIFEST.in +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/SERVER.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/assets/banner.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.clang-tidy +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/cloud-v-pipeline +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/full-cuda.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/full-rocm.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/full.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-cli-cann.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-cli-cuda.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-cli-intel.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-cli-rocm.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-cli-vulkan.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-cli.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-cpp-cuda.srpm.spec +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-cpp.srpm.spec +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-server-cuda.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-server-intel.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-server-rocm.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-server-vulkan.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/llama-server.Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/nix/apps.nix +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/nix/devshells.nix +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/nix/docker.nix +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/nix/jetson-support.nix +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/nix/nixpkgs-instances.nix +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/nix/package.nix +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/nix/scope.nix +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/nix/sif.nix +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.devops/tools.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.dockerignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.ecrc +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.editorconfig +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.flake8 +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.git +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/01-bug-low.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/02-bug-medium.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/03-bug-high.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/04-bug-critical.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/05-enhancement.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/06-research.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/07-refactor.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/labeler.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/pull_request_template.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/bench.yml.disabled +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/build.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/close-issue.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/docker.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/editorconfig.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/gguf-publish.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/labeler.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/nix-ci-aarch64.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/nix-ci.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/nix-flake-update.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/nix-publish-flake.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/python-check-requirements.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/python-lint.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/python-type-check.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.github/workflows/server.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.gitmodules +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/.pre-commit-config.yaml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/AUTHORS +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/CMakePresets.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/CONTRIBUTING.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/LICENSE +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/Makefile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/Package.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/SECURITY.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ci/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ci/run.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/cmake/arm64-windows-llvm.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/cmake/arm64-windows-msvc.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/cmake/build-info.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/cmake/git-vars.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/cmake/llama-config.cmake.in +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/cmake/llama.pc.in +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/base64.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/build-info.cpp.in +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/cmake/build-info-gen-cpp.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/common.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/common.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/console.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/console.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/grammar-parser.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/grammar-parser.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/json-schema-to-grammar.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/json-schema-to-grammar.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/json.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/log.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/ngram-cache.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/ngram-cache.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/sampling.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/sampling.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/stb_image.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/train.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/common/train.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/convert_hf_to_gguf.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/convert_hf_to_gguf_update.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/convert_llama_ggml_to_gguf.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/convert_lora_to_gguf.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/android.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/backend/BLIS.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/backend/CANN.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/backend/SYCL.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/build.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/development/HOWTO-add-model.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/development/debugging-tests.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/development/llama-star/idea-arch.key +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/development/llama-star/idea-arch.pdf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/development/token_generation_performance_tips.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/docker.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/docs/install.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/Miku.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/baby-llama/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/baby-llama/baby-llama.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/base-translate.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched/batched.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched-bench/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched-bench/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched-bench/batched-bench.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched.swift/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched.swift/Makefile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched.swift/Package.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched.swift/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/batched.swift/Sources/main.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/benchmark/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/benchmark/benchmark-matmult.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/chat-13B.bat +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/chat-13B.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/chat-persistent.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/chat-vicuna.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/chat.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/convert-llama2c-to-ggml/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/convert-llama2c-to-ggml/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/convert-llama2c-to-ggml/convert-llama2c-to-ggml.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/convert_legacy_llama.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/cvector-generator/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/cvector-generator/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/cvector-generator/completions.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/cvector-generator/cvector-generator.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/cvector-generator/mean.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/cvector-generator/negative.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/cvector-generator/pca.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/cvector-generator/positive.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/deprecation-warning/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/deprecation-warning/deprecation-warning.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/embedding/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/embedding/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/embedding/embedding.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/eval-callback/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/eval-callback/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/eval-callback/eval-callback.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/export-lora/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/export-lora/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/export-lora/export-lora.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gbnf-validator/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gbnf-validator/gbnf-validator.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf/gguf.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/rotate-bits/package.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/rotate-bits/rotate-bits.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/sha1/package.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/sha1/sha1.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/sha1/sha1.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/sha256/package.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/sha256/sha256.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/sha256/sha256.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/xxhash/clib.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/xxhash/xxhash.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/deps/xxhash/xxhash.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-hash/gguf-hash.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-split/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-split/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-split/gguf-split.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gguf-split/tests.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gritlm/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gritlm/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/gritlm/gritlm.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/imatrix/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/imatrix/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/imatrix/imatrix.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/infill/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/infill/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/infill/infill.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/jeopardy/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/jeopardy/graph.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/jeopardy/jeopardy.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/jeopardy/qasheet.csv +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/jeopardy/questions.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/json_schema_pydantic_example.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/json_schema_to_grammar.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama-bench/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama-bench/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama-bench/llama-bench.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/build.gradle.kts +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/proguard-rules.pro +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/AndroidManifest.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/Downloadable.kt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/MainActivity.kt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/MainViewModel.kt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/ui/theme/Color.kt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/ui/theme/Theme.kt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/java/com/example/llama/ui/theme/Type.kt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/drawable/ic_launcher_background.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/drawable/ic_launcher_foreground.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-anydpi/ic_launcher.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/values/colors.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/values/strings.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/values/themes.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/xml/backup_rules.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/app/src/main/res/xml/data_extraction_rules.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/build.gradle.kts +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/gradle/wrapper/gradle-wrapper.jar +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/gradle/wrapper/gradle-wrapper.properties +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/gradle.properties +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/gradlew +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/build.gradle.kts +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/consumer-rules.pro +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/proguard-rules.pro +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/src/androidTest/java/android/llama/cpp/ExampleInstrumentedTest.kt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/src/main/AndroidManifest.xml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/src/main/cpp/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/src/main/cpp/llama-android.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/src/main/java/android/llama/cpp/LLamaAndroid.kt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/llama/src/test/java/android/llama/cpp/ExampleUnitTest.kt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.android/settings.gradle.kts +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.cpp.swift/LibLlama.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/Assets.xcassets/Contents.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/Models/LlamaState.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/Resources/models/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/UI/ContentView.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/UI/DownloadButton.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/UI/InputButton.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/UI/LoadCustomButton.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui/llama_swiftuiApp.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui.xcodeproj/project.pbxproj +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.swiftui/llama.swiftui.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llama.vim +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/MobileVLM-README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/README-minicpmv2.5.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/README-minicpmv2.6.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/android/adb_run.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/android/build_64.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/clip.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/clip.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/convert_image_encoder_to_gguf.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/llava-cli.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/llava.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/llava.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/llava_surgery.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/llava_surgery_v2.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/minicpmv-cli.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/minicpmv-convert-image-encoder-to-gguf.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/minicpmv-surgery.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llava/requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/llm.vim +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/lookahead/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/lookahead/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/lookahead/lookahead.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/lookup/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/lookup/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/lookup/lookup-create.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/lookup/lookup-merge.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/lookup/lookup-stats.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/lookup/lookup.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/main/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/main/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/main/main.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/main-cmake-pkg/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/main-cmake-pkg/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/main-cmake-pkg/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/parallel/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/parallel/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/parallel/parallel.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/passkey/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/passkey/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/passkey/passkey.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/perplexity/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/perplexity/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/perplexity/perplexity.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/pydantic_models_to_grammar.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/pydantic_models_to_grammar_examples.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/quantize/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/quantize/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/quantize/quantize.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/quantize/tests.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/quantize-stats/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/quantize-stats/quantize-stats.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/reason-act.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/regex_to_grammar.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/retrieval/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/retrieval/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/retrieval/retrieval.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/rpc/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/rpc/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/rpc/rpc-server.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/save-load-state/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/save-load-state/save-load-state.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/bench/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/bench/bench.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/bench/prometheus.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/bench/requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/bench/script.js +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/chat-llama2.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/chat.mjs +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/chat.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/deps.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/httplib.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/colorthemes.css +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/completion.js +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/favicon.ico +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/index-new.html +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/index.html +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/index.js +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/json-schema-to-grammar.mjs +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/prompt-formats.js +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/style.css +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/system-prompts.js +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/theme-beeninorder.css +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/theme-ketivah.css +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/theme-mangotango.css +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/theme-playground.css +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/theme-polarnight.css +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public/theme-snowstorm.css +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public_simplechat/datautils.mjs +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public_simplechat/index.html +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public_simplechat/readme.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public_simplechat/simplechat.css +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public_simplechat/simplechat.js +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public_simplechat/simplechat_screens.webp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/public_simplechat/ui.mjs +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/server.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/embeddings.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/environment.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/issues.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/lora.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/parallel.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/passkey.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/results.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/security.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/server.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/slotsave.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/steps/steps.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/features/wrong_usages.feature +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/tests/tests.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/buttons-top/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/buttons-top/buttons_top.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/buttons-top/favicon.ico +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/buttons-top/index.html +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/wild/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/wild/favicon.ico +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/wild/index.html +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/wild/llama_cpp.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/wild/llamapattern.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/themes/wild/wild.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server/utils.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server-llama2-13B.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/server_embd.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/simple/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/simple/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/simple/simple.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/speculative/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/speculative/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/speculative/speculative.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/sycl/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/sycl/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/sycl/build.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/sycl/ls-sycl-device.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/sycl/run-llama2.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/sycl/win-build-sycl.bat +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/sycl/win-run-llama2.bat +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/tokenize/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/tokenize/tokenize.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/examples/ts-type-to-grammar.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/flake.lock +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/flake.nix +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/cmake/FindSIMD.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-alloc.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-backend.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-blas.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-cann.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-cuda.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-kompute.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-metal.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-rpc.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-sycl.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml-vulkan.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/include/ggml.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-aarch64.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-aarch64.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-alloc.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-backend-impl.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-backend.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-blas.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/.clang-format +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/Doxyfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/acl_tensor.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/acl_tensor.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/aclnn_ops.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/aclnn_ops.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/common.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/ascendc_kernels.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/dup.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/get_row_f16.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/get_row_f32.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/get_row_q4_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/get_row_q8_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/quantize_f16_q8_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/quantize_f32_q8_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann/kernels/quantize_float_to_q4_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cann.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-common.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/acc.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/acc.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/arange.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/arange.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/argsort.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/argsort.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/binbcast.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/binbcast.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/clamp.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/clamp.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/common.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/concat.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/concat.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/conv-transpose-1d.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/conv-transpose-1d.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/convert.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/convert.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/cpy.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/cpy.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/cross-entropy-loss.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/cross-entropy-loss.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/dequantize.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/diagmask.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/diagmask.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/dmmv.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/dmmv.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-common.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-tile-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-tile-f16.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-tile-f32.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-tile-f32.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-vec-f16.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-vec-f32.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn-wmma-f16.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/fattn.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/getrows.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/getrows.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/im2col.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/im2col.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mma.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mmq.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mmq.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mmvq.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/mmvq.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/norm.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/norm.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/pad.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/pad.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/pool2d.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/pool2d.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/quantize.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/quantize.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/rope.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/rope.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/scale.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/scale.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/softmax.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/softmax.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/sumrows.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/sumrows.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs256-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs256-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqfloat-cpb16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqfloat-cpb32.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb32.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb8.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/generate_cu_files.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq1_s.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq2_s.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq2_xs.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq2_xxs.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq3_s.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq3_xxs.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq4_nl.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-iq4_xs.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q2_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q3_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q4_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q5_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q6_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/template-instances/mmq-instance-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/tsembd.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/tsembd.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/unary.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/unary.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/upscale.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/upscale.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/vecdotq.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/vendors/cuda.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/vendors/hip.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda/vendors/musa.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-cuda.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-impl.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-kompute.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-metal.m +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-metal.metal +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-quants.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-quants.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-rpc.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/backend.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/common.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/common.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/concat.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/concat.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/conv.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/conv.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/convert.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/convert.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/dequantize.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/dmmv.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/dmmv.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/dpct/helper.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/gemm.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/im2col.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/im2col.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/mmq.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/mmq.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/mmvq.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/mmvq.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/norm.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/norm.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/presets.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/rope.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/rope.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/softmax.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/softmax.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/tsembd.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/tsembd.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl/vecdotq.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-sycl.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml-vulkan.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/ggml.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/common.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_add.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_addrow.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_cpy_f16_f16.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_cpy_f16_f32.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_cpy_f32_f16.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_cpy_f32_f32.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_diagmask.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_gelu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_f16.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_f32.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_q4_0.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_q4_1.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_getrows_q6_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_f16.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_mat_f32.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_q4_0.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_q4_1.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_q6_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mat_q8_0.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mv_q_n.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_mul_mv_q_n_pre.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_norm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_relu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_rmsnorm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_rope_f16.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_rope_f32.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_scale.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_scale_8.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_silu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/op_softmax.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/kompute-shaders/rope_common.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/llamafile/sgemm.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/llamafile/sgemm.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/acc.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/add.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/argsort.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/clamp.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/concat.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/copy.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/cos.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_f32.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_funcs.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_iq4_nl.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q2_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q3_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q4_0.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q4_1.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q4_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q5_0.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q5_1.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q5_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q6_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/dequant_q8_0.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/diag_mask_inf.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/div.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/gelu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/gelu_quick.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/generic_binary_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/generic_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/generic_unary_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/get_rows.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/get_rows_quant.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/group_norm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/im2col.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/leaky_relu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_split_k_reduce.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_base.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_nc.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_p021.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q2_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q3_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q4_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q5_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mat_vec_q6_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/mul_mm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/norm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/pad.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/relu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/repeat.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/rms_norm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/rope_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/rope_neox.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/rope_norm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/scale.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/silu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/sin.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/soft_max.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/square.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/sum_rows.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/tanh.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/timestep_embedding.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/types.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/upscale.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/ggml_llama/src/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/LICENSE +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/examples/reader.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/examples/writer.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/constants.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/gguf.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/gguf_reader.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/gguf_writer.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/lazy.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/metadata.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/py.typed +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/quants.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/tensor_mapping.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/utility.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/gguf/vocab.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/pyproject.toml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/scripts/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/scripts/gguf_convert_endian.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/scripts/gguf_dump.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/scripts/gguf_hash.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/scripts/gguf_new_metadata.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/scripts/gguf_set_metadata.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/tests/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/tests/test_metadata.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/gguf-py/tests/test_quants.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/grammars/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/grammars/arithmetic.gbnf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/grammars/c.gbnf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/grammars/chess.gbnf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/grammars/japanese.gbnf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/grammars/json.gbnf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/grammars/json_arr.gbnf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/grammars/list.gbnf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/include/llama.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/media/llama-leader.jpeg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/media/llama0-banner.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/media/llama0-logo.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/media/llama1-banner.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/media/llama1-logo.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/media/matmul.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/media/matmul.svg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/.editorconfig +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-aquila.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-baichuan.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-bert-bge.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-bert-bge.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-bert-bge.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-command-r.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-command-r.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-command-r.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-deepseek-coder.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-deepseek-coder.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-deepseek-coder.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-deepseek-llm.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-deepseek-llm.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-deepseek-llm.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-falcon.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-falcon.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-falcon.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-gpt-2.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-gpt-2.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-gpt-2.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-gpt-neox.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-llama-bpe.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-llama-bpe.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-llama-bpe.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-llama-spm.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-llama-spm.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-llama-spm.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-mpt.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-mpt.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-mpt.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-phi-3.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-phi-3.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-phi-3.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-qwen2.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-qwen2.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-qwen2.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-refact.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-refact.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-refact.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-starcoder.gguf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-starcoder.gguf.inp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/models/ggml-vocab-starcoder.gguf.out +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/mypy.ini +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/pocs/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/pocs/vdot/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/pocs/vdot/q8dot.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/pocs/vdot/vdot.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/poetry.lock +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/LLM-questions.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/alpaca.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/assistant.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/chat-with-baichuan.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/chat-with-bob.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/chat-with-qwen.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/chat-with-vicuna-v0.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/chat-with-vicuna-v1.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/chat.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/dan-modified.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/dan.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/mnemonics.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/parallel-questions.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/prompts/reason-act.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/pyproject.toml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/pyrightconfig.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements/requirements-all.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements/requirements-compare-llama-bench.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements/requirements-convert_hf_to_gguf.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements/requirements-convert_hf_to_gguf_update.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements/requirements-convert_legacy_llama.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements/requirements-convert_llama_ggml_to_gguf.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements/requirements-convert_lora_to_gguf.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements/requirements-pydantic.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements/requirements-test-tokenizer-random.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/build-info.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/check-requirements.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/ci-run.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/compare-commits.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/compare-llama-bench.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/debug-test.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/gen-authors.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/gen-unicode-data.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/get-flags.mk +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/get-hellaswag.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/get-pg.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/get-wikitext-103.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/get-wikitext-2.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/get-winogrande.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/hf.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/install-oneapi.bat +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/pod-llama.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/qnt-all.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/run-all-perf.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/run-all-ppl.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/run-with-preset.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/server-llm.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/sync-ggml-am.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/sync-ggml.last +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/sync-ggml.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/verify-checksum-models.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/scripts/xxd.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/spm-headers/ggml-alloc.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/spm-headers/ggml-backend.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/spm-headers/ggml-metal.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/spm-headers/ggml.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/spm-headers/llama.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/llama-grammar.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/llama-grammar.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/llama-impl.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/llama-sampling.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/llama-sampling.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/llama-vocab.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/llama-vocab.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/llama.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/unicode-data.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/unicode-data.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/unicode.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/src/unicode.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/get-model.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/get-model.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/run-json-schema-to-grammar.mjs +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-autorelease.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-backend-ops.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-c.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-chat-template.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-double-float.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-grad0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-grammar-integration.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-grammar-parser.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-json-schema-to-grammar.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-llama-grammar.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-lora-conversion-inference.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-model-load-cancel.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-opt.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-quantize-fns.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-quantize-perf.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-rope.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-sampling.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-tokenizer-0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-tokenizer-0.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-tokenizer-0.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-tokenizer-1-bpe.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-tokenizer-1-spm.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/llama.cpp/tests/test-tokenizer-random.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/.clang-format +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/.dockerignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/.git +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/.github/workflows/build.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/.gitmodules +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/Dockerfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/LICENSE +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/a lovely cat.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/cat_with_sd_cpp_20184.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/cat_with_sd_cpp_42.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/control.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/control_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/control_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/f16.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/f32.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q2_k.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q3_k.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q4_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q4_k.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q8_0 with lora.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/flux/flux1-dev-q8_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/flux/flux1-schnell-q8_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/img2img_output.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/lenna_woman/lenna.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/newton_man/newton_0.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/newton_man/newton_1.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/newton_man/newton_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/newton_man/newton_3.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/scarletthead_woman/scarlett_0.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/scarletthead_woman/scarlett_1.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/scarletthead_woman/scarlett_2.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/scarletthead_woman/scarlett_3.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_1.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_2.jpeg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_3.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_4.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_5.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/photomaker_examples/yangmi_woman/yangmi_6.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/q4_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/q4_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/q5_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/q5_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/q8_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/sycl_sd3_output.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/with_lcm.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/assets/without_lcm.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/clip.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/common.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/conditioner.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/control.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/denoiser.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/diffusion_model.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/docs/docker.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/docs/esrgan.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/docs/flux.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/docs/hipBLAS_on_Windows.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/docs/lcm.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/docs/lora.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/docs/photo_maker.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/docs/quantization_and_gguf.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/docs/taesd.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/esrgan.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/examples/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/examples/cli/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/examples/cli/main.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/flux.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/format-code.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/.editorconfig +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/.git +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/.github/workflows/ci.yml +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/AUTHORS +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/LICENSE +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/Package.swift +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/build.zig +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/ci/run.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/cmake/BuildTypes.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/cmake/FindSIMD.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/cmake/GitVars.cmake +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/docs/gguf.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo-inverted.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo-inverted.svg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo-transparent-inverted.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo-transparent.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/docs/logo/ggml-logo.svg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/common-ggml.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/common-ggml.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/common.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/common.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/dr_wav.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/convert-cerebras-to-ggml.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/convert-ckpt-to-ggml.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/convert-h5-to-ggml.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/download-ggml-model.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/download-model.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-alloc.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-backend.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-batched.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-ctx.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/main-sched.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-2/quantize.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/convert-h5-to-ggml.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/download-ggml-model.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/download-model.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/main.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/gpt-j/quantize.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/magika/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/magika/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/magika/convert.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/magika/main.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-common.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-common.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-eval.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-train-cnn.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-train-fc.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/mnist-train.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/web/.gitignore +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/mnist/web/index.html +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/dolly-v2.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-2-chinese.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-2.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-j.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-neox-japanese.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/gpt-neox.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/polyglot-ko.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/replit.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/starcoder.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/test-cases.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/tokenize_huggingface.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/prompts/whisper.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/api.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/example_add_quant.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/example_test_all_quants.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/__init__.pyi +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/cffi.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/ffi/__init__.pyi +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/ggml/utils.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/regenerate.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/stubs.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/python/test_tensor.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/sam/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/sam/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/sam/convert-pth-to-ggml.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/sam/example.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/sam/main.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/simple/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/simple/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/simple/simple-backend.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/simple/simple-ctx.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/stb_image.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/stb_image_write.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/convert-yolov3-tiny.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/coco.names +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/100_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/101_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/102_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/103_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/104_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/105_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/106_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/107_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/108_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/109_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/110_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/111_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/112_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/113_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/114_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/115_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/116_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/117_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/118_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/119_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/120_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/121_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/122_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/123_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/124_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/125_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/126_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/32_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/33_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/34_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/35_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/36_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/37_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/38_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/39_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/40_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/41_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/42_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/43_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/44_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/45_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/46_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/47_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/48_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/49_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/50_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/51_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/52_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/53_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/54_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/55_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/56_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/57_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/58_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/59_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/60_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/61_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/62_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/63_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/64_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/65_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/66_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/67_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/68_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/69_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/70_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/71_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/72_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/73_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/74_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/75_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/76_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/77_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/78_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/79_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/80_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/81_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/82_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/83_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/84_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/85_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/86_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/87_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/88_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/89_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/90_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/91_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/92_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/93_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/94_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/95_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/96_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/97_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/98_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_0.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_1.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_2.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_3.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_4.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_5.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_6.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/data/labels/99_7.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/yolo-image.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/yolo-image.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/examples/yolo/yolov3-tiny.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/ggml/include/ggml-cann.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/ggml/src/ggml-aarch64.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/ggml/src/ggml-aarch64.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/ggml/src/ggml-cann.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/ggml.pc.in +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-alloc.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-backend.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-blas.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-cann.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-cuda.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-kompute.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-metal.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-rpc.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-sycl.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml-vulkan.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/include/ggml.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/scripts/gen-authors.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/scripts/sync-llama-am.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/scripts/sync-llama.last +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/scripts/sync-llama.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/scripts/sync-whisper-am.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/scripts/sync-whisper.last +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/scripts/sync-whisper.sh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/spm-headers/ggml-alloc.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/spm-headers/ggml-backend.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/spm-headers/ggml-metal.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/spm-headers/ggml.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/spm-headers/module.modulemap +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-aarch64.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-aarch64.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-alloc.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-backend-impl.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-backend.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-blas.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/Doxyfile +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/acl_tensor.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/acl_tensor.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/aclnn_ops.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/aclnn_ops.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/common.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/ascendc_kernels.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/dup.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/get_row_f16.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/get_row_f32.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/get_row_q4_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/get_row_q8_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/quantize_f16_q8_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/quantize_f32_q8_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann/kernels/quantize_float_to_q4_0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cann.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-common.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/acc.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/acc.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/arange.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/arange.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/argsort.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/argsort.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/binbcast.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/binbcast.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/clamp.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/clamp.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/common.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/concat.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/concat.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/conv-transpose-1d.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/conv-transpose-1d.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/convert.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/convert.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/cpy.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/cpy.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/cross-entropy-loss.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/cross-entropy-loss.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/dequantize.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/diagmask.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/diagmask.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/dmmv.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/dmmv.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-common.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-tile-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-tile-f16.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-tile-f32.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-tile-f32.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-vec-f16.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-vec-f32.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn-wmma-f16.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/fattn.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/getrows.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/getrows.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/im2col.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/im2col.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mma.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mmq.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mmq.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mmvq.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/mmvq.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/norm.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/norm.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/pad.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/pad.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/pool2d.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/pool2d.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/quantize.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/quantize.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/rope.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/rope.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/scale.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/scale.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/softmax.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/softmax.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/sumrows.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/sumrows.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q4_1-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q5_1-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs128-q8_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs256-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f16-instance-hs64-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q4_1-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q5_1-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs128-q8_0-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs256-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-f16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-vec-f32-instance-hs64-f16-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqfloat-cpb16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqfloat-cpb32.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb16.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb32.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/fattn-wmma-f16-instance-kqhalf-cpb8.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/generate_cu_files.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq1_s.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_s.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xs.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq2_xxs.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_s.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq3_xxs.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_nl.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-iq4_xs.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q2_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q3_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q4_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_1.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q5_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q6_k.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/template-instances/mmq-instance-q8_0.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/tsembd.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/tsembd.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/unary.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/unary.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/upscale.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/upscale.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/vecdotq.cuh +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/vendors/cuda.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/vendors/hip.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda/vendors/musa.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-cuda.cu +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-impl.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-kompute.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-metal.m +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-metal.metal +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-quants.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-quants.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-rpc.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/backend.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/common.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/common.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/concat.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/concat.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/conv.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/conv.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/convert.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/convert.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/dequantize.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/dmmv.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/dmmv.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/dpct/helper.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/gemm.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/im2col.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/im2col.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/mmq.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/mmq.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/mmvq.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/mmvq.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/norm.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/norm.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/presets.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/rope.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/rope.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/softmax.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/softmax.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/tsembd.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/tsembd.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl/vecdotq.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-sycl.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml-vulkan.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/ggml.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/acc.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/add.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/argsort.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/clamp.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/concat.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/copy.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/cos.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_f32.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_funcs.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_iq4_nl.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q2_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q3_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q4_0.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q4_1.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q4_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q5_0.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q5_1.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q5_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q6_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/dequant_q8_0.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/diag_mask_inf.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/div.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/gelu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/gelu_quick.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/generic_binary_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/generic_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/generic_unary_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/get_rows.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/get_rows_quant.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/group_norm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/im2col.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/leaky_relu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_split_k_reduce.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_base.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_nc.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_p021.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q2_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q3_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q4_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q5_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mat_vec_q6_k.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/mul_mm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/norm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/pad.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/relu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/repeat.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/rms_norm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/rope_head.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/rope_neox.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/rope_norm.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/scale.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/silu.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/sin.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/soft_max.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/square.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/sum_rows.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/tanh.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/timestep_embedding.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/types.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/upscale.comp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/src/vulkan-shaders/vulkan-shaders-gen.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-arange.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-backend-buffer.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-backend-ops.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-blas0.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-cont.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-conv-transpose-1d.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-conv-transpose.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-conv1d.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-conv2d.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-customop.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-dup.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-grad0.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-mul-mat.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-mul-mat0.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-mul-mat1.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-mul-mat2.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-opt.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-pool.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-quantize-fns.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-quantize-perf.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-rel-pos.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-svd0.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-timestep_embedding.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-vec0.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-vec1.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test-vec2.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test0.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test0.zig +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test1.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test1.zig +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test2.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test2.zig +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test3.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml/tests/test3.zig +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/ggml_extend.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/gits_noise.inl +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/lora.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/mmdit.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/model.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/model.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/pmid.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/preprocessing.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/rng.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/rng_philox.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/stable-diffusion.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/stable-diffusion.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/t5.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/tae.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/.clang-format +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/CMakeLists.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/LICENSE.darts_clone.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/darts.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/json.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/miniz.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/stb_image.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/stb_image_resize.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/stb_image_write.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/zip.c +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/thirdparty/zip.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/unet.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/upscaler.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/util.cpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/util.h +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/vae.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/dependency/stable-diffusion.cpp/vocab.hpp +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/docs/.media/error.jpeg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/docs/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/bark_requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/bark_voice_out/app.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/bark_voice_out/utils/gen_avatar.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/bark_voice_out/utils/gen_response.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/bark_voice_out/utils/initialize.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/bark_voice_out/utils/transcribe.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/nexalogo.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/openai_requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/openai_voice_out/app.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/openai_voice_out/utils/gen_avatar.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/openai_voice_out/utils/gen_response.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/openai_voice_out/utils/initialize.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/ai_soulmate/openai_voice_out/utils/transcribe.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/Readme.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/app.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/example_output.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/avatar.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/gen_response.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/initialize.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/json_cleaner.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/json_cleaner_update.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/previous_calls.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/schemas.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/state_manager.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/transcribe.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/validate_json.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/utils/victim_json_template_flat.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/victim_json_template.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/disaster_assistant/victim_json_template_flat.json +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/financial-advisor/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/financial-advisor/app.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/financial-advisor/assets/fake_bank_statements/bank_statement_feb.pdf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/financial-advisor/assets/fake_bank_statements/bank_statement_mar.pdf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/financial-advisor/assets/fake_bank_statements/bank_tatement_jan.pdf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/financial-advisor/requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/financial-advisor/utils/financial_analyzer.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/local_file_organization/sample_data/12222_777.docx +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/local_file_organization/sample_data/IMG_0967.PNG +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/local_file_organization/sample_data/logo.png +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/local_file_organization/sample_data/paper_1col.pdf +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/local_file_organization/sample_data/sub_dir1/animal.jpg +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/local_file_organization/sample_data/sub_dir2/BS.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/voice_transcription/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/voice_transcription/app.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/voice_transcription/requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/voice_transcription/utils/segmenter.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/examples/voice_transcription/utils/transcriber.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/cli/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/lib_utils.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/_internals_transformers.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/_logger_transformers.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/_utils_transformers.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/llama.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/llama_cache.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/llama_chat_format.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/llama_cpp.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/llama_grammar.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/llama_speculative.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/llama_tokenizer.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/llama_types.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/llama/llava_cpp.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/sd/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/sd/_utils_diffusion.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/server/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/server/nexa_service.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/streamlit/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/streamlit/streamlit_image_chat.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/streamlit/streamlit_text_chat.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/streamlit/streamlit_vlm.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/gguf/streamlit/streamlit_voice_chat.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/README.md +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/server/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/server/nexa_service.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/streamlit/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/streamlit/streamlit_image_chat.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/streamlit/streamlit_text_chat.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/streamlit/streamlit_tts.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/onnx/streamlit/streamlit_voice_chat.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/py.typed +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/nexa/utils.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/requirements.txt +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/tests/__init__.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/tests/test_image_generation.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/tests/test_text_generation.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/tests/test_vlm_generation.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/tests/test_voice_generation.py +0 -0
- {nexaai-0.0.8.5 → nexaai-0.0.8.6.1}/tests/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nexaai
|
|
3
|
-
Version: 0.0.8.
|
|
3
|
+
Version: 0.0.8.6.1
|
|
4
4
|
Summary: Nexa AI SDK
|
|
5
5
|
Author-Email: Nexa AI <octopus@nexa4ai.com>
|
|
6
6
|
License: MIT
|
|
@@ -72,6 +72,21 @@ Description-Content-Type: text/markdown
|
|
|
72
72
|
|
|
73
73
|
Nexa SDK is a comprehensive toolkit for supporting **ONNX** and **GGML** models. It supports text generation, image generation, vision-language models (VLM), and text-to-speech (TTS) capabilities. Additionally, it offers an OpenAI-compatible API server with JSON schema mode for function calling and streaming support, and a user-friendly Streamlit UI. Users can run Nexa SDK in any device with Python environment, and GPU acceleration is supported.
|
|
74
74
|
|
|
75
|
+
## Latest News 🔥
|
|
76
|
+
* [2024/09] Nexa now has executables for easy installation: [Install Nexa SDK](https://nexaai.com/download-sdk)
|
|
77
|
+
* [2024/09] Added support for Llama 3.2 models: `nexa run llama3.2`
|
|
78
|
+
* [2024/09] Added support for Qwen2.5, Qwen2.5-coder and Qwen2.5-Math models: `nexa run qwen2.5`
|
|
79
|
+
* [2024/09] Now supporting pulling and running GGUF models from Hugging Face: `nexa run -hf <hf model id>`
|
|
80
|
+
* [2024/09] Added support for ROCm
|
|
81
|
+
* [2024/09] Added support for Phi-3.5 models: `nexa run phi3.5`
|
|
82
|
+
* [2024/09] Added support for OpenELM models: `nexa run openelm`
|
|
83
|
+
* [2024/09] Introduced logits API support for more advanced model interactions
|
|
84
|
+
* [2024/09] Added support for Flux models: `nexa run flux`
|
|
85
|
+
* [2024/09] Added support for Stable Diffusion 3 model: `nexa run sd3`
|
|
86
|
+
* [2024/09] Added support for Stable Diffusion 2.1 model: `nexa run sd2-1`
|
|
87
|
+
|
|
88
|
+
Welcome to submit your requests through [issues](https://github.com/NexaAI/nexa-sdk/issues/new/choose), we ship weekly.
|
|
89
|
+
|
|
75
90
|
## Features
|
|
76
91
|
|
|
77
92
|
- **Model Support:**
|
|
@@ -107,6 +122,18 @@ Below is our differentiation from other similar tools:
|
|
|
107
122
|
|
|
108
123
|
## Installation
|
|
109
124
|
|
|
125
|
+
### macOS
|
|
126
|
+
[Download](https://public-storage.nexa4ai.com/nexa-sdk-executable-installer/nexa-macos-installer.pkg)
|
|
127
|
+
|
|
128
|
+
### Linux
|
|
129
|
+
```bash
|
|
130
|
+
curl -fsSL https://public-storage.nexa4ai.com/install.sh | sh
|
|
131
|
+
```
|
|
132
|
+
### Windows
|
|
133
|
+
Coming soon. Install with Python package below 👇
|
|
134
|
+
|
|
135
|
+
## Python Package
|
|
136
|
+
|
|
110
137
|
We have released pre-built wheels for various Python versions, platforms, and backends for convenient installation on our [index page](https://nexaai.github.io/nexa-sdk/whl/).
|
|
111
138
|
|
|
112
139
|
> [!NOTE]
|
|
@@ -189,7 +216,7 @@ CMAKE_ARGS="-DCMAKE_CXX_FLAGS=-fopenmp" pip install nexaai
|
|
|
189
216
|
For **Linux**:
|
|
190
217
|
|
|
191
218
|
```bash
|
|
192
|
-
CMAKE_ARGS="-DGGML_HIPBLAS=on" pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/
|
|
219
|
+
CMAKE_ARGS="-DGGML_HIPBLAS=on" pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/rocm621 --extra-index-url https://pypi.org/simple --no-cache-dir
|
|
193
220
|
```
|
|
194
221
|
|
|
195
222
|
### Local Build
|
|
@@ -218,27 +245,31 @@ pip install -e .
|
|
|
218
245
|
| ------------------------------------------------------------------------------------------------------- | --------------- | --------- | ---------------------------------- |
|
|
219
246
|
| [octopus-v2](https://www.nexaai.com/NexaAI/Octopus-v2/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v2` |
|
|
220
247
|
| [octopus-v4](https://www.nexaai.com/NexaAI/Octopus-v4/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v4` |
|
|
248
|
+
| [gpt2](https://nexaai.com/openai/gpt2/gguf-q4_0/readme) | NLP | GGUF | `nexa run gpt2` |
|
|
221
249
|
| [tinyllama](https://www.nexaai.com/TinyLlama/TinyLlama-1.1B-Chat-v1.0/gguf-fp16/readme) | NLP | GGUF | `nexa run tinyllama` |
|
|
222
250
|
| [llama2](https://www.nexaai.com/meta/Llama2-7b-chat/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama2` |
|
|
251
|
+
| [llama2-uncensored](https://www.nexaai.com/georgesung/Llama2-7b-chat-uncensored/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama2-uncensored` |
|
|
252
|
+
| [llama2-function-calling](https://www.nexaai.com/Trelis/Llama2-7b-function-calling/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama2-function-calling` |
|
|
223
253
|
| [llama3](https://www.nexaai.com/meta/Llama3-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3` |
|
|
224
254
|
| [llama3.1](https://www.nexaai.com/meta/Llama3.1-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3.1` |
|
|
255
|
+
| [llama3.2](https://nexaai.com/meta/Llama3.2-3B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama3.2` |
|
|
256
|
+
| [llama3-uncensored](https://www.nexaai.com/Orenguteng/Llama3-8B-Lexi-Uncensored/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama3-uncensored` |
|
|
225
257
|
| [gemma](https://www.nexaai.com/google/gemma-1.1-2b-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run gemma` |
|
|
226
258
|
| [gemma2](https://www.nexaai.com/google/gemma-2-2b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run gemma2` |
|
|
227
259
|
| [qwen1.5](https://www.nexaai.com/Qwen/Qwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen1.5` |
|
|
228
260
|
| [qwen2](https://www.nexaai.com/Qwen/Qwen2-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run qwen2` |
|
|
229
261
|
| [qwen2.5](https://www.nexaai.com/Qwen/Qwen2.5-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen2.5` |
|
|
230
262
|
| [mathqwen](https://nexaai.com/Qwen/Qwen2.5-Math-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run mathqwen` |
|
|
263
|
+
| [codeqwen](https://www.nexaai.com/Qwen/CodeQwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run codeqwen` |
|
|
231
264
|
| [mistral](https://www.nexaai.com/mistralai/Mistral-7B-Instruct-v0.3/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run mistral` |
|
|
265
|
+
| [dolphin-mistral](https://www.nexaai.com/CognitiveComputations/dolphin-2.8-mistral-7b/gguf-q4_0/readme) | NLP | GGUF | `nexa run dolphin-mistral` |
|
|
232
266
|
| [codegemma](https://www.nexaai.com/google/codegemma-2b/gguf-q4_0/readme) | NLP | GGUF | `nexa run codegemma` |
|
|
233
267
|
| [codellama](https://www.nexaai.com/meta/CodeLlama-7b-Instruct/gguf-q2_K/readme) | NLP | GGUF | `nexa run codellama` |
|
|
234
|
-
| [codeqwen](https://www.nexaai.com/Qwen/CodeQwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run codeqwen` |
|
|
235
268
|
| [deepseek-coder](https://www.nexaai.com/DeepSeek/deepseek-coder-1.3b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run deepseek-coder` |
|
|
236
|
-
| [dolphin-mistral](https://www.nexaai.com/CognitiveComputations/dolphin-2.8-mistral-7b/gguf-q4_0/readme) | NLP | GGUF | `nexa run dolphin-mistral` |
|
|
237
269
|
| [phi2](https://www.nexaai.com/microsoft/Phi-2/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi2` |
|
|
238
270
|
| [phi3](https://www.nexaai.com/microsoft/Phi-3-mini-128k-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run phi3` |
|
|
239
|
-
| [
|
|
240
|
-
| [
|
|
241
|
-
| [llama2-function-calling](https://www.nexaai.com/Trelis/Llama2-7b-function-calling/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama2-function-calling` |
|
|
271
|
+
| [phi3.5](https://nexaai.com/microsoft/Phi-3.5-mini-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi3.5` |
|
|
272
|
+
| [openelm](https://nexaai.com/apple/OpenELM-3B/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run openelm` |
|
|
242
273
|
| [nanollava](https://www.nexaai.com/qnguyen3/nanoLLaVA/gguf-fp16/readme) | Multimodal | GGUF | `nexa run nanollava` |
|
|
243
274
|
| [llava-phi3](https://www.nexaai.com/xtuner/llava-phi-3-mini/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava-phi3` |
|
|
244
275
|
| [llava-llama3](https://www.nexaai.com/xtuner/llava-llama-3-8b-v1.1/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava-llama3` |
|
|
@@ -246,6 +277,9 @@ pip install -e .
|
|
|
246
277
|
| [llava1.6-vicuna](https://www.nexaai.com/liuhaotian/llava-v1.6-vicuna-7b/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava1.6-vicuna` |
|
|
247
278
|
| [stable-diffusion-v1-4](https://www.nexaai.com/runwayml/stable-diffusion-v1-4/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd1-4` |
|
|
248
279
|
| [stable-diffusion-v1-5](https://www.nexaai.com/runwayml/stable-diffusion-v1-5/gguf-q4_0/readme) | Computer Vision | GGUF/ONNX | `nexa run sd1-5` |
|
|
280
|
+
| [stable-diffusion-v2-1](https://nexaai.com/StabilityAI/stable-diffusion-v2-1/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd2-1` |
|
|
281
|
+
| [stable-diffusion-3-medium](https://nexaai.com/StabilityAI/stable-diffusion-3-medium/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd3` |
|
|
282
|
+
| [FLUX.1-schnell](https://nexaai.com/BlackForestLabs/FLUX.1-schnell/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run flux` |
|
|
249
283
|
| [lcm-dreamshaper](https://www.nexaai.com/SimianLuo/lcm-dreamshaper-v7/gguf-fp16/readme) | Computer Vision | GGUF/ONNX | `nexa run lcm-dreamshaper` |
|
|
250
284
|
| [hassaku-lcm](https://nexaai.com/stablediffusionapi/hassaku-hentai-model-v13-LCM/gguf-fp16/readme) | Computer Vision | GGUF | `nexa run hassaku-lcm` |
|
|
251
285
|
| [anything-lcm](https://www.nexaai.com/Linaqruf/anything-v30-LCM/gguf-fp16/readme) | Computer Vision | GGUF | `nexa run anything-lcm` |
|
|
@@ -254,6 +288,12 @@ pip install -e .
|
|
|
254
288
|
| [faster-whisper-medium](https://www.nexaai.com/Systran/faster-whisper-medium/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-medium` |
|
|
255
289
|
| [faster-whisper-base](https://www.nexaai.com/Systran/faster-whisper-base/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-base` |
|
|
256
290
|
| [faster-whisper-large](https://www.nexaai.com/Systran/faster-whisper-large-v3/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-large` |
|
|
291
|
+
| [whisper-tiny.en](https://nexaai.com/openai/whisper-tiny.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-tiny.en` |
|
|
292
|
+
| [whisper-tiny](https://nexaai.com/openai/whisper-tiny/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-tiny` |
|
|
293
|
+
| [whisper-small.en](https://nexaai.com/openai/whisper-small.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-small.en` |
|
|
294
|
+
| [whisper-small](https://nexaai.com/openai/whisper-small/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-small` |
|
|
295
|
+
| [whisper-base.en](https://nexaai.com/openai/whisper-base.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-base.en` |
|
|
296
|
+
| [whisper-base](https://nexaai.com/openai/whisper-base/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-base` |
|
|
257
297
|
|
|
258
298
|
## CLI Reference
|
|
259
299
|
|
|
@@ -23,6 +23,21 @@
|
|
|
23
23
|
|
|
24
24
|
Nexa SDK is a comprehensive toolkit for supporting **ONNX** and **GGML** models. It supports text generation, image generation, vision-language models (VLM), and text-to-speech (TTS) capabilities. Additionally, it offers an OpenAI-compatible API server with JSON schema mode for function calling and streaming support, and a user-friendly Streamlit UI. Users can run Nexa SDK in any device with Python environment, and GPU acceleration is supported.
|
|
25
25
|
|
|
26
|
+
## Latest News 🔥
|
|
27
|
+
* [2024/09] Nexa now has executables for easy installation: [Install Nexa SDK](https://nexaai.com/download-sdk)
|
|
28
|
+
* [2024/09] Added support for Llama 3.2 models: `nexa run llama3.2`
|
|
29
|
+
* [2024/09] Added support for Qwen2.5, Qwen2.5-coder and Qwen2.5-Math models: `nexa run qwen2.5`
|
|
30
|
+
* [2024/09] Now supporting pulling and running GGUF models from Hugging Face: `nexa run -hf <hf model id>`
|
|
31
|
+
* [2024/09] Added support for ROCm
|
|
32
|
+
* [2024/09] Added support for Phi-3.5 models: `nexa run phi3.5`
|
|
33
|
+
* [2024/09] Added support for OpenELM models: `nexa run openelm`
|
|
34
|
+
* [2024/09] Introduced logits API support for more advanced model interactions
|
|
35
|
+
* [2024/09] Added support for Flux models: `nexa run flux`
|
|
36
|
+
* [2024/09] Added support for Stable Diffusion 3 model: `nexa run sd3`
|
|
37
|
+
* [2024/09] Added support for Stable Diffusion 2.1 model: `nexa run sd2-1`
|
|
38
|
+
|
|
39
|
+
Welcome to submit your requests through [issues](https://github.com/NexaAI/nexa-sdk/issues/new/choose), we ship weekly.
|
|
40
|
+
|
|
26
41
|
## Features
|
|
27
42
|
|
|
28
43
|
- **Model Support:**
|
|
@@ -58,6 +73,18 @@ Below is our differentiation from other similar tools:
|
|
|
58
73
|
|
|
59
74
|
## Installation
|
|
60
75
|
|
|
76
|
+
### macOS
|
|
77
|
+
[Download](https://public-storage.nexa4ai.com/nexa-sdk-executable-installer/nexa-macos-installer.pkg)
|
|
78
|
+
|
|
79
|
+
### Linux
|
|
80
|
+
```bash
|
|
81
|
+
curl -fsSL https://public-storage.nexa4ai.com/install.sh | sh
|
|
82
|
+
```
|
|
83
|
+
### Windows
|
|
84
|
+
Coming soon. Install with Python package below 👇
|
|
85
|
+
|
|
86
|
+
## Python Package
|
|
87
|
+
|
|
61
88
|
We have released pre-built wheels for various Python versions, platforms, and backends for convenient installation on our [index page](https://nexaai.github.io/nexa-sdk/whl/).
|
|
62
89
|
|
|
63
90
|
> [!NOTE]
|
|
@@ -140,7 +167,7 @@ CMAKE_ARGS="-DCMAKE_CXX_FLAGS=-fopenmp" pip install nexaai
|
|
|
140
167
|
For **Linux**:
|
|
141
168
|
|
|
142
169
|
```bash
|
|
143
|
-
CMAKE_ARGS="-DGGML_HIPBLAS=on" pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/
|
|
170
|
+
CMAKE_ARGS="-DGGML_HIPBLAS=on" pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/rocm621 --extra-index-url https://pypi.org/simple --no-cache-dir
|
|
144
171
|
```
|
|
145
172
|
|
|
146
173
|
### Local Build
|
|
@@ -169,27 +196,31 @@ pip install -e .
|
|
|
169
196
|
| ------------------------------------------------------------------------------------------------------- | --------------- | --------- | ---------------------------------- |
|
|
170
197
|
| [octopus-v2](https://www.nexaai.com/NexaAI/Octopus-v2/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v2` |
|
|
171
198
|
| [octopus-v4](https://www.nexaai.com/NexaAI/Octopus-v4/gguf-q4_0/readme) | NLP | GGUF | `nexa run octopus-v4` |
|
|
199
|
+
| [gpt2](https://nexaai.com/openai/gpt2/gguf-q4_0/readme) | NLP | GGUF | `nexa run gpt2` |
|
|
172
200
|
| [tinyllama](https://www.nexaai.com/TinyLlama/TinyLlama-1.1B-Chat-v1.0/gguf-fp16/readme) | NLP | GGUF | `nexa run tinyllama` |
|
|
173
201
|
| [llama2](https://www.nexaai.com/meta/Llama2-7b-chat/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama2` |
|
|
202
|
+
| [llama2-uncensored](https://www.nexaai.com/georgesung/Llama2-7b-chat-uncensored/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama2-uncensored` |
|
|
203
|
+
| [llama2-function-calling](https://www.nexaai.com/Trelis/Llama2-7b-function-calling/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama2-function-calling` |
|
|
174
204
|
| [llama3](https://www.nexaai.com/meta/Llama3-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3` |
|
|
175
205
|
| [llama3.1](https://www.nexaai.com/meta/Llama3.1-8B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run llama3.1` |
|
|
206
|
+
| [llama3.2](https://nexaai.com/meta/Llama3.2-3B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run llama3.2` |
|
|
207
|
+
| [llama3-uncensored](https://www.nexaai.com/Orenguteng/Llama3-8B-Lexi-Uncensored/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama3-uncensored` |
|
|
176
208
|
| [gemma](https://www.nexaai.com/google/gemma-1.1-2b-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run gemma` |
|
|
177
209
|
| [gemma2](https://www.nexaai.com/google/gemma-2-2b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run gemma2` |
|
|
178
210
|
| [qwen1.5](https://www.nexaai.com/Qwen/Qwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen1.5` |
|
|
179
211
|
| [qwen2](https://www.nexaai.com/Qwen/Qwen2-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run qwen2` |
|
|
180
212
|
| [qwen2.5](https://www.nexaai.com/Qwen/Qwen2.5-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run qwen2.5` |
|
|
181
213
|
| [mathqwen](https://nexaai.com/Qwen/Qwen2.5-Math-1.5B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run mathqwen` |
|
|
214
|
+
| [codeqwen](https://www.nexaai.com/Qwen/CodeQwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run codeqwen` |
|
|
182
215
|
| [mistral](https://www.nexaai.com/mistralai/Mistral-7B-Instruct-v0.3/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run mistral` |
|
|
216
|
+
| [dolphin-mistral](https://www.nexaai.com/CognitiveComputations/dolphin-2.8-mistral-7b/gguf-q4_0/readme) | NLP | GGUF | `nexa run dolphin-mistral` |
|
|
183
217
|
| [codegemma](https://www.nexaai.com/google/codegemma-2b/gguf-q4_0/readme) | NLP | GGUF | `nexa run codegemma` |
|
|
184
218
|
| [codellama](https://www.nexaai.com/meta/CodeLlama-7b-Instruct/gguf-q2_K/readme) | NLP | GGUF | `nexa run codellama` |
|
|
185
|
-
| [codeqwen](https://www.nexaai.com/Qwen/CodeQwen1.5-7B-Instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run codeqwen` |
|
|
186
219
|
| [deepseek-coder](https://www.nexaai.com/DeepSeek/deepseek-coder-1.3b-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run deepseek-coder` |
|
|
187
|
-
| [dolphin-mistral](https://www.nexaai.com/CognitiveComputations/dolphin-2.8-mistral-7b/gguf-q4_0/readme) | NLP | GGUF | `nexa run dolphin-mistral` |
|
|
188
220
|
| [phi2](https://www.nexaai.com/microsoft/Phi-2/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi2` |
|
|
189
221
|
| [phi3](https://www.nexaai.com/microsoft/Phi-3-mini-128k-instruct/gguf-q4_0/readme) | NLP | GGUF/ONNX | `nexa run phi3` |
|
|
190
|
-
| [
|
|
191
|
-
| [
|
|
192
|
-
| [llama2-function-calling](https://www.nexaai.com/Trelis/Llama2-7b-function-calling/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run llama2-function-calling` |
|
|
222
|
+
| [phi3.5](https://nexaai.com/microsoft/Phi-3.5-mini-instruct/gguf-q4_0/readme) | NLP | GGUF | `nexa run phi3.5` |
|
|
223
|
+
| [openelm](https://nexaai.com/apple/OpenELM-3B/gguf-q4_K_M/readme) | NLP | GGUF | `nexa run openelm` |
|
|
193
224
|
| [nanollava](https://www.nexaai.com/qnguyen3/nanoLLaVA/gguf-fp16/readme) | Multimodal | GGUF | `nexa run nanollava` |
|
|
194
225
|
| [llava-phi3](https://www.nexaai.com/xtuner/llava-phi-3-mini/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava-phi3` |
|
|
195
226
|
| [llava-llama3](https://www.nexaai.com/xtuner/llava-llama-3-8b-v1.1/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava-llama3` |
|
|
@@ -197,6 +228,9 @@ pip install -e .
|
|
|
197
228
|
| [llava1.6-vicuna](https://www.nexaai.com/liuhaotian/llava-v1.6-vicuna-7b/gguf-q4_0/readme) | Multimodal | GGUF | `nexa run llava1.6-vicuna` |
|
|
198
229
|
| [stable-diffusion-v1-4](https://www.nexaai.com/runwayml/stable-diffusion-v1-4/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd1-4` |
|
|
199
230
|
| [stable-diffusion-v1-5](https://www.nexaai.com/runwayml/stable-diffusion-v1-5/gguf-q4_0/readme) | Computer Vision | GGUF/ONNX | `nexa run sd1-5` |
|
|
231
|
+
| [stable-diffusion-v2-1](https://nexaai.com/StabilityAI/stable-diffusion-v2-1/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd2-1` |
|
|
232
|
+
| [stable-diffusion-3-medium](https://nexaai.com/StabilityAI/stable-diffusion-3-medium/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run sd3` |
|
|
233
|
+
| [FLUX.1-schnell](https://nexaai.com/BlackForestLabs/FLUX.1-schnell/gguf-q4_0/readme) | Computer Vision | GGUF | `nexa run flux` |
|
|
200
234
|
| [lcm-dreamshaper](https://www.nexaai.com/SimianLuo/lcm-dreamshaper-v7/gguf-fp16/readme) | Computer Vision | GGUF/ONNX | `nexa run lcm-dreamshaper` |
|
|
201
235
|
| [hassaku-lcm](https://nexaai.com/stablediffusionapi/hassaku-hentai-model-v13-LCM/gguf-fp16/readme) | Computer Vision | GGUF | `nexa run hassaku-lcm` |
|
|
202
236
|
| [anything-lcm](https://www.nexaai.com/Linaqruf/anything-v30-LCM/gguf-fp16/readme) | Computer Vision | GGUF | `nexa run anything-lcm` |
|
|
@@ -205,6 +239,12 @@ pip install -e .
|
|
|
205
239
|
| [faster-whisper-medium](https://www.nexaai.com/Systran/faster-whisper-medium/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-medium` |
|
|
206
240
|
| [faster-whisper-base](https://www.nexaai.com/Systran/faster-whisper-base/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-base` |
|
|
207
241
|
| [faster-whisper-large](https://www.nexaai.com/Systran/faster-whisper-large-v3/bin-cpu-fp16/readme) | Audio | BIN | `nexa run faster-whisper-large` |
|
|
242
|
+
| [whisper-tiny.en](https://nexaai.com/openai/whisper-tiny.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-tiny.en` |
|
|
243
|
+
| [whisper-tiny](https://nexaai.com/openai/whisper-tiny/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-tiny` |
|
|
244
|
+
| [whisper-small.en](https://nexaai.com/openai/whisper-small.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-small.en` |
|
|
245
|
+
| [whisper-small](https://nexaai.com/openai/whisper-small/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-small` |
|
|
246
|
+
| [whisper-base.en](https://nexaai.com/openai/whisper-base.en/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-base.en` |
|
|
247
|
+
| [whisper-base](https://nexaai.com/openai/whisper-base/onnx-cpu-fp32/readme) | Audio | ONNX | `nexa run whisper-base` |
|
|
208
248
|
|
|
209
249
|
## CLI Reference
|
|
210
250
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
int LLAMA_BUILD_NUMBER = 3644;
|
|
2
2
|
char const *LLAMA_COMMIT = "3a355263";
|
|
3
|
-
char const *LLAMA_COMPILER = "gcc (Ubuntu
|
|
3
|
+
char const *LLAMA_COMPILER = "gcc (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0";
|
|
4
4
|
char const *LLAMA_BUILD_TARGET = "x86_64-linux-gnu";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 Yanhao Qiu
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
# Local File Organizer: AI File Management Run Entirely on Your Device, Privacy Assured
|
|
2
|
+
|
|
3
|
+
Tired of digital clutter? Overwhelmed by disorganized files scattered across your computer? Let AI do the heavy lifting! The Local File Organizer is your personal organizing assistant, using cutting-edge AI to bring order to your file chaos - all while respecting your privacy.
|
|
4
|
+
|
|
5
|
+
## How It Works 💡
|
|
6
|
+
|
|
7
|
+
Before:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
/home/user/messy_documents/
|
|
11
|
+
├── IMG_20230515_140322.jpg
|
|
12
|
+
├── IMG_20230516_083045.jpg
|
|
13
|
+
├── IMG_20230517_192130.jpg
|
|
14
|
+
├── budget_2023.xlsx
|
|
15
|
+
├── meeting_notes_05152023.txt
|
|
16
|
+
├── project_proposal_draft.docx
|
|
17
|
+
├── random_thoughts.txt
|
|
18
|
+
├── recipe_chocolate_cake.pdf
|
|
19
|
+
├── scan0001.pdf
|
|
20
|
+
├── vacation_itinerary.docx
|
|
21
|
+
└── work_presentation.pptx
|
|
22
|
+
|
|
23
|
+
0 directories, 11 files
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
After:
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
/home/user/organized_documents/
|
|
30
|
+
├── Financial
|
|
31
|
+
│ └── 2023_Budget_Spreadsheet.xlsx
|
|
32
|
+
├── Food_and_Recipes
|
|
33
|
+
│ └── Chocolate_Cake_Recipe.pdf
|
|
34
|
+
├── Meetings_and_Notes
|
|
35
|
+
│ └── Team_Meeting_Notes_May_15_2023.txt
|
|
36
|
+
├── Personal
|
|
37
|
+
│ └── Random_Thoughts_and_Ideas.txt
|
|
38
|
+
├── Photos
|
|
39
|
+
│ ├── Cityscape_Sunset_May_17_2023.jpg
|
|
40
|
+
│ ├── Morning_Coffee_Shop_May_16_2023.jpg
|
|
41
|
+
│ └── Office_Team_Lunch_May_15_2023.jpg
|
|
42
|
+
├── Travel
|
|
43
|
+
│ └── Summer_Vacation_Itinerary_2023.docx
|
|
44
|
+
└── Work
|
|
45
|
+
├── Project_X_Proposal_Draft.docx
|
|
46
|
+
├── Quarterly_Sales_Report.pdf
|
|
47
|
+
└── Marketing_Strategy_Presentation.pptx
|
|
48
|
+
|
|
49
|
+
7 directories, 11 files
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Updates 🚀
|
|
53
|
+
|
|
54
|
+
**[2024/09] v0.0.2**:
|
|
55
|
+
* Featured by [Nexa Gallery](https://nexaai.com/gallery) and [Nexa SDK Cookbook](https://github.com/NexaAI/nexa-sdk/tree/main/examples)!
|
|
56
|
+
* Dry Run Mode: check sorting results before committing changes
|
|
57
|
+
* Silent Mode: save all logs to a txt file for quieter operation
|
|
58
|
+
* Added file support: `.md`, .`excel`, `.ppt`, and `.csv`
|
|
59
|
+
* Three sorting options: by content, by date, and by type
|
|
60
|
+
* The default text model is now [Llama3.2 3B](https://nexaai.com/meta/Llama3.2-3B-Instruct/gguf-q3_K_M/file)
|
|
61
|
+
* Improved CLI interaction experience
|
|
62
|
+
* Added real-time progress bar for file analysis
|
|
63
|
+
|
|
64
|
+
Please update the project by deleting the original project folder and reinstalling the requirements. Refer to the installation guide from Step 4.
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
## Roadmap 📅
|
|
68
|
+
|
|
69
|
+
- [ ] Copilot Mode: chat with AI to tell AI how you want to sort the file (ie. read and rename all the PDFs)
|
|
70
|
+
- [ ] Change models with CLI
|
|
71
|
+
- [ ] ebook format support
|
|
72
|
+
- [ ] audio file support
|
|
73
|
+
- [ ] video file support
|
|
74
|
+
- [ ] Implement best practices like Johnny Decimal
|
|
75
|
+
- [ ] Check file duplication
|
|
76
|
+
- [ ] Dockerfile for easier installation
|
|
77
|
+
- [ ] People from [Nexa](https://github.com/NexaAI/nexa-sdk) is helping me to make executables for macOS, Linux and Windows
|
|
78
|
+
|
|
79
|
+
## What It Does 🔍
|
|
80
|
+
|
|
81
|
+
This intelligent file organizer harnesses the power of advanced AI models, including language models (LMs) and vision-language models (VLMs), to automate the process of organizing files by:
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
* Scanning a specified input directory for files.
|
|
85
|
+
* Content Understanding:
|
|
86
|
+
- **Textual Analysis**: Uses the [Llama3.2 3B](https://nexaai.com/meta/Llama3.2-3B-Instruct/gguf-q3_K_M/file) to analyze and summarize text-based content, generating relevant descriptions and filenames.
|
|
87
|
+
- **Visual Content Analysis**: Uses the [LLaVA-v1.6](https://nexaai.com/liuhaotian/llava-v1.6-vicuna-7b/gguf-q4_0/file) , based on Vicuna-7B, to interpret visual files such as images, providing context-aware categorization and descriptions.
|
|
88
|
+
|
|
89
|
+
* Understanding the content of your files (text, images, and more) to generate relevant descriptions, folder names, and filenames.
|
|
90
|
+
* Organizing the files into a new directory structure based on the generated metadata.
|
|
91
|
+
|
|
92
|
+
The best part? All AI processing happens 100% on your local device using the [Nexa SDK](https://github.com/NexaAI/nexa-sdk). No internet connection required, no data leaves your computer, and no AI API is needed - keeping your files completely private and secure.
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
## Supported File Types 📁
|
|
96
|
+
|
|
97
|
+
- **Images:** `.png`, `.jpg`, `.jpeg`, `.gif`, `.bmp`
|
|
98
|
+
- **Text Files:** `.txt`, `.docx`, `.md`
|
|
99
|
+
- **Spreadsheets:** `.xlsx`, `.csv`
|
|
100
|
+
- **Presentations:** `.ppt`, `.pptx`
|
|
101
|
+
- **PDFs:** `.pdf`
|
|
102
|
+
|
|
103
|
+
## Prerequisites 💻
|
|
104
|
+
|
|
105
|
+
- **Operating System:** Compatible with Windows, macOS, and Linux.
|
|
106
|
+
- **Python Version:** Python 3.12
|
|
107
|
+
- **Conda:** Anaconda or Miniconda installed.
|
|
108
|
+
- **Git:** For cloning the repository (or you can download the code as a ZIP file).
|
|
109
|
+
|
|
110
|
+
## Installation 🛠
|
|
111
|
+
|
|
112
|
+
> For SDK installation and model-related issues, please post on [here](https://github.com/NexaAI/nexa-sdk/issues).
|
|
113
|
+
|
|
114
|
+
### 1. Install Python
|
|
115
|
+
|
|
116
|
+
Before installing the Local File Organizer, make sure you have Python installed on your system. We recommend using Python 3.12 or later.
|
|
117
|
+
|
|
118
|
+
You can download Python from [the official website]((https://www.python.org/downloads/)).
|
|
119
|
+
|
|
120
|
+
Follow the installation instructions for your operating system.
|
|
121
|
+
|
|
122
|
+
### 2. Clone the Repository
|
|
123
|
+
|
|
124
|
+
Clone this repository to your local machine using Git:
|
|
125
|
+
|
|
126
|
+
```zsh
|
|
127
|
+
git clone https://github.com/QiuYannnn/Local-File-Organizer.git
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
Or download the repository as a ZIP file and extract it to your desired location.
|
|
131
|
+
|
|
132
|
+
### 3. Set Up the Python Environment
|
|
133
|
+
|
|
134
|
+
Create a new Conda environment named `local_file_organizer` with Python 3.12:
|
|
135
|
+
|
|
136
|
+
```zsh
|
|
137
|
+
conda create --name local_file_organizer python=3.12
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Activate the environment:
|
|
141
|
+
|
|
142
|
+
```zsh
|
|
143
|
+
conda activate local_file_organizer
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
### 4. Install Nexa SDK ️
|
|
147
|
+
|
|
148
|
+
#### CPU Installation
|
|
149
|
+
To install the CPU version of Nexa SDK, run:
|
|
150
|
+
```bash
|
|
151
|
+
pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/cpu --extra-index-url https://pypi.org/simple --no-cache-dir
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
#### GPU Installation (Metal - macOS)
|
|
155
|
+
For the GPU version supporting Metal (macOS), run:
|
|
156
|
+
```bash
|
|
157
|
+
CMAKE_ARGS="-DGGML_METAL=ON -DSD_METAL=ON" pip install nexaai --prefer-binary --index-url https://nexaai.github.io/nexa-sdk/whl/metal --extra-index-url https://pypi.org/simple --no-cache-dir
|
|
158
|
+
```
|
|
159
|
+
For detailed installation instructions of Nexa SDK for **CUDA** and **AMD GPU** support, please refer to the [Installation section](https://github.com/NexaAI/nexa-sdk?tab=readme-ov-file#installation) in the main README.
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
### 5. Install Dependencies
|
|
163
|
+
|
|
164
|
+
1. Ensure you are in the project directory:
|
|
165
|
+
```zsh
|
|
166
|
+
cd path/to/Local-File-Organizer
|
|
167
|
+
```
|
|
168
|
+
Replace `path/to/Local-File-Organizer` with the actual path where you cloned or extracted the project.
|
|
169
|
+
|
|
170
|
+
2. Install the required dependencies:
|
|
171
|
+
```zsh
|
|
172
|
+
pip install -r requirements.txt
|
|
173
|
+
```
|
|
174
|
+
|
|
175
|
+
**Note:** If you encounter issues with any packages, install them individually:
|
|
176
|
+
|
|
177
|
+
```zsh
|
|
178
|
+
pip install nexa Pillow pytesseract PyMuPDF python-docx
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
With the environment activated and dependencies installed, run the script using:
|
|
182
|
+
|
|
183
|
+
### 6. Running the Script🎉
|
|
184
|
+
```zsh
|
|
185
|
+
python main.py
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
## Notes
|
|
189
|
+
|
|
190
|
+
- **SDK Models:**
|
|
191
|
+
- The script uses `NexaVLMInference` and `NexaTextInference` models [usage](https://docs.nexaai.com/sdk/python-interface/gguf).
|
|
192
|
+
- Ensure you have access to these models and they are correctly set up.
|
|
193
|
+
- You may need to download model files or configure paths.
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
- **Dependencies:**
|
|
197
|
+
- **pytesseract:** Requires Tesseract OCR installed on your system.
|
|
198
|
+
- **macOS:** `brew install tesseract`
|
|
199
|
+
- **Ubuntu/Linux:** `sudo apt-get install tesseract-ocr`
|
|
200
|
+
- **Windows:** Download from [Tesseract OCR Windows Installer](https://github.com/UB-Mannheim/tesseract/wiki)
|
|
201
|
+
- **PyMuPDF (fitz):** Used for reading PDFs.
|
|
202
|
+
|
|
203
|
+
- **Processing Time:**
|
|
204
|
+
- Processing may take time depending on the number and size of files.
|
|
205
|
+
- The script uses multiprocessing to improve performance.
|
|
206
|
+
|
|
207
|
+
- **Customizing Prompts:**
|
|
208
|
+
- You can adjust prompts in `data_processing.py` to change how metadata is generated.
|
|
209
|
+
|
|
210
|
+
## License
|
|
211
|
+
|
|
212
|
+
This project is dual-licensed under the MIT License and Apache 2.0 License. You may choose which license you prefer to use for this project.
|
|
213
|
+
|
|
214
|
+
- See the [MIT License](LICENSE-MIT) for more details.
|