From 2da02aede586c42ecb624c01f058042d35646cdb Mon Sep 17 00:00:00 2001 From: Chester Curme Date: Tue, 23 Jul 2024 17:10:30 -0400 Subject: [PATCH] fix chat model tabs --- docs/docs/how_to/many_tools.ipynb | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/docs/docs/how_to/many_tools.ipynb b/docs/docs/how_to/many_tools.ipynb index 3943d2e1571..94ecef7b601 100644 --- a/docs/docs/how_to/many_tools.ipynb +++ b/docs/docs/how_to/many_tools.ipynb @@ -23,8 +23,6 @@ "\n", "Here we will demonstrate how to dynamically adjust the tools available to a model. Bottom line up front: like [RAG](/docs/tutorials/rag) and similar methods, we prefix the model invocation by retrieving over available tools. Although we demonstrate one implementation that searches over tool descriptions, the details of the tool selection can be customized as needed.\n", "\n", - "## Dependencies\n", - "\n", "**Note**: this guide uses [OpenAI](/docs/integrations/platforms/openai/) for embeddings, but any LangChain embeddings should suffice." ] }, @@ -47,9 +45,9 @@ "We first instantiate a chat model that supports [tool calling](/docs/how_to/tool_calling/):\n", "\n", "```{=mdx}\n", - "\n", + "import ChatModelTabs from \"@theme/ChatModelTabs\";\n", + "\n", + "\n", "```" ] },