Custom agent logic lets you control how an AI agent thinks and acts step-by-step. It helps you make the agent smarter and fit your special needs.
Custom agent logic in LangChain
Start learning this pattern below
Jump into concepts and practice - no test required
or
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Introduction
Syntax
LangChain
from langchain.agents import Agent class CustomAgent(Agent): def plan(self, intermediate_steps, **kwargs): # Your custom planning logic here return plan def run(self, input): # Your custom run logic here return output
You create a new class that inherits from Agent.
Override methods like plan or run to change behavior.
Examples
LangChain
class CustomAgent(Agent): def plan(self, intermediate_steps, **kwargs): # Always pick the first tool return {'tool': 'search', 'input': 'example query'}
LangChain
class CustomAgent(Agent): def run(self, input): # Add a prefix to input before running modified_input = 'Check: ' + input return super().run(modified_input)
Sample Program
This program creates a custom agent that always uses a 'calculator' tool. The tool just reverses the input string as a fake calculation. When run with '12345', it returns '54321'.
LangChain
class CustomAgent: def plan(self, intermediate_steps, **kwargs): # Simple plan: always use tool 'calculator' with input return {'tool': 'calculator', 'input': kwargs.get('input', '')} def run(self, input): plan = self.plan([], input=input) tool = plan['tool'] tool_input = plan['input'] # Simulate tool execution if tool == 'calculator': # Just return the input reversed as a fake calculation return tool_input[::-1] return 'No tool executed' agent = CustomAgent() result = agent.run('12345') print(result)
Important Notes
Custom agents let you control the agent's thinking steps.
Override only the methods you need to change.
Test your custom logic carefully to avoid infinite loops or errors.
Summary
Custom agent logic means writing your own rules for how the agent plans and acts.
This helps make agents fit special tasks or workflows.
It involves subclassing and overriding key methods like plan and run.
Practice
1. What is the main purpose of creating custom agent logic in Langchain?
easy
Solution
Step 1: Understand the role of custom agent logic
Custom agent logic is about controlling how the agent decides what to do next.Step 2: Identify the main purpose
It is used to write your own rules for planning and acting, not for UI or speed improvements.Final Answer:
To define specific rules for how the agent plans and acts -> Option AQuick Check:
Custom agent logic = planning and acting rules [OK]
Hint: Custom logic controls agent decisions, not UI or speed [OK]
Common Mistakes:
- Thinking it changes the user interface
- Assuming it speeds up the library
- Believing it adds data sources automatically
2. Which method should you override to customize how an agent decides its next action in Langchain?
easy
Solution
Step 1: Identify key methods for custom logic
Langchain agents use methods likeplanandrunfor behavior.Step 2: Determine which controls decision making
Theplanmethod decides the next action, so overriding it customizes decisions.Final Answer:
plan -> Option BQuick Check:
Decision method = plan [OK]
Hint: Override plan() to change agent's next action [OK]
Common Mistakes:
- Overriding run() instead of plan() for decisions
- Using initialize() which is not for planning
- Confusing execute() with plan()
3. Given this custom agent code snippet, what will be printed?
class MyAgent:
def plan(self, input_text):
if 'hello' in input_text.lower():
return 'Greet'
return 'Ignore'
agent = MyAgent()
print(agent.plan('Hello there!'))medium
Solution
Step 1: Analyze the plan method logic
The method checks if 'hello' is in the input text (case-insensitive). If yes, returns 'Greet'.Step 2: Apply input to the method
Input is 'Hello there!', which contains 'hello' ignoring case, so it returns 'Greet'.Final Answer:
Greet -> Option AQuick Check:
Input contains 'hello' -> returns 'Greet' [OK]
Hint: Check string contains 'hello' ignoring case [OK]
Common Mistakes:
- Ignoring case sensitivity in string check
- Expecting the method to print input text
- Assuming method returns 'Ignore'
4. What is wrong with this custom agent code?
class CustomAgent:
def plan(self, input_text):
if input_text.contains('test'):
return 'Found'
return 'Not Found'medium
Solution
Step 1: Check string method usage
Python strings do not have a .contains() method; use 'in' keyword instead.Step 2: Identify correct string membership check
Correct way is: 'test' in input_text, so .contains() causes an error.Final Answer:
Using .contains() method which does not exist in Python strings -> Option DQuick Check:
Python strings use 'in', not .contains() [OK]
Hint: Use 'in' keyword for substring check in Python [OK]
Common Mistakes:
- Using .contains() instead of 'in'
- Thinking plan method can't take parameters
- Assuming missing return statement
5. You want to create a custom Langchain agent that first plans actions based on input, then logs each action before running it. Which approach correctly combines planning and running with logging?
hard
Solution
Step 1: Understand responsibilities of plan() and run()
plan() decides what to do next; run() executes actions.Step 2: Combine logging with correct methods
Override plan() for custom decisions; override run() to add logging before execution.Final Answer:
Override plan() to decide actions and override run() to log and execute actions -> Option CQuick Check:
plan() decides, run() logs and executes [OK]
Hint: Plan decides; run executes and logs actions [OK]
Common Mistakes:
- Putting planning logic inside run() only
- Logging inside plan() without running actions
- Not overriding methods and logging externally
