from typing import TypedDict from langgraph.graph import END, START, StateGraph class State(TypedDict): message: str reply: str