From fca34eb122d54e0b6109d20f9bfe7c2e3687d106 Mon Sep 17 00:00:00 2001 From: Yong woo Song Date: Wed, 11 Oct 2023 02:22:39 +0900 Subject: [PATCH] Fix: invalid link to chat model in openai platform docs (#11609) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit There is some invalid link in open ai platform [docs](https://python.langchain.com/docs/integrations/platforms/openai). So i fixed it to valid links. - `/docs/integrations/chat_models/openai` -> `/docs/integrations/chat/openai` - `/docs/integrations/chat_models/azure_openai` -> `/docs/integrations/chat/azure_chat_openai` Thanks! ☺️ --- docs/docs_skeleton/docs/integrations/platforms/openai.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs_skeleton/docs/integrations/platforms/openai.mdx b/docs/docs_skeleton/docs/integrations/platforms/openai.mdx index 880bf30f29..c3784587e2 100644 --- a/docs/docs_skeleton/docs/integrations/platforms/openai.mdx +++ b/docs/docs_skeleton/docs/integrations/platforms/openai.mdx @@ -41,7 +41,7 @@ For a more detailed walkthrough of the `Azure` wrapper, see [here](/docs/integra ## Chat model -See a [usage example](/docs/integrations/chat_models/openai). +See a [usage example](/docs/integrations/chat/openai). ```python from langchain.chat_models import ChatOpenAI @@ -51,7 +51,7 @@ If you are using a model hosted on `Azure`, you should use different wrapper for ```python from langchain.llms import AzureChatOpenAI ``` -For a more detailed walkthrough of the `Azure` wrapper, see [here](/docs/integrations/chat_models/azure_openai) +For a more detailed walkthrough of the `Azure` wrapper, see [here](/docs/integrations/chat/azure_chat_openai) ## Text Embedding Model