Store, version, and govern knowledge embeddings in one place. Share context across agents while maintaining access control and compliance.
Manage multiple knowledge bases with versioning and access control. Connect any vector database while centralizing governance in Eevee.
Advanced RAG capabilities with hybrid search, reranking, and context optimization. Ensure agents get the most relevant knowledge for every query.
Fine-grained permissions for knowledge bases. Control which agents and users can access sensitive documents and data.
Add, update, or remove documents without redeploying agents. Knowledge bases update in real-time across all applications.
Reference knowledge bases from Eevee Server with built-in access control
import eevee as ev
# Load knowledge base from Eevee Server
kb = ev.load("knowledge", "product_docs")
# Use with RAG agent
agent = Agent(
tools=[kb.search],
system_message="""
Use the product_docs knowledge base
to answer customer questions.
"""
)
# Knowledge updates automatically
# Access control enforced by Eevee policies