- EmotionEngine: 5状态马尔可夫情绪机 + 蒙特卡洛转移 - VectorMemory: TF-IDF向量记忆 + SQLite持久化 + RAG检索 - AgentBrain: Ollama/OpenAI/Dummy三后端LLM - BehaviorScheduler: 优先级/冷却/活跃度调度 - FastAPI服务器 + WebSocket实时推送 - perception: 键鼠监控 + 屏幕截图 - ui/pet_window: PySide6桌宠窗口 + 像素动画 - assets/pet: 5情绪各2帧像素艺术资源
18 lines
243 B
Python
18 lines
243 B
Python
"""
|
|
ui/__init__.py
|
|
==============
|
|
UI 层:桌面宠物窗口渲染。
|
|
"""
|
|
|
|
from ui.pet_window import (
|
|
PetWindow,
|
|
DummyPetWindow,
|
|
create_pet_window,
|
|
)
|
|
|
|
__all__ = [
|
|
"PetWindow",
|
|
"DummyPetWindow",
|
|
"create_pet_window",
|
|
]
|