-
Notifications
You must be signed in to change notification settings - Fork 348
docs(google-adk): bring ADK docs to parity with adk-redis 0.0.9 #3746
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mich-elle-luna
merged 10 commits into
redis:main
from
nkanu17:feat/adk-redis-0.0.9-parity
Aug 7, 2026
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
000824e
docs(google-adk): bring ADK docs to parity with adk-redis 0.0.9
nkanu17 17e9230
docs(google-adk): link Redis Agent Memory and mark self-hosted deprec…
nkanu17 51c7df9
docs(google-adk): document self-managed Agent Memory and disambiguate…
nkanu17 d6e41f7
Update content/integrate/google-adk/_index.md
nkanu17 9aacf8a
Update content/integrate/google-adk/_index.md
nkanu17 00695f0
Update content/integrate/google-adk/_index.md
nkanu17 a060d52
Update content/integrate/google-adk/_index.md
nkanu17 141294c
docs(google-adk): separate deprecated Agent Memory Server content
nkanu17 b1c63d2
docs(google-adk): make the deprecated backend page unmistakably depre…
nkanu17 6545386
Update content/integrate/google-adk/integration-patterns.md
nkanu17 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,124 @@ | ||
| --- | ||
| LinkTitle: Agent Memory Server (deprecated) | ||
| Title: Agent Memory Server (deprecated) | ||
| alwaysopen: false | ||
| categories: | ||
| - docs | ||
| - integrate | ||
| - oss | ||
| - rs | ||
| - rc | ||
| description: Deprecated. The opensource-agent-memory backend is no longer maintained. | ||
| Migrate existing deployments to Redis Agent Memory. | ||
| group: ai | ||
| stack: true | ||
| summary: Deprecated backend. How to migrate an existing Agent Memory Server deployment | ||
| to Redis Agent Memory. | ||
| type: integration | ||
| weight: 6 | ||
| --- | ||
|
|
||
| {{< warning >}} | ||
| **Deprecated. Do not use for new work.** | ||
|
|
||
| The `opensource-agent-memory` backend and the | ||
| [Agent Memory Server](https://github.com/redis/agent-memory-server) it targets | ||
| are deprecated and are not maintained going forward. Its capabilities are not | ||
| being carried forward, and support for it will be removed from adk-redis. | ||
|
|
||
| New agents should use | ||
| [Redis Agent Memory]({{< relref "/integrate/google-adk/redis-agent-memory" >}}) | ||
| with `backend="redis-agent-memory"`, on | ||
| [Redis Cloud]({{< relref "/operate/rc/context-engine/agent-memory" >}}) or | ||
| [self-managed]({{< relref "/develop/ai/context-engine/agent-memory/self-managed" >}}) | ||
| on your own Kubernetes cluster. | ||
|
|
||
| This page exists only to help existing deployments migrate. | ||
| {{< /warning >}} | ||
|
|
||
| ## What it was | ||
|
|
||
| Agent Memory Server is a separate open source memory server, documented in | ||
| [its own repository](https://github.com/redis/agent-memory-server). It is not | ||
| Redis Agent Memory and does not speak the | ||
| [Agent Memory Data Plane API]({{< relref "/develop/ai/context-engine/agent-memory/api-reference" >}}). | ||
| adk-redis reached it with `backend="opensource-agent-memory"`, an | ||
| `api_base_url` pointing at the server, and the `agent-memory-client>=0.14.0` | ||
| dependency. | ||
|
|
||
| A handful of capabilities existed only on this backend: auto-summarization, | ||
| extraction strategies, recency-boosted search, and an MCP endpoint. They are | ||
| configured through `model_name`, `context_window_max`, `extraction_strategy`, | ||
| `extraction_strategy_config`, and `recency_boost`, none of which have any effect | ||
| with `redis-agent-memory`. See the | ||
| [Agent Memory Server repository](https://github.com/redis/agent-memory-server) | ||
| for the server's own setup and reference material. | ||
|
|
||
| {{< note >}} | ||
| Running Agent Memory yourself never required this backend. Self-managed Agent | ||
| Memory is supported and maintained, and uses `backend="redis-agent-memory"` just | ||
| like Redis Cloud. You choose a deployment with `api_base_url`, not with | ||
| `backend`. | ||
| {{< /note >}} | ||
|
|
||
| ## Migrate to Redis Agent Memory | ||
|
|
||
| 1. Provision a Redis Agent Memory store, on | ||
| [Redis Cloud]({{< relref "/operate/rc/context-engine/agent-memory/create-service" >}}) | ||
| or [self-managed]({{< relref "/develop/ai/context-engine/agent-memory/self-managed" >}}). | ||
| Either gives you a Data Plane endpoint, an API key, and a store ID. | ||
| 2. Change `backend` from `opensource-agent-memory` to `redis-agent-memory` on | ||
| every service and tool config, or drop the field, since it is the default. | ||
| 3. Point `api_base_url` at the Data Plane endpoint, and add `api_key` and | ||
| `store_id`. | ||
| 4. Remove the backend-only settings listed above. They are silently inert on | ||
| `redis-agent-memory`. | ||
| 5. Replace any MCP memory wiring with the | ||
| [REST memory tools]({{< relref "/integrate/google-adk/redis-agent-memory#rest-tools" >}}), | ||
| which work the same way on both backends. | ||
| 6. Drop `agent-memory-client` from your dependencies. The `memory` extra | ||
| requires `redis-agent-memory>=0.2.0`. | ||
|
|
||
| ```python | ||
| # Before: deprecated backend | ||
| config = RedisSessionMemoryServiceConfig( | ||
| backend="opensource-agent-memory", | ||
| api_base_url="http://localhost:8088", | ||
| default_namespace="my_app", | ||
| model_name="gemini-2.5-flash", | ||
| context_window_max=8000, | ||
| ) | ||
|
|
||
| # After: Redis Agent Memory, on Redis Cloud or self-managed | ||
| config = RedisSessionMemoryServiceConfig( | ||
| backend="redis-agent-memory", | ||
| api_base_url="https://your-endpoint.redis.io", | ||
| api_key="your-api-key", | ||
| store_id="your-store-id", | ||
| default_namespace="my_app", | ||
| ) | ||
| ``` | ||
|
|
||
| Changing configuration does not copy existing memories. Plan for a | ||
| re-extraction window, or run both backends while long-term memory repopulates. | ||
|
|
||
| ## Examples still on this backend | ||
|
|
||
| Three examples in the adk-redis repository have not yet moved: | ||
| [simple_redis_memory](https://github.com/redis-developer/adk-redis/tree/main/examples/simple_redis_memory), | ||
| [travel_agent_memory_hybrid](https://github.com/redis-developer/adk-redis/tree/main/examples/travel_agent_memory_hybrid), | ||
| and | ||
| [fitness_coach_mcp](https://github.com/redis-developer/adk-redis/tree/main/examples/fitness_coach_mcp) | ||
| (which uses the MCP endpoint this backend alone provides). | ||
|
|
||
| For a supported starting point, use | ||
| [managed_memory_quickstart]({{< relref "/integrate/google-adk/examples#managed_memory_quickstart" >}}). | ||
| [travel_agent_memory_tools](https://github.com/redis-developer/adk-redis/tree/main/examples/travel_agent_memory_tools) | ||
| switches backends with `REDIS_MEMORY_BACKEND`, so it already runs on | ||
| `redis-agent-memory`. | ||
|
|
||
| ## More info | ||
|
|
||
| - [Redis Agent Memory]({{< relref "/integrate/google-adk/redis-agent-memory" >}}): the supported backend | ||
| - [Self-managed Agent Memory]({{< relref "/develop/ai/context-engine/agent-memory/self-managed" >}}): run Agent Memory on your own Kubernetes cluster | ||
| - [Agent Memory Server on GitHub](https://github.com/redis/agent-memory-server): the deprecated server's own documentation |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.