From 475007d63ac4f8fcc5f05214bf56fe7e86baf3d7 Mon Sep 17 00:00:00 2001 From: Michael Landis Date: Sat, 3 Jun 2023 16:39:27 -0700 Subject: [PATCH] fix: correct momento chat history notebook typo and title (#5646) This PR corrects a minor typo in the Momento chat message history notebook and also expands the title from "Momento" to "Momento Chat History", inline with other chat history storage providers. #### Before submitting #### Who can review? cc @dev2049 who reviewed the original integration --- .../memory/examples/momento_chat_message_history.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/memory/examples/momento_chat_message_history.ipynb b/docs/modules/memory/examples/momento_chat_message_history.ipynb index 85e6fa59fd6..2332f2eb9d2 100644 --- a/docs/modules/memory/examples/momento_chat_message_history.ipynb +++ b/docs/modules/memory/examples/momento_chat_message_history.ipynb @@ -5,7 +5,7 @@ "id": "91c6a7ef", "metadata": {}, "source": [ - "# Momento\n", + "# Momento Chat Message History\n", "\n", "This notebook goes over how to use [Momento Cache](https://gomomento.com) to store chat message history using the `MomentoChatMessageHistory` class. See the Momento [docs](https://docs.momentohq.com/getting-started) for more detail on how to get set up with Momento.\n", "\n", @@ -27,7 +27,7 @@ "\n", "session_id = \"foo\"\n", "cache_name = \"langchain\"\n", - "ttl = timedelta(days=1),\n", + "ttl = timedelta(days=1)\n", "history = MomentoChatMessageHistory.from_client_params(\n", " session_id, \n", " cache_name,\n",