Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Building AI Agents with Python: A Deep Dive

Building AI Agents with Python: A Deep Dive

This covers Ai agents from a builder's perspective. It covers:

- Building agents from scratch
- Agentic concepts
- Building agents
- Agents working together

Abdur-Rahmaan Janhangeer

March 23, 2025
Tweet

Transcript

  1. About me • Abdur-Rahmaan Janhangeer • Been working with Python

    professionally since a long time • Worked for companies in all continents (except Antartica and South America) • Pymug organizing member compileralchemy.com
  2. Task: Control a drone with your mind Use openai or

    Gemini API to take off or land a drone
  3. Task: Control a drone with your mind Use openai or

    Gemini API to take off or land a drone
  4. Task: Control a drone with your mind Use openai or

    Gemini API to take off or land a drone
  5. Task: Control a drone with your mind Use openai or

    Gemini API to take off or land a drone
  6. Task: Control a drone with your mind Function Calling (old)

    def get_headset_value(): … def move_drone_up(): … def move_drone_down(): …
  7. Task: Control a drone with your mind import openai import

    time import random def get_brainwave_value(): """Simulate getting a brainwave focus value from the NeuroSky headset.""" return random.randint(0, 100) def move_drone_up(): print("Drone moving up") def move_drone_down(): print("Drone moving down")
  8. Task: Control a drone with your mind functions = [

    { "name": "get_brainwave_value", "description": "Get the current brainwave focus value.", "parameters": {} }, { "name": "move_drone_up", "description": "Move the drone up on high focus.", "parameters": {} }, { "name": "move_drone_down", "description": "Move the drone down on low focus.", "parameters": {} } ]
  9. Task: Control a drone with your mind def control_drone(): """Continuously

    monitor brainwave focus values and move the drone accordingly.""" while True: value = get_brainwave_value() print(f"Brainwave focus value: {value}") response = openai.ChatCompletion.create( model="gpt-4-turbo", messages=[ {"role": "system", "content": "You control a drone based on brainwave focus levels."}, {"role": "user", "content": value} ], functions=functions, # here function_call="auto" ) function_name = response["choices"][0]["message"].get("function_call", {}).get("name")
  10. Task: Control a drone with your mind if function_name ==

    "move_drone_up": move_drone_up() elif function_name == "move_drone_down": move_drone_down() time.sleep(1) if __name__ == "__main__": control_drone() Even the base version has enough meat
  11. Smolagent from typing import Optional import requests from smolagents import

    CodeAgent, LiteLLMModel, tool model = LiteLLMModel(model_id="gpt-4o")
  12. Smolagent @tool def get_joke() -> str: """ Fetches a random

    joke from the JokeAPI. This function sends a GET request to the JokeAPI to retrieve a random joke. It handles both single jokes and two-part jokes (setup and delivery). If the request fails or the response does not contain a joke, an error message is returned. Returns: str: The joke as a string, or an error message if the joke could not be fetched. """ url = "https://v2.jokeapi.dev/joke/Any?type=single"
  13. Smolagent try: response = requests.get(url) response.raise_for_status() data = response.json() if

    "joke" in data: return data["joke"] elif "setup" in data and "delivery" in data: return f"{data['setup']} - {data['delivery']}" else: return "Error: Unable to fetch joke." except requests.exceptions.RequestException as e: return f"Error fetching joke: {str(e)}"
  14. Graph Agents Unit of work are called nodes Nodes can

    have edges The indicate the control flow and order of execution
  15. Graph Agents Unit of work are called nodes Nodes can

    have edges Conditional edges indicate branching
  16. Graph Agents Unit of work are called nodes Nodes modify

    state/s The state is the input to any node whenever it is invoked
  17. Graph Agents Unit of work are called nodes Nodes modify

    state/s The state is the input to any node whenever it is invoked
  18. Graph Agents Unit of work are called nodes Nodes modify

    state/s The state is the input to any node whenever it is invoked
  19. Graph Agents Unit of work are called nodes Nodes modify

    state/s The state is the input to any node whenever it is invoked
  20. Graph Agents Unit of work are called nodes Nodes modify

    state/s The state is the input to any node whenever it is invoked
  21. Graph Agents Unit of work are called nodes Nodes modify

    state/s The state is the input to any node whenever it is invoked
  22. Graph Agents langgraph is powerful enough It can be used

    to build pretty much any agent scenario or reasoning-focused workflows
  23. Graph Agents langgraph is powerful enough It can be used

    to build pretty much any agent scenario or reasoning-focused workflows BUT SINCE ITS FROM LANGCHAIN, THE API IS AS BAD AS IT CAN BE
  24. MCP

  25. Python # server.py from mcp.server.fastmcp import FastMCP # Create an

    MCP server mcp = FastMCP("Demo") # Add an addition tool @mcp.tool() def add(a: int, b: int) -> int: """Add two numbers""" return a + b # Add a dynamic greeting resource @mcp.resource("greeting://{name}") def get_greeting(name: str) -> str: """Get a personalized greeting""" return f"Hello, {name}!"
  26. Papers - ReAct: ReAct: Synergizing Reasoning and Acting in Language

    Models - ReWOO: ReWOO: Decoupling Reasoning from Observations for Efficient Augmented Language Models - LLM Compiler: An LLM Compiler for Parallel Function Calling
  27. Interesting reads Abhinav Upaday - chatGPT plugin Anthropic - Effective

    agents https://github.com/mannaandpoem/OpenManus See how to use Python with n8n