Skip to content

Commit 7571ded

Browse files
committed
resolve merge conflicts + revert tool opt-in
1 parent 985c231 commit 7571ded

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

src/lfx/src/lfx/_assets/component_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/lfx/src/lfx/base/models/model_input_constants.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,8 @@ def process_inputs(component_data: Input, provider_name: str | None = None):
4646
component_data.required = False
4747
elif component_data.name == "tool_model_enabled":
4848
# Keep hidden/advanced and default to False. Agent or tool-using
49-
# components can enable this dynamically when needed.
5049
component_data.advanced = True
51-
component_data.value = False
50+
component_data.value = True
5251
elif component_data.name in {"temperature", "base_url"}:
5352
if provider_name not in ["IBM watsonx.ai", "Ollama"]:
5453
component_data = set_advanced_true(component_data)
@@ -400,10 +399,6 @@ def _get_helicone_inputs_and_fields():
400399

401400
MODELS_METADATA = {name: {"icon": prov["icon"]} for name, prov in ACTIVE_MODEL_PROVIDERS_DICT.items()}
402401

403-
<<<<<<< HEAD
404-
MODEL_PROVIDERS_LIST = ["Anthropic", "Google Generative AI", "OpenAI", "IBM watsonx.ai", "Ollama"]
405-
=======
406-
MODEL_PROVIDERS_LIST = ["Anthropic", "Google Generative AI", "Helicone", "OpenAI"]
407-
>>>>>>> 5e273bb6bd (integrate helicone as a bundle and as an agent provider)
402+
MODEL_PROVIDERS_LIST = ["Anthropic", "Google Generative AI", "Helicone", "OpenAI", "IBM watsonx.ai", "Ollama"]
408403

409404
MODEL_OPTIONS_METADATA = [MODELS_METADATA[key] for key in MODEL_PROVIDERS_LIST if key in MODELS_METADATA]

0 commit comments

Comments
 (0)