Pedro
defining routes, improving graph and other work related to tester node
76e192b
Raw
History Blame Contribute Delete
366 Bytes
from multi_agent_sdlc.models import TesterSummary
from multi_agent_sdlc.tools.tester.descriptions import SUBMIT_TESTER_SUMMARY_DESCRIPTION
from langchain.tools import tool
@tool(
"submit_tester_summary",
description=SUBMIT_TESTER_SUMMARY_DESCRIPTION,
)
def submit_tester_summary(
summary: TesterSummary,
) -> str:
return "Tester summary accepted."