KOSHA Phase 0 β Android .task File
KOSHA (ΰ€ΰ₯ΰ€Ά) β Private on-device Indian finance tracker.
This is the MediaPipe-ready .task file for Android LiteRT deployment.
The fine-tuned merged model is at 2796gauravc/kosha-functiongemma-phase0.
File Info
| Property | Value |
|---|---|
| Base model | FunctionGemma 270M |
| Quantization | dynamic_int8 |
| KV cache max len | 1024 |
| Size | ~290 MB |
| Format | MediaPipe .task (LiteRT) |
Functions
log_expenseβ Indian bills, UPI, groceries, fuel, dininglog_incomeβ Salary, freelance, UPI receivedno_expenseβ OTP, promotions, non-financial messages
Android Integration
// build.gradle.kts
implementation("com.google.mediapipe:tasks-genai:0.10.22")
// Usage
val options = LlmInference.LlmInferenceOptions.builder()
.setModelPath("/data/local/tmp/kosha_phase0_q8_ekv1024.task")
.setMaxTokens(1024)
.setTopK(64)
.setTopP(0.95f)
.setTemperature(0.1f) // Low temp for deterministic function calls
.setPreferredBackend(LlmInference.Backend.CPU) // CPU recommended for Gemma 270M
.build()
val llm = LlmInference.createFromOptions(context, options)
val result = llm.generateResponse(yourFunctionGemmaPrompt)
// Parse: <start_function_call>call:log_expense{...}<end_function_call>
- Downloads last month
- -
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
π
Ask for provider support
Model tree for 2796gauravc/kosha-functiongemma-phase0-tflite
Base model
google/functiongemma-270m-it
Finetuned
2796gauravc/kosha-functiongemma-phase0