The LLM Inference API lets you run large language models (LLMs) completely on-device for Android applications, which you can use to perform a wide range of tasks, such as generating text, retrieving information in natural language form, and summarizing documents. The task provides built-in support for multiple text-to-text large language models, so you can apply the latest on-device generative AI models to your Android apps.
To quickly add the LLM Inference API to your Android application, follow the Quickstart. For a basic example of an Android application running the LLM Inference API, see the sample application. For a more in-depth understanding of how the LLM Inference API works, refer to the configuration options, model conversion, and LoRA tuning sections.
You can see this task in action with the MediaPipe Studio demo. For more information about the capabilities, models, and configuration options of this task, see the Overview.
Quickstart
Use the following steps to add the LLM Inference API to your Android application. The LLM Inference API is optimized for high-end Android devices, such as Pixel 8 and Samsung S23 or later, and does not reliably support device emulators.
Add dependencies
The LLM Inference API uses the com.google.mediapipe:tasks-genai
library. Add this
dependency to the build.gradle
file of your Android app:
dependencies {
implementation 'com.google.mediapipe:tasks-genai:0.10.22'
}
For devices with Android 12 (API 31) or higher, add the native OpenCL library
dependency. For more information, see the documentation on the
uses-native-library
tag.
Add the following uses-native-library
tags to the AndroidManifest.xml
file:
<uses-native-library android:name="libOpenCL.so" android:required="false"/>
<uses-native-library android:name="libOpenCL-car.so" android:required="false"/>
<uses-native-library android:name="libOpenCL-pixel.so" android:required="false"/>
Download a model
Download Gemma-3 1B in a 4-bit quantized format from Hugging Face. For more information on the available models, see the Models documentation.
Push the content of the output_path folder to the Android device.
$ adb shell rm -r /data/local/tmp/llm/ # Remove any previously loaded models
$ adb shell mkdir -p /data/local/tmp/llm/
$ adb push output_path /data/local/tmp/llm/model_version .task
Initialize the Task
Initialize the task with basic configuration options:
// Set the configuration options for the LLM Inference task
val taskOptions = LlmInferenceOptions.builder()
.setModelPath('/data/local/tmp/llm/model_version .task')
.setMaxTopK(64)
.build()
// Create an instance of the LLM Inference task
llmInference = LlmInference.createFromOptions(context, taskOptions)
Run the Task
Use the generateResponse()
method to generate a text response. This produces a
single generated response.
val result = llmInference.generateResponse(inputPrompt)
logger.atInfo().log("result: $result")
To stream the response, use the generateResponseAsync()
method.
val options = LlmInference.LlmInferenceOptions.builder()
...
.setResultListener { partialResult, done ->
logger.atInfo().log("partial result: $partialResult")
}
.build()
llmInference.generateResponseAsync(inputPrompt)
Sample application
The sample application is an example of a basic text generation app for Android, using the LLM Inference API. You can use the app as a starting point for your own Android app, or refer to it when modifying an existing app. The example code is hosted on GitHub.
Clone the git repository using the following command:
git clone https://github.com/google-ai-edge/mediapipe-samples
After creating a local version of the example code, you can import the project into Android Studio and run the app. For more information, see the Setup Guide for Android.
Configuration options
Use the following configuration options to set up an Android app:
Option Name | Description | Value Range | Default Value |
---|---|---|---|
modelPath |
The path to where the model is stored within the project directory. | PATH | N/A |
maxTokens |
The maximum number of tokens (input tokens + output tokens) the model handles. | Integer | 512 |
topK |
The number of tokens the model considers at each step of generation. Limits predictions to the top k most-probable tokens. | Integer | 40 |
temperature |
The amount of randomness introduced during generation. A higher temperature results in more creativity in the generated text, while a lower temperature produces more predictable generation. | Float | 0.8 |
randomSeed |
The random seed used during text generation. | Integer | 0 |
loraPath |
The absolute path to the LoRA model locally on the device. Note: this is only compatible with GPU models. | PATH | N/A |
resultListener |
Sets the result listener to receive the results asynchronously. Only applicable when using the async generation method. | N/A | N/A |
errorListener |
Sets an optional error listener. | N/A | N/A |
Model conversion
The LLM Inference API is compatible with the following types of models, some of which require model conversion. Use the table to identify the required steps method for your model.
Models | Conversion method | Compatible platforms | File type |
---|---|---|---|
Gemma-3 1B | No conversion required | Android, web | .task |
Gemma 2B, Gemma 7B, Gemma-2 2B | No conversion required | Android, iOS, web | .bin |
Phi-2, StableLM, Falcon | MediaPipe conversion script | Android, iOS, web | .bin |
All PyTorch LLM models | AI Edge Torch Generative library | Android, iOS | .task |
To learn how you can convert other models, see the Model Conversion section.
LoRA customization
The LLM Inference API supports LoRA (Low-Rank Adaptation) tuning using the PEFT (Parameter-Efficient Fine-Tuning) library. LoRA tuning customizes the behavior of LLMs through a cost-effective training process, creating a small set of trainable weights based on new training data rather than retraining the entire model.
The LLM Inference API supports adding LoRA weights to attention layers of the
Gemma-2 2B, Gemma
2B and
Phi-2 models. Download the model in
the safetensors
format.
The base model must be in the safetensors
format in order to create LoRA
weights. After LoRA training, you can convert the models into the FlatBuffers
format to run on MediaPipe.
Prepare LoRA weights
Use the LoRA Methods guide from PEFT to train a fine-tuned LoRA model on your own dataset.
The LLM Inference API only supports LoRA on attention layers, so only specify the
attention layers in LoraConfig
:
# For Gemma
from peft import LoraConfig
config = LoraConfig(
r=LORA_RANK,
target_modules=["q_proj", "v_proj", "k_proj", "o_proj"],
)
# For Phi-2
config = LoraConfig(
r=LORA_RANK,
target_modules=["q_proj", "v_proj", "k_proj", "dense"],
)
After training on the prepared dataset and saving the model, the fine-tuned LoRA
model weights are available in adapter_model.safetensors
. The safetensors
file is the LoRA checkpoint used during model conversion.
Model conversion
Use the MediaPipe Python Package to convert the model weights into the
Flatbuffer format. The ConversionConfig
specifies the base model options along
with the additional LoRA options.
import mediapipe as mp
from mediapipe.tasks.python.genai import converter
config = converter.ConversionConfig(
# Other params related to base model
...
# Must use gpu backend for LoRA conversion
backend='gpu',
# LoRA related params
lora_ckpt=LORA_CKPT ,
lora_rank=LORA_RANK ,
lora_output_tflite_file=LORA_OUTPUT_FILE ,
)
converter.convert_checkpoint(config)
The converter will produce two Flatbuffer files, one for the base model and another for the LoRA model.
LoRA model inference
Android supports static LoRA during initialization. To load a LoRA model, specify the LoRA model path as well as the base LLM.
// Set the configuration options for the LLM Inference task
val options = LlmInferenceOptions.builder()
.setModelPath(BASE_MODEL_PATH )
.setMaxTokens(1000)
.setTopK(40)
.setTemperature(0.8)
.setRandomSeed(101)
.setLoraPath(LORA_MODEL_PATH )
.build()
// Create an instance of the LLM Inference task
llmInference = LlmInference.createFromOptions(context, options)
To run LLM inference with LoRA, use the same generateResponse()
or
generateResponseAsync()
methods as the base model.