Agent框架汇总
### 比较流行的智能体框架
- phidata
- Swarm
- CrewAI
- Langchain
- Coze
- dify
- Autogen
- MetaGPT
- Smolagents,huggingface出品核心逻辑约一千行代码,偏单个 agent 和 code agent
Stripe出了一个SDK:Stripe Agent Toolkit,允许AI智能体直接处理支付业务。支持CrewAI和Langchain框架。这一点值得注意,之前都是框架去集成工具,现在是工具按照框架来去封装成Agent.
代码如下:
from stripe_agent_toolkit.crewai.toolkit import StripeAgentToolkit
stripe_agent_toolkit = StripeAgentToolkit(
secret_key="sk_test_...",
configuration={
"actions": {
"payment_links": {
"create": True,
},
}
},
)
from crewai import Agent
stripe_agent = Agent(
role="Stripe Agent",
goal="Integrate with Stripe",
backstory="You are an expert at integrating with Stripe",
tools=[*stripe_agent_toolkit.get_tools()]
)
智能体UI
目前看智能体UI都是绑定智能体框架的,好些并没有解耦出来。比如phidate的agent ui和phidate的agent是配套的。也就是各个智能体框架定义出来的Agent还没有标准的接入方式。
- phidate agent ui
- AutoGen Studio
- LangGraph Studio
音视频智能体
- TEN-Agent
- livekit
数据分析智能体
- 个基于AI的多代理研究助手项目:AI-Data-Analysis-MultiAgent,这个agent团队可以自动化完成数据分析、生成研究假设、图表可视化、报告生成等整个流程任务 https://github.com/starpig1129/AI-Data-Analysis-MultiAgent
网络爬虫智能体
- 基于Firecrawl和LangGraph构建的一个的网络爬虫教程,思路是用Agent进行网页数据智能爬取,可以理解网页内容、自适应爬取策略、自动分析和提取所需要的信息。github:https://github.com/trancethehuman/ai-workshop-code/blob/main/Scrape_the_web_agentically_with_Firecrawl_and_LangGraph.ipynb
留下评论