Вынес агентов в отдельные файлы

This commit is contained in:
ki.sagidullin
2026-04-12 08:51:33 +05:00
parent f110f52e91
commit 324097988b
9 changed files with 203 additions and 100 deletions

4
agent/__init__.py Normal file
View File

@@ -0,0 +1,4 @@
from .developer import DeveloperAgent
from .reviewer import ReviewerAgent
__all__ = ["DeveloperAgent", "ReviewerAgent"]