@@ -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
401400MODELS_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- > >> >> >> 5e273 bb6bd (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
409404MODEL_OPTIONS_METADATA = [MODELS_METADATA [key ] for key in MODEL_PROVIDERS_LIST if key in MODELS_METADATA ]
0 commit comments