Upload mythos/__init__.py
Browse files- mythos/__init__.py +28 -0
mythos/__init__.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Mythos — Multi-Agent Framework
|
| 2 |
+
|
| 3 |
+
A Python framework for building dynamic, memory-aware multi-agent systems
|
| 4 |
+
with formal orchestration.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
__version__ = "0.1.0"
|
| 8 |
+
|
| 9 |
+
from .agent import Agent, AgentConfig
|
| 10 |
+
from .pantheon import Pantheon
|
| 11 |
+
from .oracle import Oracle, ProcessType
|
| 12 |
+
from .memory import Memory, MemoryType
|
| 13 |
+
from .message import Message, MessageType
|
| 14 |
+
from .tool import Tool, ToolRegistry
|
| 15 |
+
|
| 16 |
+
__all__ = [
|
| 17 |
+
"Agent",
|
| 18 |
+
"AgentConfig",
|
| 19 |
+
"Pantheon",
|
| 20 |
+
"Oracle",
|
| 21 |
+
"ProcessType",
|
| 22 |
+
"Memory",
|
| 23 |
+
"MemoryType",
|
| 24 |
+
"Message",
|
| 25 |
+
"MessageType",
|
| 26 |
+
"Tool",
|
| 27 |
+
"ToolRegistry",
|
| 28 |
+
]
|