SherpaOnnx

1.13.14

willwade/sherpa-onnx-spm

What's New

v1.13.14 - Checksum Fix

2026-06-10T13:18:23Z

This release fixes a checksum mismatch issue in v1.13.2 where the release assets were updated but the Package.swift checksums were not synchronized.

Changes

  • Updated checksums in Package.swift to match the actual release assets
  • Verified that both sherpa-onnx.xcframework.zip and onnxruntime.xcframework.zip download and verify correctly

Checksums

  • sherpa-onnx.xcframework.zip: 0017147fda683ce99f9390b43825c529966ad29b40ac67e37a43f2ba61d5264d
  • onnxruntime.xcframework.zip: 8c9db6bff51a7282a7b3ad08b9e87a88b41f03e02bf8e7dbbd53c6a66df75512

This release is compatible with all downstream projects that depend on sherpa-onnx-spm.

sherpa-onnx-spm

A Swift Package Manager distribution of sherpa-onnx XCFrameworks for iOS and macOS.

Forked from uakihir0/sherpa-onnx-spm with added macOS support.

Automatically tracks the latest sherpa-onnx releases via GitHub Actions and provides pre-built XCFrameworks.

Features

  • Speech Recognition (ASR) - Streaming / Non-streaming
  • Text-to-Speech (TTS) - VITS, Matcha, Kokoro, etc.
  • Voice Activity Detection (VAD) - Silero VAD
  • Keyword Spotting
  • Speaker Identification & Diarization
  • Speech Enhancement & Denoising

Installation

Swift Package Manager

In Xcode, go to File > Add Package Dependencies... and enter the following URL:

https://github.com/willwade/sherpa-onnx-spm.git

Or add the dependency to your Package.swift:

dependencies: [
    .package(url: "https://github.com/willwade/sherpa-onnx-spm.git", from: "1.0.0")
]

Then add it to your target:

.target(
    name: "YourTarget",
    dependencies: [
        .product(name: "SherpaOnnx", package: "sherpa-onnx-spm"),
    ]
)

Usage

import SherpaOnnx

// Check version
let version = getSherpaOnnxVersion()
print("sherpa-onnx version: \(version)")

For detailed usage, refer to the official sherpa-onnx documentation.

Supported Platforms

  • iOS 13.0+
    • arm64 (Device)
    • x86_64 (Simulator)
    • arm64 (Apple Silicon Simulator)
  • macOS 13.0+
    • arm64 (Apple Silicon)
    • x86_64 (Intel)

License

sherpa-onnx is licensed under the Apache License 2.0.

Description

  • Swift Tools 5.9.0
View More Packages from this Author

Dependencies

  • None
Last updated: Sun Jun 14 2026 10:13:30 GMT-0900 (Hawaii-Aleutian Daylight Time)