Skip to content

Commit 2098569

Browse files
author
Ikko Eltociear Ashimine
authored
docs: update streaming-response.mdx
recieve -> receive
1 parent c7ff254 commit 2098569

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/guides/streaming-response.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,15 +110,15 @@ for chunk in interpreter.chat("What's 34/24?", stream=True):
110110
break
111111
```
112112

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

115115
```
116116
{"role": "computer", "type": "console", "format": "active_line", "content": "1"}
117117
```
118118

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

121-
You'll then recieve its output, if it produces any:
121+
You'll then receive its output, if it produces any:
122122

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

0 commit comments

Comments
 (0)