mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-03 19:57:51 +00:00
Fix intermediate steps example in docs : replaced json.dumps with Langchain's dumps() (#10593)
The intermediate steps example in docs has an example on how to retrieve and display the intermediate steps. But the intermediate steps object is of type AgentAction which cannot be passed to json.dumps (it raises an error). I replaced it with Langchain's dumps function (from langchain.load.dump import dumps) which is the preferred way to do so.
This commit is contained in:
parent
a79f595543
commit
c59a5bae48
@ -166,9 +166,9 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"source": [
|
"source": [
|
||||||
"import json\n",
|
"from langchain.load.dump import dumps\n",
|
||||||
"\n",
|
"\n",
|
||||||
"print(json.dumps(response[\"intermediate_steps\"], indent=2))"
|
"print(dumps(response[\"intermediate_steps\"], pretty=True))"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user