In LangChain there are two concepts:
- Chain
- Agent
The proposed flow of using agent is:
prompt = SomePrompt()
llm_chain: Chain = LLMChain(prompt)
tools = [...]
agent: Agent = SomeAgent(llm_chain, tools)
agent_executor: Chain = AgentExecutor(agent)
What is the reason of making Agent as a separate class and not inheriting from Chain class?
Why do we need to wrap llm_chain: Chain
inside agent: Agent
inside agent_executor: Chain
?
The expected architecture is:
class Agent(Chain):
def _call(self, *args, **kwargs):
while True:
action = self.plan()
if isinstance(action, ActionTool):
self.run_tool(plan)
elif isinstance(action, ActionFinish):
return action.result
def plan():
# as it is done in actual implementation of Agent
pass
But I can't understand the reason why did we separate the AgentExecutor
and Agent
The answer may be as simple as this quote from the Agents documentation