Skip to content

Commit 60fea4c

Browse files
docs: fix stale documentation links (#2221)
Update integration and installation documentation URLs so they point to the public Hindsight docs site instead of stale Cloud docs paths.
1 parent dff223f commit 60fea4c

10 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ client.reflect(bank_id="my-bank", query="What should I know about Alice?")
310310
| **macOS** (Intel / x86_64) || ⚠️ ||
311311
| **Windows** (x86_64) ||||
312312

313-
⚠️ Intel Macs: use `hindsight-all-slim` — see the [installation guide](https://docs.hindsight.vectorize.io/docs/developer/installation#supported-platforms) for details.
313+
⚠️ Intel Macs: use `hindsight-all-slim` — see the [installation guide](https://hindsight.vectorize.io/developer/installation#supported-platforms) for details.
314314

315315
---
316316

hindsight-docs/blog/2026-03-30-llamaindex-agent-memory.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ Persistent memory isn't always the right tool.
279279
| **Framework coupling** | LlamaIndex only | LlamaIndex only | None | None |
280280
| **Best for** | Single-session chat | Simple cross-session recall within LlamaIndex | Document search (RAG) | Long-term user/agent memory across frameworks |
281281

282-
**vs. LangGraph/LangChain:** If you're using LangGraph instead of LlamaIndex, see [`hindsight-langgraph`](https://docs.hindsight.vectorize.io/docs/sdks/integrations/langgraph) which offers tools, graph nodes, and a `BaseStore` adapter.
282+
**vs. LangGraph/LangChain:** If you're using LangGraph instead of LlamaIndex, see [`hindsight-langgraph`](https://hindsight.vectorize.io/sdks/integrations/langgraph) which offers tools, graph nodes, and a `BaseStore` adapter.
283283

284284
## FAQ
285285

@@ -307,5 +307,5 @@ Try it now: `pip install hindsight-all hindsight-llamaindex` and run the example
307307

308308
## Next Steps
309309

310-
- **Docs**: [LlamaIndex integration guide](https://docs.hindsight.vectorize.io/docs/sdks/integrations/llamaindex)
311-
- **Other integrations**: [LangGraph](https://docs.hindsight.vectorize.io/docs/sdks/integrations/langgraph), [Pydantic AI](https://docs.hindsight.vectorize.io/docs/sdks/integrations/pydantic-ai), [CrewAI](https://docs.hindsight.vectorize.io/docs/sdks/integrations/crewai)
310+
- **Docs**: [LlamaIndex integration guide](https://hindsight.vectorize.io/sdks/integrations/llamaindex)
311+
- **Other integrations**: [LangGraph](https://hindsight.vectorize.io/sdks/integrations/langgraph), [Pydantic AI](https://hindsight.vectorize.io/sdks/integrations/pydantic-ai), [CrewAI](https://hindsight.vectorize.io/sdks/integrations/crewai)

hindsight-integrations/agentcore/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dev = [
3030

3131
[project.urls]
3232
Homepage = "https://github.com/vectorize-io/hindsight"
33-
Documentation = "https://docs.hindsight.vectorize.io/sdks/integrations/agentcore"
33+
Documentation = "https://hindsight.vectorize.io/sdks/integrations/agentcore"
3434
Repository = "https://github.com/vectorize-io/hindsight"
3535

3636
[build-system]

hindsight-integrations/autogen/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,6 @@ tools = create_hindsight_tools(
150150

151151
## Documentation
152152

153-
- [Integration docs](https://docs.hindsight.vectorize.io/docs/sdks/integrations/autogen)
153+
- [Integration docs](https://hindsight.vectorize.io/sdks/integrations/autogen)
154154
- [Cookbook: AutoGen assistant with memory](https://docs.hindsight.vectorize.io/cookbook/recipes/autogen-assistant-agent)
155155
- [Hindsight API docs](https://docs.hindsight.vectorize.io)

hindsight-integrations/claude-agent-sdk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies = [
3535

3636
[project.urls]
3737
Homepage = "https://github.com/vectorize-io/hindsight"
38-
Documentation = "https://docs.hindsight.vectorize.io/docs/sdks/integrations/claude-agent-sdk"
38+
Documentation = "https://hindsight.vectorize.io/sdks/integrations/claude-agent-sdk"
3939
Repository = "https://github.com/vectorize-io/hindsight"
4040

4141
[build-system]

hindsight-integrations/haystack/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,6 @@ tools = create_hindsight_tools(bank_id="user-123")
103103

104104
## Documentation
105105

106-
- [Integration docs](https://docs.hindsight.vectorize.io/docs/sdks/integrations/haystack)
106+
- [Integration docs](https://hindsight.vectorize.io/sdks/integrations/haystack)
107107
- [Hindsight API docs](https://docs.hindsight.vectorize.io)
108108

hindsight-integrations/langgraph/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,6 @@ All factory functions accept `client`, `hindsight_api_url`, and `api_key` to ove
153153

154154
## Documentation
155155

156-
- [Integration docs](https://docs.hindsight.vectorize.io/docs/sdks/integrations/langgraph)
156+
- [Integration docs](https://hindsight.vectorize.io/sdks/integrations/langgraph)
157157
- [Cookbook: ReAct agent with memory](https://docs.hindsight.vectorize.io/cookbook/recipes/langgraph-react-agent)
158158
- [Hindsight API docs](https://docs.hindsight.vectorize.io)

hindsight-integrations/llamaindex/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,5 @@ configure(
7878

7979
## Documentation
8080

81-
- [Integration docs](https://docs.hindsight.vectorize.io/docs/sdks/integrations/llamaindex)
81+
- [Integration docs](https://hindsight.vectorize.io/sdks/integrations/llamaindex)
8282
- [Hindsight API docs](https://docs.hindsight.vectorize.io)

hindsight-integrations/openai-agents/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,5 +220,5 @@ shared_tools = create_hindsight_tools(
220220

221221
## Documentation
222222

223-
- [Integration docs](https://docs.hindsight.vectorize.io/docs/sdks/integrations/openai-agents)
223+
- [Integration docs](https://hindsight.vectorize.io/sdks/integrations/openai-agents)
224224
- [Hindsight API docs](https://docs.hindsight.vectorize.io)

hindsight-integrations/openai-agents/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dependencies = [
3333

3434
[project.urls]
3535
Homepage = "https://github.com/vectorize-io/hindsight"
36-
Documentation = "https://docs.hindsight.vectorize.io/docs/sdks/integrations/openai-agents"
36+
Documentation = "https://hindsight.vectorize.io/sdks/integrations/openai-agents"
3737
Repository = "https://github.com/vectorize-io/hindsight"
3838

3939
[build-system]

0 commit comments

Comments
 (0)