Instructions to use ElLabs/mobile-actions-runtime with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- LiteRT-LM
How to use ElLabs/mobile-actions-runtime with LiteRT-LM:
# LiteRT-LM runs on various platforms (Android, iOS, Windows, Linux, macOS, IoT, Web/WASM) # and supports many APIs (C++, Python, Kotlin, Swift, JavaScript, Flutter). # For platform-specific integration guides, please refer to the official developer website: # https://ai.google.dev/edge/litert-lm # To try LiteRT-LM, the easiest way is to use our CLI tool. # 1. Install the LiteRT-LM CLI tool: pip install -U litert-lm # 2. Download and run this model locally: # See: https://ai.google.dev/edge/litert-lm/cli litert-lm run \ --from-huggingface-repo=ElLabs/mobile-actions-runtime \ --prompt="Write me a poem"
- Notebooks
- Google Colab
- Kaggle
Add Brief AI Lite manifest
Browse files- model_manifest.json +12 -0
model_manifest.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model": "Brief AI",
|
| 3 |
+
"version": "0.1.0",
|
| 4 |
+
"file": "mobile-actions_q8_ekv1024.litertlm",
|
| 5 |
+
"sizeBytes": 285561008,
|
| 6 |
+
"sha256": "9a9c590143b6a88ecaf074c574c2bfe311ba4160559b9e105fa4ac4ef0b57aef",
|
| 7 |
+
"runtime": "LiteRT-LM",
|
| 8 |
+
"format": "litertlm",
|
| 9 |
+
"use": "Ask Brief routing and safe local actions",
|
| 10 |
+
"storage": "App-private after explicit user download",
|
| 11 |
+
"privacy": "No notification content should be uploaded to use this model."
|
| 12 |
+
}
|