diff --git a/docs/docs.json b/docs/docs.json index a6e66375..840ca468 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -260,7 +260,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 c37e1661..50d20f2c 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' --- 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 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.**