test_output_dict_async() — langchain Function Reference
Architecture documentation for the test_output_dict_async() function in test_history.py from the langchain codebase.
Entity Profile
Dependency Diagram
graph TD aefc56f1_aa64_8bb3_4a46_ef6615049bdd["test_output_dict_async()"] 0af0dfde_fe33_f3e5_b5e6_a3d18260dc67["test_history.py"] aefc56f1_aa64_8bb3_4a46_ef6615049bdd -->|defined in| 0af0dfde_fe33_f3e5_b5e6_a3d18260dc67 e035a3b1_d1a1_c458_c801_af1fc0272f8b["_get_get_session_history()"] aefc56f1_aa64_8bb3_4a46_ef6615049bdd -->|calls| e035a3b1_d1a1_c458_c801_af1fc0272f8b style aefc56f1_aa64_8bb3_4a46_ef6615049bdd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
libs/core/tests/unit_tests/runnables/test_history.py lines 423–453
async def test_output_dict_async() -> None:
runnable = RunnableLambda[Any, dict[str, list[AIMessage]]](
lambda params: {
"output": [
AIMessage(
content="you said: "
+ "\n".join(
[
str(m.content)
for m in params["history"]
if isinstance(m, HumanMessage)
]
+ [params["input"]]
)
)
]
}
)
get_session_history = _get_get_session_history()
with_history = RunnableWithMessageHistory(
runnable,
get_session_history,
input_messages_key="input",
history_messages_key="history",
output_messages_key="output",
)
config: RunnableConfig = {"configurable": {"session_id": "7_async"}}
output = await with_history.ainvoke({"input": "hello"}, config)
assert output == {"output": [AIMessage(content="you said: hello")]}
output = await with_history.ainvoke({"input": "good bye"}, config)
assert output == {"output": [AIMessage(content="you said: hello\ngood bye")]}
Domain
Subdomains
Source
Frequently Asked Questions
What does test_output_dict_async() do?
test_output_dict_async() is a function in the langchain codebase, defined in libs/core/tests/unit_tests/runnables/test_history.py.
Where is test_output_dict_async() defined?
test_output_dict_async() is defined in libs/core/tests/unit_tests/runnables/test_history.py at line 423.
What does test_output_dict_async() call?
test_output_dict_async() calls 1 function(s): _get_get_session_history.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free