From a9e3da8b2163327c59a8be7f2ded408a1cdf6901 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Tue, 13 May 2025 11:26:28 -0700 Subject: [PATCH] llmSelect: Add Models --- src/common/components/forms/useLLMSelect.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/components/forms/useLLMSelect.tsx b/src/common/components/forms/useLLMSelect.tsx index 2578013c8..7e85961ce 100644 --- a/src/common/components/forms/useLLMSelect.tsx +++ b/src/common/components/forms/useLLMSelect.tsx @@ -21,7 +21,7 @@ import { FormLabelStart } from './FormLabelStart'; const LLM_SELECT_REDUCE_OPTIONS = 10; // optimization: number of options over which only the selected is kept when closed (we'll have special notes for accessibility) const LLM_SELECT_SHOW_REASONING_ICON = false; const LLM_TEXT_PLACEHOLDER = 'Models …'; -const LLM_TEXT_CONFIGURE = 'Configure …'; +const LLM_TEXT_CONFIGURE = 'Add Models …'; /*export function useLLMSelectGlobalState(): [DLLMId | null, (llmId: DLLMId | null) => void] {