fire_rag 1.1.2
fire_rag: ^1.1.2 copied to clipboard
Firebase RAG for AI Agents
1.1.2 #
- ID Fixes
1.1.1 #
- Generated models
1.1.0 #
- Updated chunk persistence to use the serialized
agentic.Chunkdocument shape instead of hand-built field maps. - Stored
record,up,down, andvectoron the top-level chunk document, while keeping app-specific values insidemetadata. - Updated
TaskEmbedto rebuild text fromChunk.fullContentbefore embedding. - Updated
TaskDistillto read and write Firestore records through theChunkmodel path and preserve chunk metadata during recursive distillation. - Updated package documentation to describe the current Firestore schema and how it fits with
rag.
1.0.0 #
- Added
FireRag.init()bootstrap wiring for a shared embedding model, chat model, andTaskManager. - Added Cloud Task executors for chunking, recursive distillation, and embedding work.
- Added
TaskChunkto download source files, create persisted base chunks, and fan out embedding batches. - Added
TaskDistillto build higher-LOD distilled chunks, maintain parent/child linkage fields, and continue recursive summarization until a single output remains. - Added
TaskEmbedto read stored chunk text and write vector embeddings back to Firestore documents. - Added
CloudRecursiveChunkingTaskManageras the package entry point for recursive ingestion workflows.