From d5ff75746c32f26dc47e0aec9b2b3f857014158c Mon Sep 17 00:00:00 2001 From: Muhammad Zuhaib Zahid Date: Wed, 22 Jul 2026 14:08:42 +0500 Subject: [PATCH] docs: point begin/message component links at .md, not .mdx (#17237) ### Summary Most files in `docs/guides/agent/agent_component_reference/` are `.mdx`, but `begin` and `message` are `.md`. Four links use the `.mdx` extension for those two, so Docusaurus cannot resolve the reference and they render as broken links. Co-authored-by: Muhammad Zuhaib Zahid <288755265+muhzuhaib@users.noreply.github.com> --- docs/guides/memory/use_memory.md | 2 +- docs/references/http_api_reference.md | 2 +- docs/release_notes.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guides/memory/use_memory.md b/docs/guides/memory/use_memory.md index 3979ea5589..8af1051f54 100644 --- a/docs/guides/memory/use_memory.md +++ b/docs/guides/memory/use_memory.md @@ -76,7 +76,7 @@ When the Memory reaches its storage limit and the automatic forgetting policy is ## Enhance Agent context -Under [Retrieval](../agent/agent_component_reference/retrieval.mdx) and [Message](../agent/agent_component_reference/message.mdx) component settings, a new Memory invocation capability is available. In the Message component, users can configure the Agent to write selected data into a designated Memory, while the Retrieval component can be set to read from that same Memory to answer future queries. This enables a simple Q&A bot Agent to accumulate context over time and respond with richer, memory-aware answers. +Under [Retrieval](../agent/agent_component_reference/retrieval.mdx) and [Message](../agent/agent_component_reference/message.md) component settings, a new Memory invocation capability is available. In the Message component, users can configure the Agent to write selected data into a designated Memory, while the Retrieval component can be set to read from that same Memory to answer future queries. This enables a simple Q&A bot Agent to accumulate context over time and respond with richer, memory-aware answers. ### Retrieve from memory diff --git a/docs/references/http_api_reference.md b/docs/references/http_api_reference.md index ba06d55860..9408972f6b 100644 --- a/docs/references/http_api_reference.md +++ b/docs/references/http_api_reference.md @@ -4712,7 +4712,7 @@ When `stream=true`, the server sends Server-Sent Events (SSE). A client should h The stream terminates with `[DONE]`. :::info IMPORTANT -You can include custom parameters in the request body, but they must be defined in the [Begin](../guides/agent/agent_component_reference/begin.mdx) component first. +You can include custom parameters in the request body, but they must be defined in the [Begin](../guides/agent/agent_component_reference/begin.md) component first. ::: ##### Request examples diff --git a/docs/release_notes.md b/docs/release_notes.md index 574c123da3..01f2b78b5e 100644 --- a/docs/release_notes.md +++ b/docs/release_notes.md @@ -965,13 +965,13 @@ The **Tag dataset** feature is *unavailable* on the [Infinity](https://github.co - [Construct knowledge graph](./guides/dataset/advanced/construct_knowledge_graph.md) - [Set metadata](./guides/dataset/set_metadata.md) -- [Begin component](./guides/agent/agent_component_reference/begin.mdx) +- [Begin component](./guides/agent/agent_component_reference/begin.md) - [Generate component](./guides/agent/agent_component_reference/generate.mdx) - [Interact component](./guides/agent/agent_component_reference/interact.mdx) - [Retrieval component](./guides/agent/agent_component_reference/retrieval.mdx) - [Categorize component](./guides/agent/agent_component_reference/categorize.mdx) - [Keyword component](./guides/agent/agent_component_reference/keyword.mdx) -- [Message component](./guides/agent/agent_component_reference/message.mdx) +- [Message component](./guides/agent/agent_component_reference/message.md) - [Rewrite component](./guides/agent/agent_component_reference/rewrite.mdx) - [Switch component](./guides/agent/agent_component_reference/switch.mdx) - [Concentrator component](./guides/agent/agent_component_reference/concentrator.mdx)