Merge branch 'vince/dev-1302' into eri/dev-1300
This commit is contained in:
commit
d0953607f3
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
title: 'Toggle Reasoning'
|
||||
title: 'Reasoning Configuration'
|
||||
description: 'Customize how Honcho reasons over peers, sessions, and messages'
|
||||
icon: 'wrench'
|
||||
---
|
||||
|
|
@ -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';
|
|||
```
|
||||
</CodeGroup>
|
||||
|
||||
## Streaming from the Dialectic Endpoint
|
||||
## Streaming from the Chat Endpoint
|
||||
|
||||
<CodeGroup>
|
||||
```python Python
|
||||
|
|
|
|||
|
|
@ -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.**
|
||||
|
|
|
|||
Loading…
Reference in New Issue