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_prompt import CHAT_PROMPT
from .codereview_prompt import CODEREVIEW_PROMPT
from .debug_prompt import DEBUG_ISSUE_PROMPT
from .precommit_prompt import PRECOMMIT_PROMPT
from .testgen_prompt import TESTGEN_PROMPT
from .thinkdeep_prompt import THINKDEEP_PROMPT
__all__ = [
@@ -16,4 +17,5 @@ __all__ = [
"ANALYZE_PROMPT",
"CHAT_PROMPT",
"PRECOMMIT_PROMPT",
"TESTGEN_PROMPT",
]