最近,我一直在与狂看《火影忍者》的瘾作斗争。虽然这很令人愉快,但它绝对不能帮助我实现股东价值。 ?
那么,为什么不建立一个人工智能个人助理来监控我的屏幕并让我知道我是否做了不应该做的事情,比如看动漫? ?
考虑到过去一年人工智能的快速发展,我决定使用多模态语言模型来监控我的屏幕,并在我花费太多时间在非生产性活动上时让我知道。
所以,这就是我的做法。
在本文中,我还将解释如何使用 OpenAI 和 Composio 构建您的个人 AI 朋友。
Composio 是一个开源平台,可为您的 AI 代理提供工具和集成。它可让您通过代码解释器、RAG、嵌入等集成工具以及 GitHub、Slack、Jira 等集成来扩展 AI 代理的能力和多功能性。
请帮我们加一颗星。 ?
这会帮助我们创作更多这样的文章?
为 Composio.dev 存储库加注星标 ⭐
要成功完成该项目,您将需要以下内容。
那么,让我们开始吧。
首先创建一个 Python 虚拟环境。
python -m venv ai-friend cd ai-friend source bin/activate
现在,安装以下依赖项。
pip install composio-core pip install composio-openai openai pip install pyautogui
接下来,创建一个 .env 文件并为 OpenAI API 密钥添加环境变量。
OPENAI_API_KEY=your API key
您可以使用 CLI 轻松设置 Composio。
首先,通过运行以下命令登录您的帐户。
composio login
完成登录流程以继续。
现在,更新应用程序。
composio apps update
现在,您已准备好进入编码部分。
现在环境已经搭建完毕,让我们开始编码部分。
首先,导入库并初始化工具集。
import dotenv from openai import OpenAI from composio_openai import App, ComposioToolSet from composio.utils.logging import get as get_logger logger = get_logger(__name__) # Load environment variables from .env dotenv.load_dotenv() # Initialize tools. openai_client = OpenAI() composio_toolset = ComposioToolSet() # Retrieve actions actions = composio_toolset.get_tools(apps=[App.SYSTEMTOOLS, App.IMAGEANALYSERTOOL])
所以,在上面的代码块中,
所以,这就是这些工具的作用。
如果您想检查代码及其工作原理,请检查系统工具和图像分析工具的代码文件。
注意:Composio 中的操作是您的代理可以执行的任务,例如单击屏幕截图、发送通知或发送邮件。
现在,为代理定义清晰简洁的提示。这对于代理绩效至关重要。您可以根据您的要求更改提示。
assistant_instruction = ( """You are an intelligent and proactive personal productivity assistant. Your primary tasks are: 1. Regularly capture and analyze screenshots of the user's screen. 2. Monitor user activity and provide timely, helpful interventions. Specific responsibilities: - Every few seconds, take a screenshot and analyze its content. - Compare recent screenshots to identify potential issues or patterns. - If you detect that the user is facing a technical or workflow problem: - Notify them with concise, actionable solutions. - Prioritize non-intrusive suggestions that can be quickly implemented. - If you notice extended use of potentially distracting websites or applications (e.g., social media, video streaming): - Gently remind the user about their productivity goals. - Suggest a brief break or a transition to a more focused task. - Maintain a balance between being helpful and not overly disruptive. - Tailor your interventions based on the time of day and the user's apparent work patterns. Operational instructions: - You will receive a 'CHECK' message at regular intervals. Upon receiving this: 1. Take a screenshot using the screenshot tool. 2. Then, analyse that screenshot using the image analyser tool. 3. Then, check if the user uses distracting websites or applications. 4. If they are, remind them to do something productive. 5. If they are not, check if the user is facing a technical or workflow problem based on previous history. 6. If they are, notify them with concise, actionable solutions. 7. Try to maintain a history of the user's activity and notify them if they are doing something wrong. Remember: Your goal is to enhance productivity while respecting the user's autonomy and work style.""" ) assistant = openai_client.beta.assistants.create( name="Personal Productivity Assistant", instructions=assistant_instruction, model="gpt-4-turbo", tools=actions, # type: ignore ) # create a thread thread = openai_client.beta.threads.create() print("Thread ID: ", thread.id) print("Assistant ID: ", assistant.id)
在上面的代码块中,
现在,定义一个用于运行助手的函数。
def check_and_run_assistant(): logger.info("Checking and running assistant") # Send 'CHECK' message to the assistant message = openai_client.beta.threads.messages.create( thread_id=thread.id, role="user", content="CHECK", ) # Execute Agent run = openai_client.beta.threads.runs.create( thread_id=thread.id, assistant_id=assistant.id, ) # Execute function calls run_after_tool_calls = composio_toolset.wait_and_handle_assistant_tool_calls( client=openai_client, run=run, thread=thread, ) # Run the assistant check every 10 seconds while True: check_and_run_assistant()
这是上面代码中发生的事情。
最后,通过运行 Python 文件来执行该文件,让你的新 AI 朋友让你专注于你的目标。
代理会监视您的屏幕,并在发现您做了不应该做的事情时发送通知。
完整代码可以在这里找到
这是正在运行的代理的示例。
在本文中,您构建了个性化的 AI 朋友来监控您的活动。但是,添加外部集成(例如日历或 Gmail 工具)可以使其更加有用。这可以让您知道您是否有一些活动要参加或有重要电子邮件需要回复。
您可以使用 Composio 的广泛集成轻松完成此任务,从 GitHub 和 Calendar 到 Slack、Discord 等等。
如果你想看更多AI相关的文章,请在评论中告诉我,并在GitHub上给我们一个star。
为 Composio.dev 存储库加注星标 ⭐
感谢您的阅读! <script> // Detect dark theme var iframe = document.getElementById('tweet-1820129229683454160-179'); if (document.body.className.includes('dark-theme')) { iframe.src = "https://platform.twitter.com/embed/Tweet.html?id=1820129229683454160&theme=dark" } </script>
以上是我创建了一个 AI 伴侣,可以监控我的屏幕并帮助修复我的问题 ✨的详细内容。更多信息请关注PHP中文网其他相关文章!