| 65 | |
| 66 | |
| 67 | class PipelineState(TypedDict, total=False): |
| 68 | competitor: str |
| 69 | monitor_urls: list[str] |
| 70 | previous_hashes: dict[str, str] |
| 71 | |
| 72 | changes_detected: Annotated[list, _merge_lists] |
| 73 | research_results: Annotated[list, _merge_lists] |
| 74 | comparison_matrix: dict |
| 75 | battlecard: dict |
| 76 | alerts_sent: Annotated[list, _merge_lists] |
| 77 | |
| 78 | quality_score: float |
| 79 | reflexion_count: int |
| 80 | error: str | None |
| 81 | |
| 82 | |
| 83 | # --------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected