From 56474a3e48771a338e67471b1fa1a8102b839a74 Mon Sep 17 00:00:00 2001 From: Smyja Date: Wed, 1 Mar 2023 03:05:52 +0100 Subject: [PATCH] Added model names (#578) --- docs/how_to/custom_llms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how_to/custom_llms.md b/docs/how_to/custom_llms.md index 25cc90a2bbe61..54d5baa442e22 100644 --- a/docs/how_to/custom_llms.md +++ b/docs/how_to/custom_llms.md @@ -28,7 +28,7 @@ Below we show a few examples of LLM customization. This includes ## Example: Changing the underlying LLM An example snippet of customizing the LLM being used is shown below. -In this example, we use `text-davinci-002` instead of `text-davinci-003`. Note that +In this example, we use `text-davinci-002` instead of `text-davinci-003`. Available models include `text-davinci-003`,`text-curie-001`,`text-babbage-001`,`text-ada-001`, `code-davinci-002`,`code-cushman-001`. Note that you may plug in any LLM shown on Langchain's [LLM](https://langchain.readthedocs.io/en/latest/modules/llms.html) page.