From 3c4652c90656e75c942486a9809a45282bb05b82 Mon Sep 17 00:00:00 2001 From: Jacob Lee Date: Mon, 22 Jul 2024 17:56:51 -0700 Subject: [PATCH] docs[patch]: Hide OllamaFunctions now that Ollama supports tool calling (#24523) --- docs/docs/integrations/chat/ollama_functions.ipynb | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/docs/docs/integrations/chat/ollama_functions.ipynb b/docs/docs/integrations/chat/ollama_functions.ipynb index 1e6aaef68f6..07039e05fdf 100644 --- a/docs/docs/integrations/chat/ollama_functions.ipynb +++ b/docs/docs/integrations/chat/ollama_functions.ipynb @@ -6,6 +6,7 @@ "source": [ "---\n", "sidebar_label: Ollama Functions\n", + "sidebar_class_name: hidden\n", "---" ] }, @@ -15,16 +16,16 @@ "source": [ "# OllamaFunctions\n", "\n", + ":::warning\n", + "\n", + "This was an experimental wrapper that attempts to bolt-on tool calling support to models that do not natively support it. The [primary Ollama integration](/docs/integrations/chat/ollama/) now supports tool calling, and should be used instead.\n", + "\n", + ":::\n", "This notebook shows how to use an experimental wrapper around Ollama that gives it [tool calling capabilities](https://python.langchain.com/v0.2/docs/concepts/#functiontool-calling).\n", "\n", "Note that more powerful and capable models will perform better with complex schema and/or multiple functions. The examples below use llama3 and phi3 models.\n", "For a complete list of supported models and model variants, see the [Ollama model library](https://ollama.ai/library).\n", "\n", - ":::warning\n", - "\n", - "This is an experimental wrapper that attempts to bolt-on tool calling support to models that do not natively support it. Use with caution.\n", - "\n", - ":::\n", "## Overview\n", "\n", "### Integration details\n",