From 8c3ae72c50b355be0b9c40424db3ac67b9901843 Mon Sep 17 00:00:00 2001 From: Sanjiv Das Date: Fri, 25 Oct 2024 15:12:41 -0700 Subject: [PATCH] Update index.md --- docs/source/developers/index.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/source/developers/index.md b/docs/source/developers/index.md index b2e870caf..c9874e77c 100644 --- a/docs/source/developers/index.md +++ b/docs/source/developers/index.md @@ -505,11 +505,6 @@ async def stream_reply( assert self.llm_chain assert isinstance(self.llm_chain, Runnable) ``` -The function `stream_reply` in `base.py` first shows a pending message, and -then processes the streamed response in chunks. It is possible to interrupt the -stream in which case `stream_interrupted` is set to `True`. Streaming is -handled by the `astream` method in the `llm_chain`. Streaming concludes -after all chunks have been streamed. ## Custom message footer