MessageState
- This is a predefined state schema, this allows to store llm responses parallely.
- This is useful for chat based applications and agentic workflows involving llm calls
- Do not use this for compuational kind of schemas.
- Message state
class MessagesState(TypedDict):
messages: Annotated[list[AnyMessage], add_messages]
- Refer Here for the notebook with MessagesState
