flutter_agentic_memory 0.2.0
flutter_agentic_memory: ^0.2.0 copied to clipboard
Semantic memory for Flutter AI agents — embeddings, on-device vector search, and long-term recall that plugs into flutter_agentic.
0.2.0 — 2026-07-02 #
0.1.1 — 2026-07-02 #
- Security hardening: the Gemini API key is now sent in the
x-goog-api-keyheader instead of the URL query string, so it can no longer leak into request logs. - Formatted with
dart formatfor full pub.dev static-analysis score.
0.1.0 — 2026-07-02 #
Initial release.
EmbeddingProviderinterface withGeminiEmbeddingProvider(embedContent + batch endpoint) andOpenAIEmbeddingProvider(custombaseUrlsupported).VectorStoreinterface with cosine-similarity search (topK,minScore, metadatafilter),deleteWhere.InMemoryVectorStore(ephemeral) andHiveVectorStore(persistent, survives app restarts).SemanticMemory— a drop-in flutter_agenticMemoryStorethat embeds conversation turns and addsrecall(query)andbuildContext(query)for meaning-based long-term memory.cosineSimilarityutility.