Fix remaining TestGenRequest reference in format_response method

Fixed NameError that was causing Docker container crashes:
- Updated type annotation in format_response method from TestGenRequest to TestGenerationRequest
- This was the last missing reference from the class rename

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Fahad
2025-06-16 06:08:58 +04:00
parent 2cfe0b163a
commit 805e8d6d01

View File

@@ -418,7 +418,7 @@ class TestGenerationTool(BaseTool):
return full_prompt
def format_response(self, response: str, request: TestGenRequest, model_info: Optional[dict] = None) -> str:
def format_response(self, response: str, request: TestGenerationRequest, model_info: Optional[dict] = None) -> str:
"""
Format the test generation response.