docs: update tool use case (#20404)

This commit is contained in:
Bagatur
2024-04-15 21:27:27 -07:00
committed by GitHub
parent 86cf1d3ee1
commit f7667c614b
8 changed files with 397 additions and 376 deletions

View File

@@ -344,7 +344,6 @@ class ChatAnthropic(BaseChatModel):
) -> Iterator[ChatGenerationChunk]:
params = self._format_params(messages=messages, stop=stop, **kwargs)
if _tools_in_params(params):
warnings.warn("stream: Tool use is not yet supported in streaming mode.")
result = self._generate(
messages, stop=stop, run_manager=run_manager, **kwargs
)