From 52896258eeb9632630a8b6f7cfb1218db88bef2f Mon Sep 17 00:00:00 2001 From: merdan <48309329+merdan-9@users.noreply.github.com> Date: Fri, 26 Apr 2024 02:47:22 +0800 Subject: [PATCH] docs: hide model import in multiple_tools.ipynb (#20883) **Description:** This PR removes an unnecessary code snippet from the documentation. The snippet in question is not relevant to the content and does not contribute to the overall understanding of the topic. It contained redundant imports and unused code, potentially causing confusion for readers. **Issue:** There is no specific issue number associated with this change. **Dependencies:** No additional dependencies are required for this change. --------- Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Bagatur --- docs/docs/use_cases/tool_use/multiple_tools.ipynb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docs/use_cases/tool_use/multiple_tools.ipynb b/docs/docs/use_cases/tool_use/multiple_tools.ipynb index cdc27dcb3c1..bd8bfeb7e6c 100644 --- a/docs/docs/use_cases/tool_use/multiple_tools.ipynb +++ b/docs/docs/use_cases/tool_use/multiple_tools.ipynb @@ -136,6 +136,9 @@ "metadata": {}, "outputs": [], "source": [ + "# | echo: false\n", + "# | output: false\n", + "\n", "from langchain_anthropic import ChatAnthropic\n", "\n", "llm = ChatAnthropic(model=\"claude-3-sonnet-20240229\", temperature=0)"