Cabaca

Untitled

Aug 1st, 2024
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. demo_ephemeral_chat_history_for_chain = ChatMessageHistory()
  2.  
  3. chain_with_message_history = RunnableWithMessageHistory(
  4.  chain,
  5.  lambda session_id: demo_ephemeral_chat_history_for_chain,
  6.  input_messages_key="input",
  7.  history_messages_key="chat_history",
  8. )
  9.  
  10.  
Add Comment
Please, Sign In to add comment