微信扫码
与创始人交个朋友
我要投稿
在人工智能技术迅速发展的今天,开发高效的 AI 智能体成为了许多开发者追求的目标。Composio 作为一款面向 AI 智能体且生产就绪的工具集,为开发者提供了强大的支持,使其能够更轻松地构建和管理 AI 智能体。本文将详细介绍 Composio 的相关信息,包括其功能特性、应用场景以及应用实践等方面。
Composio 自称是“面向 AI 智能体的生产就绪工具集”,它为开发者提供了高质量的工具和集成,让开发者无需担心单行代码中的身份验证、准确性和可靠性。Composio 为 AI 智能体的开发提供了一个全面、灵活且强大的平台,使其能够适应各种不同的应用场景和需求。其设计理念是基于 AI 智能体/工作流是未来的方向,是将 AI 智能体集成到最佳代理工具并使用它们来完成任务的最佳工具集。
2. 具体场景:
以下是“如何使用 Composio 与 GitHub 集成,代表用户为某个开源存储库加星标”的示例代码
首先需要安装 Composio 的核心库和相关插件,安装命令如下:
pip install composio-core
安装 Composio 的 OpenAI 插件(需要 OpenAI 的场景)
pip install composio-openai
添加 GitHub 集成(当前场景需要使用GitHub)
composio add github
4、初始化Composio工具集
导入依赖包、初始化Composio 工具集和OpenAI客户端
from openai import OpenAI
from composio_openai import ComposioToolSet, App, Action
#初始化OpenAI客户端
openai_client = OpenAI(api_key="**\*\***OPENAIKEY**\*\***")
# 初始化Composio 工具集
composio_toolset = ComposioToolSet(api_key="**\*\***COMPOSIO_API_KEY**\*\***")
5、获取预配置的 GitHub 工具
# Get GitHub tools that are pre-configured
actions = composio_toolset.get_actions(actions=[Action.GITHUB_ACTIVITY_STAR_REPO_FOR_AUTHENTICATED_USER])
6、工具函数配置
my_task = "Star a repo composiohq/composio on GitHub"
# Setup openai assistant
assistant_instruction = "You are a super intelligent personal assistant"
assistant = openai_client.beta.assistants.create(
name="Personal Assistant",
instructions=assistant_instruction,
model="gpt-4-turbo-preview",
tools=actions, # type: ignore
)
# create a thread
thread = openai_client.beta.threads.create()
message = openai_client.beta.threads.messages.create(thread_id=thread.id,role="user",content=my_task)
# Execute Agent with integrations
run = openai_client.beta.threads.runs.create(thread_id=thread.id,assistant_id=assistant.id)
7、执行工具函数
# Execute Function calls
response_after_tool_calls = composio_toolset.wait_and_handle_assistant_tool_calls(
client=openai_client,
run=run,
thread=thread,
)
print(response_after_tool_calls)
六、结语
参考资料:
Composio 官网:https://composio.dev/
点亮“关注”,设为“星标”,精彩不迷路!我们携手探索AI的无限可能,精彩内容,持续为您更新!
53AI,企业落地应用大模型首选服务商
产品:大模型应用平台+智能体定制开发+落地咨询服务
承诺:先做场景POC验证,看到效果再签署服务协议。零风险落地应用大模型,已交付160+中大型企业
2024-12-21
基于AI智能助理的软件开源组件安全检查
2024-12-21
Llama2024年度要点总结
2024-12-21
重磅! Github Copilot 免费了
2024-12-20
万字长文帮你搞定AI Agent选型
2024-12-20
微软开源的 Markitdown 可将任意文件转换为 Markdown 格式,PDF 解析咋样?
2024-12-20
Claude的MCP(模型上下文协议)简介
2024-12-20
历时2年,华人团队力作,震撼开源生成式物理引擎Genesis,可模拟世界万物
2024-12-19
开源!轻量!AI 代码助手插件 Continue 使用体验如何?
2024-05-06
2024-07-25
2024-08-13
2024-06-12
2024-07-11
2024-06-16
2024-07-20
2024-09-20
2024-06-15
2024-07-25
2024-12-20
2024-12-19
2024-11-22
2024-11-19
2024-11-13
2024-11-13
2024-10-07
2024-09-22