跳转到主要内容

LangChainTool

CrewAI 与 LangChain 全面的工具列表无缝集成,所有这些工具都可以与 CrewAI 一起使用。
代码
import os
from dotenv import load_dotenv
from crewai import Agent, Task, Crew
from crewai.tools import BaseTool
from pydantic import Field
from langchain_community.utilities import GoogleSerperAPIWrapper

# Set up your SERPER_API_KEY key in an .env file, eg:
# SERPER_API_KEY=<your api key>
load_dotenv()

search = GoogleSerperAPIWrapper()

class SearchTool(BaseTool):
    name: str = "Search"
    description: str = "Useful for search-based queries. Use this to find current information about markets, companies, and trends."
    search: GoogleSerperAPIWrapper = Field(default_factory=GoogleSerperAPIWrapper)

    def _run(self, query: str) -> str:
        """Execute the search query and return results"""
        try:
            return self.search.run(query)
        except Exception as e:
            return f"Error performing search: {str(e)}"

# Create Agents
researcher = Agent(
    role='Research Analyst',
    goal='Gather current market data and trends',
    backstory="""You are an expert research analyst with years of experience in
    gathering market intelligence. You're known for your ability to find
    relevant and up-to-date market information and present it in a clear,
    actionable format.""",
    tools=[SearchTool()],
    verbose=True
)

# rest of the code ...

结论

工具在扩展 CrewAI 智能体能力方面至关重要,使其能够承担广泛的任务并进行有效协作。在使用 CrewAI 构建解决方案时,请利用自定义工具和现有工具来增强您的智能体并完善 AI 生态系统。考虑利用错误处理、缓存机制以及工具参数的灵活性来优化智能体的性能和能力。