Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Enable combobox for IBM WatsonX URL input fields
Added the 'combobox=True' option to the IBM WatsonX URL input fields in both EmbeddingModelComponent and LanguageModelComponent to enhance user input flexibility.
  • Loading branch information
edwinjosechittilappilly committed Dec 1, 2025
commit bfd6d06472e097b617b0eeda6dcd0bfc7502c815
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ class EmbeddingModelComponent(LCEmbeddingsModel):
value=IBM_WATSONX_URLS[0],
show=False,
real_time_refresh=True,
combobox=True,
),
DropdownInput(
name="model",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def fetch_ibm_models(base_url: str) -> list[str]:
value=IBM_WATSONX_URLS[0],
show=False,
real_time_refresh=True,
combobox=True,
),
StrInput(
name="project_id",
Expand Down
Loading