New tool: testgen

Generates unit tests and encourages model to auto-detect framework and testing style from existing sample (if available)
This commit is contained in:
Fahad
2025-06-14 15:41:47 +04:00
parent 7d33aafcab
commit 4086306c58
14 changed files with 1118 additions and 9 deletions

View File

@@ -7,6 +7,7 @@ from .chat import ChatTool
from .codereview import CodeReviewTool
from .debug import DebugIssueTool
from .precommit import Precommit
from .testgen import TestGenTool
from .thinkdeep import ThinkDeepTool
__all__ = [
@@ -16,4 +17,5 @@ __all__ = [
"AnalyzeTool",
"ChatTool",
"Precommit",
"TestGenTool",
]