Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/streaming-response.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,15 +110,15 @@ for chunk in interpreter.chat("What's 34/24?", stream=True):
break
```

**While** the code is being executed, you'll recieve the line of code that's being run:
**While** the code is being executed, you'll receive the line of code that's being run:

```
{"role": "computer", "type": "console", "format": "active_line", "content": "1"}
```

We use this to highlight the active line of code on our UI, which keeps the user aware of what Open Interpreter is doing.

You'll then recieve its output, if it produces any:
You'll then receive its output, if it produces any:

```
{"role": "computer", "type": "console", "format": "output", "content": "1.4166666666666667\n"}
Expand Down