Coverage for agentos/vectorstore/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-02 09:59 +0800
1"""AgentOS Vector Store — v1.2.7.
3- FAISSVectorStore: 本地 FAISS 向量存储。
4- ChromaVectorStore: ChromaDB 向量存储。
5- BaseVectorStore: 统一抽象接口。
6"""
8from agentos.vectorstore.db import (
9 BaseVectorStore,
10 FAISSVectorStore,
11 ChromaVectorStore,
12 VectorEntry,
13)
15__all__ = [
16 "BaseVectorStore",
17 "FAISSVectorStore",
18 "ChromaVectorStore",
19 "VectorEntry",
20]