diff --git a/src/data/nav/platform.ts b/src/data/nav/platform.ts index 383a459861..6b83565d5d 100644 --- a/src/data/nav/platform.ts +++ b/src/data/nav/platform.ts @@ -247,7 +247,7 @@ export default { pages: [ { name: 'Overview', - link: '/docs/account', + link: '/docs/platform/account', index: true, }, { diff --git a/src/pages/docs/ai-transport/messaging/citations.mdx b/src/pages/docs/ai-transport/messaging/citations.mdx index 4bf502ca2a..d79f1c9709 100644 --- a/src/pages/docs/ai-transport/messaging/citations.mdx +++ b/src/pages/docs/ai-transport/messaging/citations.mdx @@ -6,7 +6,7 @@ meta_keywords: "citations, references, source attribution, message annotations, AI agents often draw information from external sources such as documents, web pages, or databases. Citations to those sources enable users to verify information, explore sources in detail, and understand where responses came from. Ably's [message annotations](/docs/messages/annotations) provide a model-agnostic, structured way to attach source citations to AI responses without modifying the response content. It enables clients to append information to existing messages on a channel. -This pattern works when publishing complete responses as messages on a channel or when streaming responses using the [message-per-response](/docs/ai-transport/message-per-response) pattern. +This pattern works when publishing complete responses as messages on a channel or when streaming responses using the [message-per-response](/docs/ai-transport/token-streaming/message-per-response) pattern. ## Why citations matter @@ -21,7 +21,7 @@ Including citations on AI responses provides: Use [message annotations](/docs/messages/annotations) to attach source metadata to AI response messages without modifying the response content: -1. The agent publishes an AI response as a single message, or builds it incrementally using [message appends](/docs/ai-transport/message-per-response). +1. The agent publishes an AI response as a single message, or builds it incrementally using [message appends](/docs/ai-transport/token-streaming/message-per-response). 2. The agent publishes one or more annotations to attach citations to the response message, each referencing the response message [`serial`](/docs/messages#properties). 3. Ably automatically aggregates annotations and generates summaries showing total counts and groupings (for example, by source domain name). 4. Clients receive citation summaries automatically and can optionally subscribe to individual annotation events for detailed citation data as part of the realtime stream. Alternatively, clients can obtain annotations for a given message via the REST API. @@ -182,7 +182,7 @@ channel.annotations.publish(msgSerial, citation2);