Services: Admin-Lehrer, Backend-Lehrer, Studio v2, Website, Klausur-Service, School-Service, Voice-Service, Geo-Service, BreakPilot Drive, Agent-Core Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
770 B
Python
25 lines
770 B
Python
"""
|
|
Breakpilot Agent Core - Multi-Agent Infrastructure
|
|
|
|
This module provides the shared infrastructure for Breakpilot's multi-agent architecture:
|
|
- Session Management: Agent sessions with checkpoints and heartbeats
|
|
- Shared Brain: Memory store, context management, and knowledge graph
|
|
- Orchestration: Message bus, supervisor, and task routing
|
|
"""
|
|
|
|
from agent_core.sessions import AgentSession, SessionManager, SessionState
|
|
from agent_core.brain import MemoryStore, ConversationContext
|
|
from agent_core.orchestrator import MessageBus, AgentSupervisor, AgentMessage
|
|
|
|
__version__ = "1.0.0"
|
|
__all__ = [
|
|
"AgentSession",
|
|
"SessionManager",
|
|
"SessionState",
|
|
"MemoryStore",
|
|
"ConversationContext",
|
|
"MessageBus",
|
|
"AgentSupervisor",
|
|
"AgentMessage",
|
|
]
|