From 7c99bc0d64d526cae1fc243c5be8877df4c7a77a Mon Sep 17 00:00:00 2001 From: Jordan Frazier <122494242+jordanrfrazier@users.noreply.github.com> Date: Thu, 20 Mar 2025 16:38:58 -0700 Subject: [PATCH] fix: nvidia model component refresh behavior (#7203) Fix nvidia model component refresh behavior --- src/backend/base/langflow/components/models/nvidia.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/backend/base/langflow/components/models/nvidia.py b/src/backend/base/langflow/components/models/nvidia.py index 4aee575f2..084ba2b60 100644 --- a/src/backend/base/langflow/components/models/nvidia.py +++ b/src/backend/base/langflow/components/models/nvidia.py @@ -36,7 +36,7 @@ class NVIDIAModelComponent(LCModelComponent): value=None, options=[model.id for model in all_models], combobox=True, - real_time_refresh=True, + refresh_button=True, ), BoolInput( name="detailed_thinking", @@ -58,7 +58,6 @@ class NVIDIAModelComponent(LCModelComponent): display_name="NVIDIA Base URL", value="https://integrate.api.nvidia.com/v1", info="The base URL of the NVIDIA API. Defaults to https://integrate.api.nvidia.com/v1.", - real_time_refresh=True, ), SecretStrInput( name="api_key", @@ -66,7 +65,6 @@ class NVIDIAModelComponent(LCModelComponent): info="The NVIDIA API Key.", advanced=False, value="NVIDIA_API_KEY", - real_time_refresh=True, ), SliderInput( name="temperature",