
On-device AI toolkit enabling LLM chat, streaming, speech-to-text, text-to-speech and full voice-assistant pipelines—offline, private, model download/progress, lightweight neural voices and GGUF model support.
On-device AI for every platform.
Run LLMs, vision, speech-to-text, and text-to-speech locally. Private, offline, fast.
One SDK for iOS, Android, Flutter, React Native, Web, and more — with Hexagon NPU acceleration on Snapdragon.
RunAnywhere lets you add AI features to your app that run entirely on-device — no cloud, no latency, no data leaving the device:
One API spans iOS, Android, Flutter, React Native, and Web, and routes to the best engine on each device: Core ML on Apple, WebGPU in the browser, llama.cpp everywhere as a fallback, and the Hexagon NPU on Snapdragon.
QHexRT is RunAnywhere's inference runtime for the Qualcomm Hexagon NPU. It runs LLM, vision, speech, and text-to-speech models directly on the Snapdragon NPU (Hexagon v79 / v81) and ships as a built-in accelerator: your app calls the same loadModel and generate, and it uses the NPU automatically on supported devices.
Measured on a Samsung Galaxy S25 (Snapdragon 8 Elite, Hexagon v79):
| Model | Task | Params | Decode | Time to first token |
|---|---|---|---|---|
| LFM2.5-230M | LLM | 0.23 B | 164 tok/s | 32 ms |
| Qwen3-0.6B | LLM | 0.6 B | 33 tok/s (prefill up to 3,692 tok/s) | 127 ms |
| Llama-3.2-1B | LLM | 1.2 B | 16.3 tok/s | 56 ms |
| Phi-tiny-MoE | MoE LLM | 3.8 B (1.1 B active) | 5–7 tok/s | ~2.5 s |
| InternVL3.5-1B | VLM | 1 B | 37 tok/s | 290 ms |
| Whisper base | ASR | 74 M | ~5× real-time | n/a |
| MeloTTS-EN | TTS | n/a | ~4.5× real-time | n/a |
Available on the Kotlin, Flutter, and React Native SDKs. Snapdragon (Android arm64) only.
| Platform | Status | Install | Docs | NPU |
|---|---|---|---|---|
| Swift (iOS/macOS) | Stable | SPM | docs | — |
| Kotlin (Android) | Stable | Gradle | docs | Yes |
| React Native | Beta | npm | docs | Yes |
| Flutter | Beta | pub.dev | docs | Yes |
| Web (Browser) | Beta | npm | SDK README | — |
| Python (Desktop/Server) | Alpha | pip | SDK README | — |
| Electron | Preview | Build from source | SDK README | — |
CLI (rcli) |
Stable | Homebrew / scripts | SDK README | — |
All SDKs ship on one version line, currently 0.20.11. Pin the same version across the core package and its backends. See Releases for what is published today.
import RunAnywhere
import LlamaCPPRuntime
LlamaCPP.register()
try RunAnywhere.initialize()
var load = RAModelLoadRequest()
load.modelID = "smollm2-360m"
load.category = .language
load.framework = .llamaCpp
_ = await RunAnywhere.loadModel(load)
var req = RALLMGenerateRequest()
req.prompt = "What is the capital of France?"
let result = try await RunAnywhere.generate(req)
print(result.text)Install via Swift Package Manager — add the package URL:
https://github.com/RunanywhereAI/runanywhere-sdks
Products: RunAnywhere, RunAnywhereLlamaCPP, RunAnywhereONNX, RunAnywhereMLX.
import ai.runanywhere.proto.v1.ModelCategory
import ai.runanywhere.proto.v1.SDKEnvironment
import com.runanywhere.sdk.llm.llamacpp.LlamaCPP
import com.runanywhere.sdk.public.RunAnywhere
import com.runanywhere.sdk.public.extensions.*
import com.runanywhere.sdk.public.types.RAModelInfo
import com.runanywhere.sdk.public.types.RAModelLoadRequest
LlamaCPP.register()
RunAnywhere.initialize(
context = this,
environment = SDKEnvironment.SDK_ENVIRONMENT_DEVELOPMENT,
)
val modelId = "smollm2-360m-instruct-q8_0"
RunAnywhere.downloadModelStream(RAModelInfo(id = modelId)).collect { /* progress */ }
RunAnywhere.loadModel(
RAModelLoadRequest(model_id = modelId, category = ModelCategory.MODEL_CATEGORY_LANGUAGE),
)
val result = RunAnywhere.generate("What is the capital of France?")
println(result.text)Install via Gradle (Maven Central):
dependencies {
implementation("io.github.sanchitmonga22:runanywhere-sdk:0.20.11")
implementation("io.github.sanchitmonga22:runanywhere-llamacpp:0.20.11")
// Optional: STT / TTS / VAD
// implementation("io.github.sanchitmonga22:runanywhere-onnx:0.20.11")
}import { RunAnywhere, SDKEnvironment } from '@runanywhere/core';
import { LlamaCPP } from '@runanywhere/llamacpp';
await RunAnywhere.initialize({ environment: SDKEnvironment.SDK_ENVIRONMENT_DEVELOPMENT });
LlamaCPP.register();
await RunAnywhere.downloadModel('smollm2-360m');
await RunAnywhere.loadModel('smollm2-360m');
const result = await RunAnywhere.generate('What is the capital of France?');
console.log(result.text);Install via npm:
npm install @runanywhere/core@0.20.11 @runanywhere/llamacpp@0.20.11import 'package:runanywhere/runanywhere.dart';
import 'package:runanywhere_llamacpp/runanywhere_llamacpp.dart';
await RunAnywhere.initialize();
LlamaCpp.register();
await RunAnywhere.downloadModel('smollm2-360m');
await RunAnywhere.llm.load('smollm2-360m');
final response = await RunAnywhere.llm.chat('What is the capital of France?');
print(response);Install via pub.dev:
dependencies:
runanywhere: ^0.20.11
runanywhere_llamacpp: ^0.20.11
# runanywhere_onnx: ^0.20.11 # STT, TTS, Voiceimport { RunAnywhere, SDKEnvironment } from '@runanywhere/web';
import { LlamaCPP } from '@runanywhere/web-llamacpp';
await RunAnywhere.initialize({
environment: SDKEnvironment.SDK_ENVIRONMENT_DEVELOPMENT,
});
await LlamaCPP.register({ acceleration: 'auto' });
await RunAnywhere.completeServicesInitialization();
await RunAnywhere.loadModel({ modelId: 'qwen2.5-0.5b' });
const result = await RunAnywhere.generate({
prompt: 'What is the capital of France?',
});
console.log(result.text);Install via npm:
npm install @runanywhere/web@0.20.11 @runanywhere/web-llamacpp@0.20.11from runanywhere import RunAnywhere
with RunAnywhere() as ra:
llm = ra.load_llm("qwen2.5-0.5b")
print(llm.generate_text("What is the capital of France?"))Install via pip:
pip install runanywhere==0.20.11| Feature | iOS | Android | Web | React Native | Flutter |
|---|---|---|---|---|---|
| LLM Text Generation | Yes | Yes | Yes | Yes | Yes |
| Streaming | Yes | Yes | Yes | Yes | Yes |
| Speech-to-Text | Yes | Yes | Yes | Yes | Yes |
| Text-to-Speech | Yes | Yes | Yes | Yes | Yes |
| Voice Assistant Pipeline | Yes | Yes | Yes | Yes | Yes |
| Vision Language Models | Yes | Yes | Yes | — | Yes |
| LoRA Adapters | Yes | Yes | Yes | Yes | Yes |
| Hexagon NPU (QHexRT) | — | Yes | — | Yes | Yes |
| Model Download + Progress | Yes | Yes | Yes | Yes | Yes |
| Structured Output (JSON) | Yes | Yes | Yes | Soon | Soon |
| Tool Calling | Yes | Yes | Yes | — | — |
| Embeddings | — | — | Yes | — | — |
| Apple Foundation Models | Yes | — | — | — | — |
Prebuilt bundles on Hugging Face; the SDK downloads the bundle matching the device.
| Model | Task | Params | Bundle |
|---|---|---|---|
| Llama-3.2-1B | LLM | 1.2 B | llama3_2_1b_HNPU |
| LFM2.5-230M / 350M | LLM | 0.23 / 0.35 B | lfm2_5_230m_HNPU · lfm2_5_350m_HNPU |
| Qwen3.5-0.8B / 2B / 4B | LLM | 0.8–4 B | qwen3_5_0_8b_HNPU · 2b · 4b |
| Gemma-4-E2B / E4B | LLM + VLM | ~2 / 4 B | gemma4_e2b_HNPU · gemma4_e4b_HNPU |
| Phi-tiny-MoE | MoE LLM | 3.8 B | phi_tiny_moe_HNPU |
| DeepSeek-R1-Distill-Qwen | LLM | 1.5 / 7 B | 1.5b · 7b |
| Qwen3-VL-2B | VLM | 2 B | qwen3_vl_HNPU |
| InternVL3.5-1B | VLM | 1 B | internvl3_5_1b_HNPU |
| Whisper base / small | ASR | 74 / 244 M | whisper_base_HNPU · whisper_small_HNPU |
| Moonshine tiny / base | ASR | n/a | moonshine_base_HNPU |
| MeloTTS-EN | TTS | n/a | melotts_en_HNPU |
| EmbeddingGemma-300M | Embeddings | 300 M | embeddinggemma_300m_HNPU |
Browse all models on Hugging Face
| Type | Models | Runtime |
|---|---|---|
| LLM | SmolLM2, Qwen 2.5, Llama 3.2, Mistral 7B | llama.cpp |
| Speech-to-Text | Whisper Tiny / Base | ONNX |
| Text-to-Speech | Piper (US / UK English) | ONNX |
| Platform | Source | Download |
|---|---|---|
| iOS | examples/ios/RunAnywhereAI | App Store |
| Android | examples/android/RunAnywhereAI | Google Play |
| Web | examples/web/RunAnywhereAI | Build from source |
| React Native | examples/react-native/RunAnywhereAI | Build from source |
| Flutter | examples/flutter/RunAnywhereAI | Build from source |
| Electron | examples/electron/RunAnywhereAI | Build from source (Windows) |
The Android, Flutter, and React Native apps include an NPU section that detects Hexagon arch and runs LLM, vision, speech, and TTS on the NPU.
Minimal projects to get up and running on each platform:
| Platform | Repository |
|---|---|
| Kotlin (Android) | kotlin-starter-example |
| Swift (iOS) | swift-starter-example |
| Flutter | flutter-starter-example |
| React Native | react-native-starter-app |
Real-world projects built with RunAnywhere. Each ships as a standalone app you can build and run.
A single C/C++ core (runanywhere-commons) behind a C ABI, with thin platform SDKs on top and a plugin registry that selects the best engine per device (llama.cpp, ONNX/sherpa, Core ML, Metal, and QHexRT on the Hexagon NPU). Business logic lives in the core, so one fix lands on all SDKs.
runanywhere-sdks/
├── sdk/
│ ├── runanywhere-swift/ # iOS/macOS SDK
│ ├── runanywhere-kotlin/ # Android SDK
│ ├── runanywhere-web/ # Web SDK (WebAssembly / WebGPU)
│ ├── runanywhere-react-native/ # React Native SDK
│ ├── runanywhere-flutter/ # Flutter SDK
│ ├── runanywhere-python/ # Python SDK (pybind11 over the C core)
│ ├── runanywhere-electron/ # Electron / Node (Windows preview)
│ ├── runanywhere-cli/ # rcli command-line tool
│ └── runanywhere-commons/ # Shared C/C++ core
│
├── engines/ # Pluggable inference backends
├── examples/ # Sample apps
├── Playground/ # Real-world reference apps
└── docs/gifs/ # Demo media assets
| Platform | Minimum | Recommended |
|---|---|---|
| iOS | 17.5+ | 17.5+ |
| macOS | 14.5+ | 14.5+ |
| Android | API 24 (7.0) | API 28+ |
| Web | Chrome 96+ / Edge 96+ | Chrome 120+ |
| React Native | 0.83.1+ | 0.85+ (Node.js 22.12+) |
| Flutter | 3.44+ (Dart 3.12+) | 3.44.6+ |
| Python | 3.9+ | 3.12+ |
| Electron | Windows x64 (preview) | — |
Hexagon NPU: Snapdragon with Hexagon v79 / v81 (Snapdragon 8 Elite class), Android arm64.
Memory: 2 GB minimum, 4 GB+ recommended for larger models.
We welcome contributions. See the Contributing Guide for details.
git clone https://github.com/RunanywhereAI/runanywhere-sdks.git
cd runanywhere-sdks
# Doctor / setup helpers
./run doctor
./run setup
# Build native XCFrameworks for local Swift development
./sdk/runanywhere-swift/scripts/build-core-xcframework.sh
# Run the iOS sample app
cd examples/ios/RunAnywhereAI
open RunAnywhereAI.xcodeprojRunAnywhere License (Apache 2.0 based, with additional commercial-use terms).
See LICENSE for details.
On-device AI for every platform.
Run LLMs, vision, speech-to-text, and text-to-speech locally. Private, offline, fast.
One SDK for iOS, Android, Flutter, React Native, Web, and more — with Hexagon NPU acceleration on Snapdragon.
RunAnywhere lets you add AI features to your app that run entirely on-device — no cloud, no latency, no data leaving the device:
One API spans iOS, Android, Flutter, React Native, and Web, and routes to the best engine on each device: Core ML on Apple, WebGPU in the browser, llama.cpp everywhere as a fallback, and the Hexagon NPU on Snapdragon.
QHexRT is RunAnywhere's inference runtime for the Qualcomm Hexagon NPU. It runs LLM, vision, speech, and text-to-speech models directly on the Snapdragon NPU (Hexagon v79 / v81) and ships as a built-in accelerator: your app calls the same loadModel and generate, and it uses the NPU automatically on supported devices.
Measured on a Samsung Galaxy S25 (Snapdragon 8 Elite, Hexagon v79):
| Model | Task | Params | Decode | Time to first token |
|---|---|---|---|---|
| LFM2.5-230M | LLM | 0.23 B | 164 tok/s | 32 ms |
| Qwen3-0.6B | LLM | 0.6 B | 33 tok/s (prefill up to 3,692 tok/s) | 127 ms |
| Llama-3.2-1B | LLM | 1.2 B | 16.3 tok/s | 56 ms |
| Phi-tiny-MoE | MoE LLM | 3.8 B (1.1 B active) | 5–7 tok/s | ~2.5 s |
| InternVL3.5-1B | VLM | 1 B | 37 tok/s | 290 ms |
| Whisper base | ASR | 74 M | ~5× real-time | n/a |
| MeloTTS-EN | TTS | n/a | ~4.5× real-time | n/a |
Available on the Kotlin, Flutter, and React Native SDKs. Snapdragon (Android arm64) only.
| Platform | Status | Install | Docs | NPU |
|---|---|---|---|---|
| Swift (iOS/macOS) | Stable | SPM | docs | — |
| Kotlin (Android) | Stable | Gradle | docs | Yes |
| React Native | Beta | npm | docs | Yes |
| Flutter | Beta | pub.dev | docs | Yes |
| Web (Browser) | Beta | npm | SDK README | — |
| Python (Desktop/Server) | Alpha | pip | SDK README | — |
| Electron | Preview | Build from source | SDK README | — |
CLI (rcli) |
Stable | Homebrew / scripts | SDK README | — |
All SDKs ship on one version line, currently 0.20.11. Pin the same version across the core package and its backends. See Releases for what is published today.
import RunAnywhere
import LlamaCPPRuntime
LlamaCPP.register()
try RunAnywhere.initialize()
var load = RAModelLoadRequest()
load.modelID = "smollm2-360m"
load.category = .language
load.framework = .llamaCpp
_ = await RunAnywhere.loadModel(load)
var req = RALLMGenerateRequest()
req.prompt = "What is the capital of France?"
let result = try await RunAnywhere.generate(req)
print(result.text)Install via Swift Package Manager — add the package URL:
https://github.com/RunanywhereAI/runanywhere-sdks
Products: RunAnywhere, RunAnywhereLlamaCPP, RunAnywhereONNX, RunAnywhereMLX.
import ai.runanywhere.proto.v1.ModelCategory
import ai.runanywhere.proto.v1.SDKEnvironment
import com.runanywhere.sdk.llm.llamacpp.LlamaCPP
import com.runanywhere.sdk.public.RunAnywhere
import com.runanywhere.sdk.public.extensions.*
import com.runanywhere.sdk.public.types.RAModelInfo
import com.runanywhere.sdk.public.types.RAModelLoadRequest
LlamaCPP.register()
RunAnywhere.initialize(
context = this,
environment = SDKEnvironment.SDK_ENVIRONMENT_DEVELOPMENT,
)
val modelId = "smollm2-360m-instruct-q8_0"
RunAnywhere.downloadModelStream(RAModelInfo(id = modelId)).collect { /* progress */ }
RunAnywhere.loadModel(
RAModelLoadRequest(model_id = modelId, category = ModelCategory.MODEL_CATEGORY_LANGUAGE),
)
val result = RunAnywhere.generate("What is the capital of France?")
println(result.text)Install via Gradle (Maven Central):
dependencies {
implementation("io.github.sanchitmonga22:runanywhere-sdk:0.20.11")
implementation("io.github.sanchitmonga22:runanywhere-llamacpp:0.20.11")
// Optional: STT / TTS / VAD
// implementation("io.github.sanchitmonga22:runanywhere-onnx:0.20.11")
}import { RunAnywhere, SDKEnvironment } from '@runanywhere/core';
import { LlamaCPP } from '@runanywhere/llamacpp';
await RunAnywhere.initialize({ environment: SDKEnvironment.SDK_ENVIRONMENT_DEVELOPMENT });
LlamaCPP.register();
await RunAnywhere.downloadModel('smollm2-360m');
await RunAnywhere.loadModel('smollm2-360m');
const result = await RunAnywhere.generate('What is the capital of France?');
console.log(result.text);Install via npm:
npm install @runanywhere/core@0.20.11 @runanywhere/llamacpp@0.20.11import 'package:runanywhere/runanywhere.dart';
import 'package:runanywhere_llamacpp/runanywhere_llamacpp.dart';
await RunAnywhere.initialize();
LlamaCpp.register();
await RunAnywhere.downloadModel('smollm2-360m');
await RunAnywhere.llm.load('smollm2-360m');
final response = await RunAnywhere.llm.chat('What is the capital of France?');
print(response);Install via pub.dev:
dependencies:
runanywhere: ^0.20.11
runanywhere_llamacpp: ^0.20.11
# runanywhere_onnx: ^0.20.11 # STT, TTS, Voiceimport { RunAnywhere, SDKEnvironment } from '@runanywhere/web';
import { LlamaCPP } from '@runanywhere/web-llamacpp';
await RunAnywhere.initialize({
environment: SDKEnvironment.SDK_ENVIRONMENT_DEVELOPMENT,
});
await LlamaCPP.register({ acceleration: 'auto' });
await RunAnywhere.completeServicesInitialization();
await RunAnywhere.loadModel({ modelId: 'qwen2.5-0.5b' });
const result = await RunAnywhere.generate({
prompt: 'What is the capital of France?',
});
console.log(result.text);Install via npm:
npm install @runanywhere/web@0.20.11 @runanywhere/web-llamacpp@0.20.11from runanywhere import RunAnywhere
with RunAnywhere() as ra:
llm = ra.load_llm("qwen2.5-0.5b")
print(llm.generate_text("What is the capital of France?"))Install via pip:
pip install runanywhere==0.20.11| Feature | iOS | Android | Web | React Native | Flutter |
|---|---|---|---|---|---|
| LLM Text Generation | Yes | Yes | Yes | Yes | Yes |
| Streaming | Yes | Yes | Yes | Yes | Yes |
| Speech-to-Text | Yes | Yes | Yes | Yes | Yes |
| Text-to-Speech | Yes | Yes | Yes | Yes | Yes |
| Voice Assistant Pipeline | Yes | Yes | Yes | Yes | Yes |
| Vision Language Models | Yes | Yes | Yes | — | Yes |
| LoRA Adapters | Yes | Yes | Yes | Yes | Yes |
| Hexagon NPU (QHexRT) | — | Yes | — | Yes | Yes |
| Model Download + Progress | Yes | Yes | Yes | Yes | Yes |
| Structured Output (JSON) | Yes | Yes | Yes | Soon | Soon |
| Tool Calling | Yes | Yes | Yes | — | — |
| Embeddings | — | — | Yes | — | — |
| Apple Foundation Models | Yes | — | — | — | — |
Prebuilt bundles on Hugging Face; the SDK downloads the bundle matching the device.
| Model | Task | Params | Bundle |
|---|---|---|---|
| Llama-3.2-1B | LLM | 1.2 B | llama3_2_1b_HNPU |
| LFM2.5-230M / 350M | LLM | 0.23 / 0.35 B | lfm2_5_230m_HNPU · lfm2_5_350m_HNPU |
| Qwen3.5-0.8B / 2B / 4B | LLM | 0.8–4 B | qwen3_5_0_8b_HNPU · 2b · 4b |
| Gemma-4-E2B / E4B | LLM + VLM | ~2 / 4 B | gemma4_e2b_HNPU · gemma4_e4b_HNPU |
| Phi-tiny-MoE | MoE LLM | 3.8 B | phi_tiny_moe_HNPU |
| DeepSeek-R1-Distill-Qwen | LLM | 1.5 / 7 B | 1.5b · 7b |
| Qwen3-VL-2B | VLM | 2 B | qwen3_vl_HNPU |
| InternVL3.5-1B | VLM | 1 B | internvl3_5_1b_HNPU |
| Whisper base / small | ASR | 74 / 244 M | whisper_base_HNPU · whisper_small_HNPU |
| Moonshine tiny / base | ASR | n/a | moonshine_base_HNPU |
| MeloTTS-EN | TTS | n/a | melotts_en_HNPU |
| EmbeddingGemma-300M | Embeddings | 300 M | embeddinggemma_300m_HNPU |
Browse all models on Hugging Face
| Type | Models | Runtime |
|---|---|---|
| LLM | SmolLM2, Qwen 2.5, Llama 3.2, Mistral 7B | llama.cpp |
| Speech-to-Text | Whisper Tiny / Base | ONNX |
| Text-to-Speech | Piper (US / UK English) | ONNX |
| Platform | Source | Download |
|---|---|---|
| iOS | examples/ios/RunAnywhereAI | App Store |
| Android | examples/android/RunAnywhereAI | Google Play |
| Web | examples/web/RunAnywhereAI | Build from source |
| React Native | examples/react-native/RunAnywhereAI | Build from source |
| Flutter | examples/flutter/RunAnywhereAI | Build from source |
| Electron | examples/electron/RunAnywhereAI | Build from source (Windows) |
The Android, Flutter, and React Native apps include an NPU section that detects Hexagon arch and runs LLM, vision, speech, and TTS on the NPU.
Minimal projects to get up and running on each platform:
| Platform | Repository |
|---|---|
| Kotlin (Android) | kotlin-starter-example |
| Swift (iOS) | swift-starter-example |
| Flutter | flutter-starter-example |
| React Native | react-native-starter-app |
Real-world projects built with RunAnywhere. Each ships as a standalone app you can build and run.
A single C/C++ core (runanywhere-commons) behind a C ABI, with thin platform SDKs on top and a plugin registry that selects the best engine per device (llama.cpp, ONNX/sherpa, Core ML, Metal, and QHexRT on the Hexagon NPU). Business logic lives in the core, so one fix lands on all SDKs.
runanywhere-sdks/
├── sdk/
│ ├── runanywhere-swift/ # iOS/macOS SDK
│ ├── runanywhere-kotlin/ # Android SDK
│ ├── runanywhere-web/ # Web SDK (WebAssembly / WebGPU)
│ ├── runanywhere-react-native/ # React Native SDK
│ ├── runanywhere-flutter/ # Flutter SDK
│ ├── runanywhere-python/ # Python SDK (pybind11 over the C core)
│ ├── runanywhere-electron/ # Electron / Node (Windows preview)
│ ├── runanywhere-cli/ # rcli command-line tool
│ └── runanywhere-commons/ # Shared C/C++ core
│
├── engines/ # Pluggable inference backends
├── examples/ # Sample apps
├── Playground/ # Real-world reference apps
└── docs/gifs/ # Demo media assets
| Platform | Minimum | Recommended |
|---|---|---|
| iOS | 17.5+ | 17.5+ |
| macOS | 14.5+ | 14.5+ |
| Android | API 24 (7.0) | API 28+ |
| Web | Chrome 96+ / Edge 96+ | Chrome 120+ |
| React Native | 0.83.1+ | 0.85+ (Node.js 22.12+) |
| Flutter | 3.44+ (Dart 3.12+) | 3.44.6+ |
| Python | 3.9+ | 3.12+ |
| Electron | Windows x64 (preview) | — |
Hexagon NPU: Snapdragon with Hexagon v79 / v81 (Snapdragon 8 Elite class), Android arm64.
Memory: 2 GB minimum, 4 GB+ recommended for larger models.
We welcome contributions. See the Contributing Guide for details.
git clone https://github.com/RunanywhereAI/runanywhere-sdks.git
cd runanywhere-sdks
# Doctor / setup helpers
./run doctor
./run setup
# Build native XCFrameworks for local Swift development
./sdk/runanywhere-swift/scripts/build-core-xcframework.sh
# Run the iOS sample app
cd examples/ios/RunAnywhereAI
open RunAnywhereAI.xcodeprojRunAnywhere License (Apache 2.0 based, with additional commercial-use terms).
See LICENSE for details.