core[patch]: message history error typo (#14361)

This commit is contained in:
Erick Friis 2023-12-06 14:20:10 -08:00 committed by GitHub
parent e5bd32ff6d
commit 8f95a8206b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -280,7 +280,7 @@ class RunnableWithMessageHistory(RunnableBindingBase):
example_input = {self.input_messages_key: "foo"}
example_config = {"configurable": {"session_id": "123"}}
raise ValueError(
"session_id_id is required."
"session_id is required."
" Pass it in as part of the config argument to .invoke() or .stream()"
f"\neg. chain.invoke({example_input}, {example_config})"
)