Initial commit: breakpilot-lehrer - Lehrer KI Platform
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>
This commit is contained in:
24
agent-core/__init__.py
Normal file
24
agent-core/__init__.py
Normal file
@@ -0,0 +1,24 @@
|
||||
"""
|
||||
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",
|
||||
]
|
||||
Reference in New Issue
Block a user