gemini_nano_android 0.1.1
gemini_nano_android: ^0.1.1 copied to clipboard
A Flutter plugin to access on-device Gemini Nano models via Android AI Core. Enables offline inference and privacy-first text generation.
0.1.1 #
- Added code coverage (Codecov) badge to README.
- Added GitHub Actions workflow for automated test coverage reporting.
0.1.0 #
- Breaking Change: The
generatemethod now returnsFuture<List<String>>instead ofFuture<String>to support multiple candidate responses. - Added optional generation parameters to
generate:temperature,seed,topK,candidateCount, andmaxOutputTokens. - Updated example app to support configuring generation parameters.
- Documentation updates.
0.0.2 #
- Migrated from
com.google.ai.edge.aicoretocom.google.mlkit:genai-promptAPI (v1.0.0-beta1). - Refactored
isAvailablelogic in Android plugin. - Added execution time display to the example application.
0.0.1 #
- Initial release. Support for text generation via Gemini Nano on Android.
- Added
GeminiNanoAndroidclass methods:getPlatformVersion,isAvailable,generate.