Skip to content

Commit

Permalink
Fix typo in example
Browse files Browse the repository at this point in the history
  • Loading branch information
whimo committed Aug 30, 2024
1 parent ea2a846 commit f7dd1a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/Streaming agent output.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"source": [
"# Streaming agent output\n",
"\n",
"In some applications, especially where humans are involved, output streaming can be useful for improving responsiveness. LLMs can take a while to generate output, and if there is a human on the other end, it would be much better if he'll instantly see the output being generated in real time, rather than wait for 30 seconds for the output to be fully generated and displayed.\n",
"In some applications, especially where humans are involved, output streaming can be useful for improving responsiveness. LLMs can take a while to generate output, and if there is a human on the other end, it would be much better if they'll instantly see the output being generated in real time, rather than wait for 30 seconds for the output to be fully generated and displayed.\n",
"\n",
"We'll demonstrate how this can be achieved in motleycrew using Langchain callbacks. In the first example, we'll stream agent output to the console while it solves a task inside a crew. The second example will show a standalone agent that asynchronously streams its output to a web client using WebSockets.\n",
"\n",
Expand Down

0 comments on commit f7dd1a9

Please sign in to comment.