This commit is contained in:
Mason Daugherty 2025-07-06 23:09:45 -04:00
parent 2a2c9cd5ba
commit f7dcc834a8
No known key found for this signature in database

View File

@ -4,7 +4,7 @@ from langchain_core.agents import AgentAction
def format_xml(
intermediate_steps: List[Tuple[AgentAction, str]],
intermediate_steps: list[tuple[AgentAction, str]],
*,
escape_xml: bool = True,
) -> str: