AlphaAvatar Framework plugin for RAG service
Project description
RAG Plugin for AlphaAvatar
A modular Retrieval-Augmented Generation (RAG) middleware for AlphaAvatar, enabling agents to store, search, and ground answers on user-provided or locally stored knowledge.
This plugin allows AlphaAvatar agents to work with persistent knowledge bases built from files, documents, and web content—decoupling agent reasoning from raw context windows and enabling long-term, reusable memory through retrieval.
The default backend is RAGAnything, but the plugin is designed to support multiple RAG frameworks in a pluggable way.
Features
-
Persistent Knowledge Indexing Ingest and store documents (PDF / Markdown / text / HTML / web snapshots) into a searchable local index.
-
Grounded Answer Generation Retrieve relevant chunks and generate answers grounded in explicit sources rather than model-only knowledge.
-
Unified RAG Interface Abstracts indexing and querying behind a clean, agent-friendly API, independent of the underlying RAG engine.
-
Incremental & Reusable Memory Indexes can be extended, refreshed, and reused across conversations and sessions.
-
Seamless Integration with DeepResearch Designed to work naturally with DeepResearch outputs (scraped pages, downloaded PDFs) for building long-term knowledge bases.
When to Use RAG
Use indexing() when:
- The user explicitly asks to save, store, remember, or archive content (e.g. “保存一下”, “留着以后查”, “做个资料库”)
- The user provides files or URLs and implies future reuse
- Multiple documents are downloaded or collected (e.g. via DeepResearch)
- The same or similar documents are referenced repeatedly across turns
Use query() when:
- The user asks questions about previously indexed content
- Answers must be grounded in user-owned data
- Searching across a growing local knowledge base is required
Functionality
It exposes two core operations (op) that can be composed into an agent workflow:
-
indexing Persist files, documents, or web content into a searchable local index. Use this when the content should be saved for future retrieval.
-
query Retrieve relevant chunks from an existing index and generate grounded answers. Use this when answering questions based on previously indexed content.
Typical Workflow
-
Acquire content
- User uploads files
- Local file paths are provided
- Web pages are scraped or downloaded via DeepResearch
-
Decide persistence intent
- Explicit user intent → index directly
- Ambiguous intent → ask a clarification question
-
Index content
- Call
indexing()to build or update the knowledge base
- Call
-
Retrieve & answer
- Call
query()to retrieve relevant chunks - Generate grounded, source-aware answers
- Call
Installation
pip install alpha-avatar-plugins-rag
Supported RAG Frameworks
Default: RAG-Anything
RAGAnything is a flexible RAG framework optimized for:
- Heterogeneous document formats
- Incremental indexing
- Local-first storage and retrieval
- Agent-oriented workflows
It provides the default indexing and querying backend for the AlphaAvatar RAG plugin.
Additional RAG backends can be integrated in the future without changing agent logic.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file alpha_avatar_plugins_rag-0.5.0.tar.gz.
File metadata
- Download URL: alpha_avatar_plugins_rag-0.5.0.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
397552254903a29994f7340d4451152278d7e6cbe5154e13b71e4d661fb9674b
|
|
| MD5 |
fca66ba5838fdb48bd67067a62b8b97c
|
|
| BLAKE2b-256 |
e342ca17d3575f5268ebd2f476b096dd58572bc0a11437ef6770dcb9625024f3
|
File details
Details for the file alpha_avatar_plugins_rag-0.5.0-py3-none-any.whl.
File metadata
- Download URL: alpha_avatar_plugins_rag-0.5.0-py3-none-any.whl
- Upload date:
- Size: 7.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c159b907ad23cb2d99d3f57733d884ea8953e3f3008e011838f422d397f16909
|
|
| MD5 |
5211aae650082959f76d1b391440c36b
|
|
| BLAKE2b-256 |
12d44dc8acf2496d30ad551f0976cf4c76aa35e5dae27acf6e7df3081b9da9e3
|