더북(TheBook)
        # ---- Summary Agent에게 .md 리포트 생성 요청 ----
        # 모든 분석 결과와 개선 코드를 Summary Agent에 전달하여 마크다운 리포트 생성
        final_report_path = call_summary(
            code_path=code_path,
            pdf_path=pdf_path,
            quick=quick,
            secrets=secrets,
            static=static,
            criteria=criteria,
            remediation_summary=analysis_summary,
            patched_code=patched_code,
            report_path=report_path,
        )

        # 최종 결과를 RemediationResponse로 반환
        return agents_pb2.RemediationResponse(
            analysis_summary=analysis_summary,
            patched_code=patched_code,
            report_path=final_report_path,
        )