Spaces:
Build error
Build error
porla
Refactor agent logic and enhance data handling; add tools for file processing and update system prompt format
f7a42c7
| from langgraph.graph.message import add_messages | |
| from typing import Annotated | |
| from typing_extensions import TypedDict | |
| class State(TypedDict): | |
| # Messages have the type "list". The `add_messages` function | |
| # in the annotation defines how this state key should be updated | |
| # (in this case, it appends messages to the list, rather than overwriting them) | |
| is_question_reversed: bool | |
| question: str | |
| messages: Annotated[list, add_messages] | |
| task_id: str | |