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 pathRunAnywhereCore.podspec
More file actions
46 lines (40 loc) · 1.81 KB
/
RunAnywhereCore.podspec
File metadata and controls
46 lines (40 loc) · 1.81 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
46
# =============================================================================
# RunAnywhereCore.podspec
# On-device ML inference framework with all backends
# Version: 0.0.1-dev.eccceef
#
# Usage:
# pod 'RunAnywhereCore', '~> 0.0.1-dev.eccceef'
#
# Generated automatically - do not edit manually
# =============================================================================
Pod::Spec.new do |s|
s.name = 'RunAnywhereCore'
s.version = '0.0.1-dev.eccceef'
s.summary = 'On-device ML inference framework for iOS/macOS'
s.description = <<-DESC
RunAnywhereCore provides on-device machine learning inference for iOS and macOS.
This unified framework includes all backends in a single package.
Capabilities:
- Text Generation - Run LLMs locally on device (ONNX + LlamaCPP)
- 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.eccceef/RunAnywhereCore.xcframework.zip',
:sha256 => '1b2c23fd4789ff0414cde90a3e8c7796453713704c2c72aadc6b3732c9bd1816'
}
s.ios.deployment_target = '15.0'
s.osx.deployment_target = '12.0'
s.vendored_frameworks = 'RunAnywhereCore.xcframework'
s.frameworks = 'Foundation', 'CoreML', 'Accelerate', 'Metal', 'MetalKit'
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386'
}
end