From b2baadd329cd2bd389eaef8ea90650b888af05a8 Mon Sep 17 00:00:00 2001 From: Ronen Azachi Date: Mon, 11 Nov 2024 09:39:01 +0200 Subject: [PATCH] Update llms.md Add the following note: Required Embedding Model: To ensure optimal performance, GPT Researcher requires the text-embedding-3-large model. Please deploy this specific model to your Azure Endpoint. --- docs/docs/gpt-researcher/llms/llms.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/docs/gpt-researcher/llms/llms.md b/docs/docs/gpt-researcher/llms/llms.md index db9457b42..80d43fadb 100644 --- a/docs/docs/gpt-researcher/llms/llms.md +++ b/docs/docs/gpt-researcher/llms/llms.md @@ -65,6 +65,9 @@ See also the documentation in the Langchain [Azure OpenAI](https://api.python.la On Azure OpenAI you will need to create deployments for each model you want to use. Please also specify the model names/deployment names in your `.env` file: +Required Embedding Model: +To ensure optimal performance, GPT Researcher requires the text-embedding-3-large model. Please deploy this specific model to your Azure Endpoint. + ```bash AZURE_OPENAI_API_KEY=[Your Key] AZURE_OPENAI_ENDPOINT=https://{your-endpoint}.openai.azure.com/ @@ -75,7 +78,7 @@ FAST_LLM=azure_openai:gpt-4o-mini SMART_LLM=azure_openai:gpt-4o STRATEGIC_LLM=azure_openai:o1-preview -EMBEDDING="azure_openai:text-embedding-ada-002" + ```