From 833af0c67d03b234a2b338c6cc749e029a11e349 Mon Sep 17 00:00:00 2001 From: vintro Date: Wed, 10 Dec 2025 14:18:50 -0500 Subject: [PATCH 1/3] fix: update dialectic to chat --- .../documentation/features/advanced/streaming-response.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/v2.6.0-alpha/documentation/features/advanced/streaming-response.mdx b/docs/v2.6.0-alpha/documentation/features/advanced/streaming-response.mdx index 4e53cf9a..44c88b5b 100644 --- a/docs/v2.6.0-alpha/documentation/features/advanced/streaming-response.mdx +++ b/docs/v2.6.0-alpha/documentation/features/advanced/streaming-response.mdx @@ -16,9 +16,9 @@ Streaming is particularly useful for: - Interactive agent experiences - Reducing time-to-first-word in user interactions -## Streaming with the Dialectic Endpoint +## Streaming with the Chat Endpoint -One of the primary use cases for streaming in Honcho is with the Dialectic endpoint. This allows you to stream the AI's reasoning about a user in real-time. +One of the primary use cases for streaming in Honcho is with the [chat endpoint](/v2.6.0-alpha/documentation/features/chat). This allows you to stream the AI's reasoning about a user in real-time. ### Prerequisites @@ -70,7 +70,7 @@ import { Honcho } from '@honcho-ai/sdk'; ``` -## Streaming from the Dialectic Endpoint +## Streaming from the Chat Endpoint ```python Python From eb87db0226bb88c61aabae7bf1f548482a5c47de Mon Sep 17 00:00:00 2001 From: vintro Date: Wed, 10 Dec 2025 14:20:53 -0500 Subject: [PATCH 2/3] fix: reasoning configuration --- docs/docs.json | 2 +- .../{toggle-reasoning.mdx => reasoning-configuration.mdx} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename docs/v2.6.0-alpha/documentation/features/advanced/{toggle-reasoning.mdx => reasoning-configuration.mdx} (99%) diff --git a/docs/docs.json b/docs/docs.json index c57b1f3e..da07fa4d 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -254,7 +254,7 @@ "pages": [ "v2.6.0-alpha/documentation/features/advanced/overview", "v2.6.0-alpha/documentation/features/advanced/queue-status", - "v2.6.0-alpha/documentation/features/advanced/toggle-reasoning", + "v2.6.0-alpha/documentation/features/advanced/reasoning-configuration", "v2.6.0-alpha/documentation/features/advanced/representation-scopes", "v2.6.0-alpha/documentation/features/advanced/summarizer", "v2.6.0-alpha/documentation/features/advanced/search", diff --git a/docs/v2.6.0-alpha/documentation/features/advanced/toggle-reasoning.mdx b/docs/v2.6.0-alpha/documentation/features/advanced/reasoning-configuration.mdx similarity index 99% rename from docs/v2.6.0-alpha/documentation/features/advanced/toggle-reasoning.mdx rename to docs/v2.6.0-alpha/documentation/features/advanced/reasoning-configuration.mdx index 2966c321..28cb8876 100644 --- a/docs/v2.6.0-alpha/documentation/features/advanced/toggle-reasoning.mdx +++ b/docs/v2.6.0-alpha/documentation/features/advanced/reasoning-configuration.mdx @@ -1,5 +1,5 @@ --- -title: 'Toggle Reasoning' +title: 'Reasoning Configuration' description: 'Customize how Honcho reasons over peers, sessions, and messages' icon: 'wrench' --- From 02ab0aa39816a02d71a77bb40a1bc7bc52373b46 Mon Sep 17 00:00:00 2001 From: vintro Date: Wed, 10 Dec 2025 14:22:40 -0500 Subject: [PATCH 3/3] fix: backlink get_context in summarizer --- .../v2.6.0-alpha/documentation/features/advanced/summarizer.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/v2.6.0-alpha/documentation/features/advanced/summarizer.mdx b/docs/v2.6.0-alpha/documentation/features/advanced/summarizer.mdx index 6e3d2ff2..b23492ee 100644 --- a/docs/v2.6.0-alpha/documentation/features/advanced/summarizer.mdx +++ b/docs/v2.6.0-alpha/documentation/features/advanced/summarizer.mdx @@ -27,7 +27,7 @@ It's important to keep in mind that summary tasks run in the background and are ### Retrieving Summaries -Summaries are retrieved from the session by the `get_context` method. This method has two parameters: +Summaries are retrieved from the session by the [`get_context`](/v2.6.0-alpha/documentation/features/get-context) method. This method has two parameters: * `summary`: A boolean indicating whether to include the summary in the return type. The default is true. * `tokens`: An integer indicating the maximum number of tokens to use for the context. **If not provided, `get_context` will retrieve as many tokens as are required to create exhaustive conversation coverage.**