Compare commits

...
Author SHA1 Message Date
Ben eefa2fa250 Merge branch 'main' into docs-agentcore-cloud-first 2026-05-22 09:32:05 -04:00
Ben 60513eb899 docs(agentcore): add Cloud Recommended callout in quickstart
Adds  Recommended Hindsight Cloud callout to README + docs + guide
Quick Start sections. agentcore already led with Cloud URL in code
examples — this just makes the recommendation explicit.

Includes 2-line incidental skills/hindsight-docs/ regen drift.
2026-05-21 13:28:37 -04:00
3 changed files with 10 additions and 0 deletions
@@ -40,6 +40,10 @@ pip install hindsight-agentcore
## Quick Start
:::tip Recommended: Hindsight Cloud
[Sign up free](https://ui.hindsight.vectorize.io/signup) and grab an API key — no self-hosting required.
:::
```python
import os
from hindsight_agentcore import HindsightRuntimeAdapter, TurnContext, configure
@@ -44,6 +44,8 @@ pip install hindsight-agentcore
## Step 2: Connect AgentCore Runtime to Hindsight
> ✨ **Recommended:** [Hindsight Cloud](https://ui.hindsight.vectorize.io/signup) — free tier, no self-hosting required.
```python
import os
from hindsight_agentcore import configure
@@ -54,6 +56,8 @@ configure(
)
```
If you'd rather self-host on AWS (ECS/EKS with RDS PostgreSQL + pgvector), set `hindsight_api_url` to your in-VPC Hindsight endpoint.
## Step 3: Wire memory into your runtime
```python
@@ -34,6 +34,8 @@ pip install hindsight-agentcore
## Quick Start
> ✨ **Recommended: [Hindsight Cloud](https://ui.hindsight.vectorize.io/signup)** — free tier, no self-hosting required. Sign up and grab an API key in under a minute.
```python
import os
from hindsight_agentcore import HindsightRuntimeAdapter, TurnContext, configure