Definiowanie wielu narzędzi

Projektowanie systemów agentowych z LangChain

Dilini K. Sumanapala, PhD

Founder & AI Engineer, Genverv, Ltd.

Integrowanie wielu narzędzi

Bot z wieloma narzędziami

   

  • Dodawanie wielu narzędzi niestandardowych

  • Automatyczny dobór narzędzia do zapytania

Projektowanie systemów agentowych z LangChain

Rozbudowa chatbota edukacyjnego

Ludzie czytający książki, siedzący na dużych woluminach.

 

  • Wyszukiwanie wydarzeń historycznych

  • Sprawdzanie palindromów:

     
    • level = level

    • top spot = tops pot

Projektowanie systemów agentowych z LangChain

Różne sposoby tworzenia narzędzi

 

  • Wywołanie LLM

    Wyszukiwanie dat historycznych za pomocą naturalnego języka, np. „5 listopada"
      Agent: The 5th of November is famous for the Gunpowder treason and 
      plot...
    
  • Kod Pythona

    Wykrywanie palindromów przez bezpośrednie porównanie ciągów, np. string == string[::-1]
      Agent: Yes, "madam" is a palindrome...
    
Projektowanie systemów agentowych z LangChain

Narzędzie do wydarzeń historycznych

# Use a decorator to label the tool and set the input format to string
@tool

def date_checker(date: str) -> str:
"""Provide a list of important historical events for a given date in any format."""
try: # Invoke the LLM to interpret the date and generate historical events answer = llm.invoke(f"List important historical events that occurred on {date}.")
# Return the response return answer.content
# Set an exception block for errors in retrieval except Exception as e: return f"Error retrieving events: {str(e)}"
Projektowanie systemów agentowych z LangChain

Narzędzie do palindromów

@tool

# Set input format to string def check_palindrome(text: str):
"""Check if a word or phrase is a palindrome."""
# Remove non-alphanumeric characters and convert to lowercase cleaned = ''.join(char.lower() for char in text if char.isalnum())
# Check if the reversed text is the same as original text if cleaned == cleaned[::-1]: return f"The phrase or word '{text}' is a palindrome." else: return f"The phrase or word '{text}' is not a palindrome."
Projektowanie systemów agentowych z LangChain

Powiązanie wielu narzędzi

# Import modules required for defining tool nodes
from langgraph.prebuilt import ToolNode


# List of tools tools = [wikipedia_tool, date_checker, check_palindrome]
# Pass the tools to the ToolNode() tool_node = ToolNode(tools)
# Bind tools to the LLM model_with_tools = llm.bind_tools(tools)
Projektowanie systemów agentowych z LangChain

Czas na ćwiczenia!

Projektowanie systemów agentowych z LangChain

Preparing Video For Download...