Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/integrate/google-adk/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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.

Expand Down
8 changes: 4 additions & 4 deletions content/integrate/google-adk/agent-memory-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
6 changes: 3 additions & 3 deletions content/integrate/google-adk/redis-agent-memory.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Loading