Demo_1 / src /core /graph_state.py
Dinesh310's picture
Rename src/core/state.py to src/core/graph_state.py
f953109 verified
raw
history blame contribute delete
174 Bytes
from typing import List, TypedDict
from langchain_core.documents import Document
class GraphState(TypedDict):
question: str
context: List[Document]
answer: str