ee784d3 ae8a6c0
1
2
3
4
5
6
7
8
9
from typing import List, TypedDict from langchain_core.documents import Document class GraphState(TypedDict): question: str context: List[Document] answer: str