HomeAgents – AI

Agents – AI

Showing 1 - 9 of 9 results
  • July 9, 2026
3_agent_with_2Tools_weather_calculator In [ ]: # Install (uncomment if running for the first time) # !pip install langchain==1.3.6 langgraph==1.2.4 langchain-openai==1.2.2 In [10]: import importlib.metadata...
  • July 9, 2026
Here I show how to implement a simple AI agent with access to 2 tools using OOP principles: that is...
  • July 9, 2026
An AI Agent is an autonomous software system designed to perceive its environment, make independent decisions, and use tools to...
  • July 8, 2026
AI agents have improved rapidly, but they still face several practical challenges when deployed in real-world applications. Challenge Description Example...
  • July 8, 2026
langgraph_email_agent Customer Support Email Agent – Multiagent System¶ LangGraph orchestrating LangChain Agents¶ Version compatibility¶ This notebook is written and tested...
  • July 5, 2026
An Agent is an AI system that can reason, make decisions, and choose which tools to use in order to...
  • July 5, 2026
This example builds a ReAct-style agent equipped with two weather tools — a current-conditions tool and a forecast tool —...
  • July 5, 2026
What is a Tool? A Tool is a function or service that a language model can call to perform a...
  • July 5, 2026
This is one of the most important concepts in LangChain. What is a Chain? A chain is a sequence of...