A unified cross-platform AI client supporting seamless transitions between standard cloud APIs and on-device, offline execution of custom and uncensored language models.
A production-ready, cross-platform AI chat client built with Flutter. It unifies local on-device LLM inference (Android) with cloud API access, giving users full control over how their models run.

Image generation tested on Moto G71 (Snapdragon), Oneplus 10r (Mediatek), Pixel 6A (Tensor), Poco F1 (Snapdragon), Samsung s23 (Snapdragon) 4 steps fast

Generated on pixel 6 with 20 step
package:httpflutter_background_service + flutter_local_notifications┌─────────────────────────────────────────────────────────────┐
│ UI Layer │
│ ChatView / TaskView / ModelView / SettingsView │
└──────────────────────────┬──────────────────────────────────┘
│
┌──────────────────────────▼──────────────────────────────────┐
│ Controllers (GetX) │
│ ChatController · TaskController · ModelController │
│ SettingsController · HomeController │
└──────────────────────────┬──────────────────────────────────┘
│
┌──────────────────────────▼──────────────────────────────────┐
│ Services │
│ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────┐ │
│ │ InferenceService│ │ CloudService │ │DownloadSvc │ │
│ │ (local GGUF) │ │ (OpenAI/Claude/ │ │ (model dl) │ │
│ │ │ │ Gemini/Kimi) │ │ │ │
│ └─────────────────┘ └─────────────────┘ └─────────────┘ │
│ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────┐ │
│ │ HiveService │ │ DeviceInfoSvc │ │ExecutionSvc │ │
│ │ ( persistence) │ │ (RAM/GPU tier) │ │ (bg tasks) │ │
│ └─────────────────┘ └─────────────────┘ └─────────────┘ │
└─────────────────────────────────────────────────────────────┘
The app uses llama_flutter_android, a custom Flutter plugin wrapping llama.cpp for ARM64 devices. At runtime it:
generateChat() with native chat-template support (ChatML, Llama-3, Gemma, Phi).Idle detection (5s) and hard timeouts (180s) keep the UX responsive even on underpowered hardware.
CloudService normalizes four different API shapes into a single interface:
/v1/chat/completionsgenerateContent with inline image base64API keys are stored in Hive and never transmitted anywhere except to the provider’s endpoint.
Local inference is conditionally compiled:
inference_android.dart (full llama.cpp engine)inference_stub.dart (cloud-only, local coming soon)inference_android.dart (full llama.cpp engine via Metal GPU)The InferenceService exposes supportsLocalInference so the UI can hide local-model UI on unsupported platforms.
| Platform | Local Inference | Cloud APIs | Notes |
|---|---|---|---|
| Android | ✅ Yes | ✅ Yes | CPU offload via NEON; minSdk 28 |
| iOS | ✅ Yes | ✅ Yes | Metal GPU acceleration |
| Web | ❌ No | ✅ Yes | Cloud-only (local coming soon) |
The iPad release is distributed as a standalone ZIP package for sideloading. Download the latest PrivateLM-iOS.zip from the Releases page, extract it, and install the .ipa via AltStore, Sideloadly, or Xcode. iPhone support is experimental — iPad is the recommended iOS target due to RAM requirements for local models.
flutter pub get
flutter build apk --debug
Release APKs require a stable signing key. Copy
android/key.properties.example to android/key.properties, fill in the
keystore values, and keep both the key and its backup. Android accepts an APK
upgrade only when it is signed with the same key as the installed APK.
cp android/key.properties.example android/key.properties
flutter build apk --release --split-per-abi
Never rotate the signing key between GitHub releases. The per-ABI APKs must
also keep increasing the build number in pubspec.yaml.
flutter pub get
cd ios
pod install
flutter build ios
flutter pub get
flutter build web --release
MIT — see LICENSE for details.