feat: solution for 'Повторный экзамен #2: Граф с рефлексией на код'

This commit is contained in:
2026-06-29 12:00:33 +03:00
commit 7c8d02b756
3 changed files with 49 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from typing import TypedDict, Dict
class CodeReviewState(TypedDict):
code: str
draft_review: str
criteria_scores: Dict[str, int]
weakest_criterion: str
verdict: str
round: int
max_rounds: int