diff --git a/content/integrate/google-adk/_index.md b/content/integrate/google-adk/_index.md index 7a9917f8c9..8f62525dcb 100644 --- a/content/integrate/google-adk/_index.md +++ b/content/integrate/google-adk/_index.md @@ -25,7 +25,7 @@ weight: 30 adk-redis connects several backend systems to the ADK framework: -- **[Redis Agent Memory]({{< relref "/develop/ai/context-engine/agent-memory" >}})** handles working memory (sessions), long-term memory (extracted facts), auto-summarization, and memory search. Use the default `redis-agent-memory` for new work. It runs either 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; both share one Data Plane API, so you pick a deployment by pointing `api_base_url` at the right endpoint. +- **[Redis Agent Memory]({{< relref "/develop/ai/context-engine/agent-memory" >}})** handles working memory (sessions), long-term memory (extracted facts), auto-summarization, and memory search. Use the default `redis-agent-memory` for new work. It runs either on [Redis Cloud]({{< relref "/operate/rc/context-engine/agent-memory" >}}) or [self-managed]({{< relref "/operate/iris/agent-memory/self-managed" >}}) on your own Kubernetes cluster; both share one Data Plane API, so you pick a deployment by pointing `api_base_url` at the right endpoint. - **[RedisVL]({{< relref "/develop/ai/redisvl" >}})** (Redis Vector Library) powers the search tools and local semantic cache provider. - **[LangCache](https://redis.io/langcache/)** provides managed semantic caching with server-side embeddings. @@ -44,8 +44,8 @@ which also covers migrating to Redis Agent Memory. Provision a store, then pass its Data Plane endpoint, API key, and store ID to the services. -- On **Redis Cloud**, there is nothing to run. See [Create an Agent Memory service]({{< relref "/operate/rc/context-engine/agent-memory/create-service" >}}). -- To run it **yourself**, see [Self-managed Agent Memory]({{< relref "/develop/ai/context-engine/agent-memory/self-managed" >}}) for deployment, configuration, and operations on your own Kubernetes cluster. +- On **Redis Cloud**, there is nothing to run. See [Create an Agent Memory service]({{< relref "/operate/iris/agent-memory/create-service" >}}). +- To run it **yourself**, see [Self-managed Agent Memory]({{< relref "/operate/iris/agent-memory/self-managed" >}}) for deployment, configuration, and operations on your own Kubernetes cluster. Both use `backend="redis-agent-memory"`. Only `api_base_url` differs. diff --git a/content/integrate/google-adk/agent-memory-server.md b/content/integrate/google-adk/agent-memory-server.md index cd6b88d7c9..014af63144 100644 --- a/content/integrate/google-adk/agent-memory-server.md +++ b/content/integrate/google-adk/agent-memory-server.md @@ -30,7 +30,7 @@ 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" >}}) +[self-managed]({{< relref "/operate/iris/agent-memory/self-managed" >}}) on your own Kubernetes cluster. This page exists only to help existing deployments migrate. @@ -64,8 +64,8 @@ like Redis Cloud. You choose a deployment with `api_base_url`, not with ## 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" >}}). + [Redis Cloud]({{< relref "/operate/iris/agent-memory/create-service" >}}) + or [self-managed]({{< relref "/operate/iris/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. @@ -120,5 +120,5 @@ switches backends with `REDIS_MEMORY_BACKEND`, so it already runs on ## 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 +- [Self-managed Agent Memory]({{< relref "/operate/iris/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 diff --git a/content/integrate/google-adk/redis-agent-memory.md b/content/integrate/google-adk/redis-agent-memory.md index fc1dbe806b..3274e1c26e 100644 --- a/content/integrate/google-adk/redis-agent-memory.md +++ b/content/integrate/google-adk/redis-agent-memory.md @@ -31,8 +31,8 @@ not by changing `backend`: | Deployment | `api_base_url` | Setup | |------------|----------------|-------| -| Redis Cloud | Your Redis Cloud Agent Memory endpoint | [Create an Agent Memory service]({{< relref "/operate/rc/context-engine/agent-memory/create-service" >}}) | -| Self-managed | Your own Data Plane URL | [Self-managed Agent Memory]({{< relref "/develop/ai/context-engine/agent-memory/self-managed" >}}) | +| Redis Cloud | Your Redis Cloud Agent Memory endpoint | [Create an Agent Memory service]({{< relref "/operate/iris/agent-memory/create-service" >}}) | +| Self-managed | Your own Data Plane URL | [Self-managed Agent Memory]({{< relref "/operate/iris/agent-memory/self-managed" >}}) | {{< note >}} Running Agent Memory yourself does not mean using the deprecated @@ -250,6 +250,6 @@ Redis Cloud or self-managed; use the REST tools above. - [Integration patterns]({{< relref "/integrate/google-adk/integration-patterns" >}}): Detailed tradeoff comparison of the approaches - [managed_memory_quickstart](https://github.com/redis-developer/adk-redis/tree/main/examples/managed_memory_quickstart): Framework services, no Docker - [travel_agent_memory_tools](https://github.com/redis-developer/adk-redis/tree/main/examples/travel_agent_memory_tools): REST tools only -- [Self-managed Agent Memory]({{< relref "/develop/ai/context-engine/agent-memory/self-managed" >}}): run Agent Memory on your own Kubernetes cluster +- [Self-managed Agent Memory]({{< relref "/operate/iris/agent-memory/self-managed" >}}): run Agent Memory on your own Kubernetes cluster - [Agent Memory Server (deprecated)]({{< relref "/integrate/google-adk/agent-memory-server" >}}): existing deployments and migration