Fix redundancy check about config_type in AGENT_TO_CLASS (#2934)

Fix of issue #2874
fix_agent_callbacks
Amir Karimi 1 year ago committed by GitHub
parent b40f90ea04
commit ae7ed31386
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -37,8 +37,6 @@ def _load_agent_from_tools(
if config_type not in AGENT_TO_CLASS:
raise ValueError(f"Loading {config_type} agent not supported")
if config_type not in AGENT_TO_CLASS:
raise ValueError(f"Loading {config_type} agent not supported")
agent_cls = AGENT_TO_CLASS[config_type]
combined_config = {**config, **kwargs}
return agent_cls.from_llm_and_tools(llm, tools, **combined_config)

Loading…
Cancel
Save