21 lines
518 B
Python
21 lines
518 B
Python
"""
|
|
HCFS - Context-Aware Hierarchical Context File System
|
|
|
|
A virtual filesystem that maps hierarchical paths to context blobs,
|
|
enabling AI agents to navigate and manage context at different scopes.
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "Tony"
|
|
|
|
from .core.context_db import ContextDatabase
|
|
from .core.filesystem import HCFSFilesystem
|
|
from .core.embeddings import EmbeddingManager
|
|
from .api.server import ContextAPI
|
|
|
|
__all__ = [
|
|
"ContextDatabase",
|
|
"HCFSFilesystem",
|
|
"EmbeddingManager",
|
|
"ContextAPI",
|
|
] |