fix: update dialectic to chat

This commit is contained in:
vintro 2025-12-10 14:18:50 -05:00
parent 971b183f11
commit 833af0c67d
No known key found for this signature in database
1 changed files with 3 additions and 3 deletions

View File

@ -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