Phase 2 build initial
This commit is contained in:
21
hcfs-python/hcfs/__init__.py
Normal file
21
hcfs-python/hcfs/__init__.py
Normal file
@@ -0,0 +1,21 @@
|
||||
"""
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user