| 51 | # Define the conversation state |
| 52 | # LangGraph uses TypedDict to track state across nodes |
| 53 | class State(TypedDict): |
| 54 | messages: Annotated[list, add_messages] |
| 55 | |
| 56 | |
| 57 | # Create the LangGraph |
nothing calls this directly
no outgoing calls
no test coverage detected