From 5f4b7dd23e97de8fa856869da2fe33e0338a5b88 Mon Sep 17 00:00:00 2001 From: josvdw Date: Thu, 22 Aug 2024 13:04:10 -0700 Subject: [PATCH] clarify what model and provider name should be for custom models (#2215) --- .../llm/CustomLLMProviderUpdateForm.tsx | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/web/src/app/admin/configuration/llm/CustomLLMProviderUpdateForm.tsx b/web/src/app/admin/configuration/llm/CustomLLMProviderUpdateForm.tsx index 2e6f0a9f1..4b39d8dd3 100644 --- a/web/src/app/admin/configuration/llm/CustomLLMProviderUpdateForm.tsx +++ b/web/src/app/admin/configuration/llm/CustomLLMProviderUpdateForm.tsx @@ -374,9 +374,22 @@ export function CustomLLMProviderUpdateForm({ name="model_names" label="Model Names" values={values} - subtext={`List the individual models that you want to make - available as a part of this provider. At least one must be specified. - As an example, for OpenAI one model might be "gpt-4".`} + subtext={ + <> + List the individual models that you want to make available as + a part of this provider. At least one must be specified. For + the best experience your [Provider Name]/[Model Name] should + match one of the pairs listed{" "} + + here + + . + + } />