This commit is contained in:
2025-09-01 06:43:11 +02:00
parent bde3fc0df9
commit 45eb2b8bc5
38 changed files with 3424 additions and 915 deletions

View File

@@ -0,0 +1,8 @@
from .prompt_manager import PromptManager
from .datatypes import Character, Memory
from .llmagent import LLMAgent
from .memory_stream import MemoryStream
from .character_agent import CharacterAgent
from .roleplay_system import RoleplaySystem
__all__ = ['Character', 'Memory', 'CharacterAgent', 'RoleplaySystem', 'LLMAgent', 'MemoryStream', 'PromptManager']