Upload agentframe/__init__.py with huggingface_hub
Browse files- agentframe/__init__.py +41 -0
agentframe/__init__.py
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
AgentFrame — Agent 专用上下文保持框架
|
| 3 |
+
======================================
|
| 4 |
+
脑 = DeepSeek (LLM Provider)
|
| 5 |
+
手 = 工具执行 (Function Calling)
|
| 6 |
+
记忆 = 四层上下文保持 (认知 × 路由 × 存储 × 物理)
|
| 7 |
+
|
| 8 |
+
版本: 3.0.0-preview (先明·第三代预览版)
|
| 9 |
+
"""
|
| 10 |
+
__version__ = "3.0.0-preview"
|
| 11 |
+
|
| 12 |
+
from .core.quad import (
|
| 13 |
+
CompressedKV,
|
| 14 |
+
HierarchicalKV,
|
| 15 |
+
ReversibleQuantizer,
|
| 16 |
+
AbsorbedMLA,
|
| 17 |
+
ChunkSelection,
|
| 18 |
+
LandmarkRouter,
|
| 19 |
+
ForgettingCurve,
|
| 20 |
+
KVPager,
|
| 21 |
+
SubTask,
|
| 22 |
+
RetrievalDirective,
|
| 23 |
+
MetaCog,
|
| 24 |
+
QuadLayerAgent,
|
| 25 |
+
)
|
| 26 |
+
|
| 27 |
+
__all__ = [
|
| 28 |
+
"__version__",
|
| 29 |
+
"CompressedKV",
|
| 30 |
+
"HierarchicalKV",
|
| 31 |
+
"ReversibleQuantizer",
|
| 32 |
+
"AbsorbedMLA",
|
| 33 |
+
"ChunkSelection",
|
| 34 |
+
"LandmarkRouter",
|
| 35 |
+
"ForgettingCurve",
|
| 36 |
+
"KVPager",
|
| 37 |
+
"SubTask",
|
| 38 |
+
"RetrievalDirective",
|
| 39 |
+
"MetaCog",
|
| 40 |
+
"QuadLayerAgent",
|
| 41 |
+
]
|