From 1bfb1725a1cfdb9d34106ae781e9b28d92c5fbf0 Mon Sep 17 00:00:00 2001 From: Shaurya Rohatgi Date: Sun, 7 Jan 2024 09:31:24 -0800 Subject: [PATCH] fix: Ollama import statements (#15493) --- docs/docs/integrations/providers/ollama.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/integrations/providers/ollama.mdx b/docs/docs/integrations/providers/ollama.mdx index ba00e2a246..da10174a16 100644 --- a/docs/docs/integrations/providers/ollama.mdx +++ b/docs/docs/integrations/providers/ollama.mdx @@ -21,7 +21,7 @@ To use, you should set up the environment variables `ANYSCALE_API_BASE` and ## LLM ```python -from langchain_community.llms import Ollama +from langchain.llms import Ollama ``` See the notebook example [here](/docs/integrations/llms/ollama). @@ -31,7 +31,7 @@ See the notebook example [here](/docs/integrations/llms/ollama). ### Chat Ollama ```python -from langchain_community.chat_models import ChatOllama +from langchain.chat_models import ChatOllama ``` See the notebook example [here](/docs/integrations/chat/ollama). @@ -47,7 +47,7 @@ See the notebook example [here](/docs/integrations/chat/ollama_functions). ## Embedding models ```python -from langchain_community.embeddings import OllamaEmbeddings +from langchain.embeddings import OllamaEmbeddings ``` See the notebook example [here](/docs/integrations/text_embedding/ollama).