From dd64636ca8d40c62064023e3694a7455148ec38e Mon Sep 17 00:00:00 2001 From: Lauren Hirata Singh Date: Tue, 17 Jun 2025 15:14:48 -0400 Subject: [PATCH] Remove agents/streaming --- docs/docs/agents/streaming.md | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 docs/docs/agents/streaming.md diff --git a/docs/docs/agents/streaming.md b/docs/docs/agents/streaming.md deleted file mode 100644 index 6b31ab5b6..000000000 --- a/docs/docs/agents/streaming.md +++ /dev/null @@ -1,32 +0,0 @@ ---- -search: - boost: 2 -tags: - - agent -hide: - - tags ---- - -# Streaming - -Streaming is key to building responsive applications. There are a few types of data you’ll want to stream: - -1. [**Agent progress**](#agent-progress) — get updates after each node in the agent graph is executed. -2. [**LLM tokens**](#llm-tokens) — stream tokens as they are generated by the language model. -3. [**Custom updates**](#tool-updates) — emit custom data from tools during execution (e.g., "Fetched 10/100 records") - -You can stream [more than one type of data](#stream-multiple-modes) at a time. - - -
-![image](./assets/fast_parrot.png){: style="max-height:300px"} -
-Waiting is for pigeons. -
-
- - - -## Additional resources - -* [Streaming in LangGraph](https://langchain-ai.github.io/langgraph/how-tos/streaming)