diff --git a/search-processors/README.md b/search-processors/README.md index 7bb8572b41..030691855b 100644 --- a/search-processors/README.md +++ b/search-processors/README.md @@ -51,6 +51,8 @@ GET //_search\?search_pipeline\= To use this with Bedrock models, use "bedrock/" as a prefix for the "llm_model" parameters, e.g. "bedrock/anthropic". +The latest RAG processor has been tested with OpenAI's GPT 3.5 and 4 models and Bedrock's Anthropic Claude (v2) model only. + ## Retrieval Augmented Generation response ``` { diff --git a/search-processors/src/main/java/org/opensearch/searchpipelines/questionanswering/generative/llm/Llm.java b/search-processors/src/main/java/org/opensearch/searchpipelines/questionanswering/generative/llm/Llm.java index faf136d550..be5efdb294 100644 --- a/search-processors/src/main/java/org/opensearch/searchpipelines/questionanswering/generative/llm/Llm.java +++ b/search-processors/src/main/java/org/opensearch/searchpipelines/questionanswering/generative/llm/Llm.java @@ -22,6 +22,7 @@ */ public interface Llm { + // TODO Ensure the current implementation works with all models supported by Bedrock. enum ModelProvider { OPENAI, BEDROCK