{ "cells": [ { "cell_type": "markdown", "id": "91c6a7ef", "metadata": {}, "source": [ "# Redis Chat Message History\n", "\n", "This notebook goes over how to use Redis to store chat message history." ] }, { "cell_type": "code", "execution_count": 9, "id": "d15e3302", "metadata": {}, "outputs": [], "source": [ "from langchain.memory import RedisChatMessageHistory\n", "\n", "history = RedisChatMessageHistory(\"foo\")\n", "\n", "history.add_user_message(\"hi!\")\n", "\n", "history.add_ai_message(\"whats up?\")" ] }, { "cell_type": "code", "execution_count": 10, "id": "64fc465e", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "[AIMessage(content='whats up?', additional_kwargs={}),\n", " HumanMessage(content='hi!', additional_kwargs={})]" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "history.messages" ] }, { "cell_type": "code", "execution_count": null, "id": "8af285f8", "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.1" } }, "nbformat": 4, "nbformat_minor": 5 }