langchain.agents.loading
.load_agent_from_configΒΆ
- langchain.agents.loading.load_agent_from_config(config: dict, llm: Optional[BaseLanguageModel] = None, tools: Optional[List[Tool]] = None, **kwargs: Any) Union[BaseSingleActionAgent, BaseMultiActionAgent] [source]ΒΆ
Load agent from Config Dict.
- Parameters
config β Config dict to load agent from.
llm β Language model to use as the agent.
tools β List of tools this agent has access to.
**kwargs β Additional keyword arguments passed to the agent executor.
- Returns
An agent executor.