This repository was archived by the owner on Jan 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRunAnywhereONNX.podspec
More file actions
45 lines (39 loc) · 1.71 KB
/
RunAnywhereONNX.podspec
File metadata and controls
45 lines (39 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# =============================================================================
# RunAnywhereONNX.podspec
# On-device ML inference framework with ONNX Runtime backend
# Version: 0.0.1-dev.4767337
#
# Usage:
# pod 'RunAnywhereONNX', '~> 0.0.1-dev.4767337'
#
# Generated automatically - do not edit manually
# =============================================================================
Pod::Spec.new do |s|
s.name = 'RunAnywhereONNX'
s.version = '0.0.1-dev.4767337'
s.summary = 'On-device ML inference framework for iOS/macOS'
s.description = <<-DESC
RunAnywhereONNX provides on-device machine learning inference for iOS and macOS.
Capabilities:
- Text Generation - Run LLMs locally on device
- Embeddings - Generate text embeddings for semantic search
- Speech-to-Text - Batch and real-time streaming transcription
- Text-to-Speech - Natural voice synthesis
- Voice Activity Detection - Detect speech in audio
- Speaker Diarization - Identify different speakers
DESC
s.homepage = 'https://github.com/RunanywhereAI/runanywhere-binaries'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'RunAnywhere' => 'hello@runanywhere.ai' }
s.source = {
:http => 'https://github.com/RunanywhereAI/runanywhere-binaries/releases/download/v0.0.1-dev.4767337/RunAnywhereONNX.xcframework.zip',
:sha256 => 'c054210880498119a7f61ffa2f922effa8e3c92513085f5c495011ea301f776a'
}
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '12.0'
s.vendored_frameworks = 'RunAnywhereONNX.xcframework'
s.frameworks = 'Foundation', 'CoreML', 'Accelerate'
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
}
end