langchain.agents.initialize
.initialize_agentΒΆ
- langchain.agents.initialize.initialize_agent(tools: Sequence[BaseTool], llm: BaseLanguageModel, agent: Optional[AgentType] = None, callback_manager: Optional[BaseCallbackManager] = None, agent_path: Optional[str] = None, agent_kwargs: Optional[dict] = None, *, tags: Optional[Sequence[str]] = None, **kwargs: Any) AgentExecutor [source]ΒΆ
[Deprecated] Load an agent executor given tools and LLM.
- Parameters
tools (Sequence[BaseTool]) β List of tools this agent has access to.
llm (BaseLanguageModel) β Language model to use as the agent.
agent (Optional[AgentType]) β Agent type to use. If None and agent_path is also None, will default to AgentType.ZERO_SHOT_REACT_DESCRIPTION.
callback_manager (Optional[BaseCallbackManager]) β CallbackManager to use. Global callback manager is used if not provided. Defaults to None.
agent_path (Optional[str]) β Path to serialized agent to use.
agent_kwargs (Optional[dict]) β Additional keyword arguments to pass to the underlying agent
tags (Optional[Sequence[str]]) β Tags to apply to the traced runs.
**kwargs (Any) β Additional keyword arguments passed to the agent executor
- Returns
An agent executor
- Return type
Notes
Deprecated since version 0.1.0: Use Use new agent constructor methods like create_react_agent, create_json_agent, create_structured_chat_agent, etc. instead.