Skip to content

Commit 4447542

Browse files
update links
1 parent e9421a1 commit 4447542

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

python-recipes/agents/03_memory_agent.ipynb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"\n",
1313
"## Introduction\n",
1414
"\n",
15-
"Without memory, AI agents are like goldfish - they forget everything after each conversation and can't learn from past interactions or maintain context across sessions. Agentic systems require both **short-term** and **long-term** memory in order to complete tasks in a personalized and resilient manner. Memory is all about state management and [**Redis**](https://redis.io/try-free/?utm_source=nir&utm_medium=cpa&utm_campaign=2025-05-ai_in_production-influencer-nir&utm_content=sd-software_download-7013z000001WaRY) is the well-known in-memory database for exaclty this kind of use case today in production systems.\n",
15+
"Without memory, AI agents are like goldfish - they forget everything after each conversation and can't learn from past interactions or maintain context across sessions. Agentic systems require both **short-term** and **long-term** memory in order to complete tasks in a personalized and resilient manner. Memory is all about state management and [**Redis**](https://redis.io/try-free/) is the well-known in-memory database for exaclty this kind of use case today in production systems.\n",
1616
"\n",
1717
"## What We'll Build\n",
1818
"\n",
@@ -41,7 +41,7 @@
4141
"## Short-term Memory\n",
4242
"The agent tracks chat history using Redis through LangGraph's [checkpointer](https://github.com/redis-developer/langgraph-redis). Each node in the graph (Retrieve Memories, Respond, Summarize) saves its state to Redis, including conversation history and thread metadata.\n",
4343
"\n",
44-
"<img src=\"https://github.com/redis-developer/redis-ai-resources/blob/feat/update-memory-agent-recipe/python-recipes/agents/resources/short-term-memory.png?raw=true\" style=\"width: 100%; max-width: 400px;\">\n",
44+
"<img src=\"https://github.com/redis-developer/redis-ai-resources/blob/main/python-recipes/agents/resources/short-term-memory.png?raw=true\" style=\"width: 100%; max-width: 400px;\">\n",
4545
"\n",
4646
"To prevent context window pollution, the agent summarizes conversations when they exceed a configurable length.\n",
4747
"\n",
@@ -51,7 +51,7 @@
5151
"- **Episodic**: User preferences and experiences\n",
5252
"- **Semantic**: General travel knowledge\n",
5353
"\n",
54-
"<img src=\"https://github.com/redis-developer/redis-ai-resources/blob/feat/update-memory-agent-recipe/python-recipes/agents/resources/long-term-memory.png?raw=true\" style=\"width: 100%; max-width: 600px;\">\n",
54+
"<img src=\"https://github.com/redis-developer/redis-ai-resources/blob/main/python-recipes/agents/resources/long-term-memory.png?raw=true\" style=\"width: 100%; max-width: 600px;\">\n",
5555
"\n",
5656
">**NOTE**: These memory types align with the [CoALA](https://arxiv.org/abs/2309.02427) paper's concepts. Our agent's procedural memory is encoded in its Python workflow."
5757
]
@@ -130,7 +130,7 @@
130130
"\n",
131131
"You have two options for running Redis:\n",
132132
"\n",
133-
"1. **Redis Cloud**: For a fully-managed, seamless experience, use [a free instance of Redis Cloud](https://redis.io/try-free/?utm_source=nir&utm_medium=cpa&utm_campaign=2025-05-ai_in_production-influencer-nir&utm_content=sd-software_download-7013z000001WaRY).\n",
133+
"1. **Redis Cloud**: For a fully-managed, seamless experience, use [a free instance of Redis Cloud](https://redis.io/try-free).\n",
134134
"2. **Local Redis**: For a simple, local (non-persistent) Redis instance, run the cell below."
135135
]
136136
},
@@ -759,7 +759,7 @@
759759
"\n",
760760
"> NOTE: **This tutorial uses tool-based memory** for optimal balance of control and efficiency.\n",
761761
"\n",
762-
"<img src=\"https://github.com/redis-developer/redis-ai-resources/blob/feat/update-memory-agent-recipe/python-recipes/agents/resources/memory-agents.png?raw=true\" alt=\"Memory Agents Diagram\" width=\"250\">"
762+
"<img src=\"https://github.com/redis-developer/redis-ai-resources/blob/main/python-recipes/agents/resources/memory-agents.png?raw=true\" alt=\"Memory Agents Diagram\" width=\"250\">"
763763
]
764764
},
765765
{
@@ -1866,7 +1866,7 @@
18661866
"\n",
18671867
"**Want to learn more?**\n",
18681868
"1. [Read more](https://redis.io/blog/build-smarter-ai-agents-manage-short-term-and-long-term-memory-with-redis/) about agent memory patterns with Redis\n",
1869-
"2. [Meet with our experts](https://redis.io/meeting/?utm_source=nir&utm_medium=cpa&utm_campaign=2025-06-ai_in_production&utm_content=cr-all_contact_us_forms-7013z000000evRk) to get a consultation on your architecture and where Redis can help."
1869+
"2. [Meet with our experts](https://redis.io/meeting/) to get a consultation on your architecture and where Redis can help."
18701870
]
18711871
}
18721872
],

0 commit comments

Comments
 (0)