Logo

GPT 電腦助手

Static Badge

適用於 Windows、MacOS 和 Ubuntu 的 gpt-4o
文件 . 探索功能 »


windows macos linux

Made_with_python . pypi_downloads

Static Badge

|[ENGLISH](README.md)|[簡體中文](README.zh_CN.md)|正體中文|[TÜRKÇE](README.TR.md) # GPT 電腦助手 嗨,這是為了將 ChatGPT MacOS 應用程式提供給 Windows 和 Linux 的替代方案。這樣做可以提供一個新鮮且穩定的解決方案。這次您可以輕鬆地安裝為 Python 庫,但我們將準備一個流程,提供本機安裝腳本(.exe)。 由 KhulnaSoft Tiger 🐅 提供支持的功能集成中心。 Static Badge
Static Badge ## 安裝 && 運行 需要 >= Python 3.9 ```console pip3 install 'gpt-computer-agent[default]' ``` ```console computeragent ``` ### 代理基礎設施 這樣一來,您可以創建 `crewai` 代理,並將其用於 gpt-computer-agent 圖形用戶界面和工具中。 ```console pip3 install 'gpt-computer-agent[agentic]' ``` ```python from gpt_computer_agent import Agent, start manager = Agent( role='Project Manager', goal='understands project needs and assist coder', backstory="""You're a manager at a large company.""", ) coder = Agent( role='Senior Python Coder', goal='writing python scripts and copying to clipboard', backstory="""You're a python developer at a large company.""", ) start() ``` ### 新增自訂工具 現在您可以添加在代理基礎設施和助理進程中運行的自訂工具。 ```python from gpt_computer_agent import Tool, start @Tool def sum_tool(first_number: int, second_number: int) -> str: """Useful for when you need to sum two numbers together.""" return first_number + second_number start() ``` https://github.com/khulnasoft/gpt-computer-agent/assets/41792982/26ae3624-e619-44d6-9b04-f39cf1ac1f8f

Logo

## 使用方式 ![選項](https://github.com/khulnasoft/gpt-computer-agent/assets/41792982/54b39347-98e0-4ee4-a715-9128c40dbcd4) ## 使用案例
Take Meeting Notes Daily Assistant
Read Docs Coding Assistant
## 路線圖 | 功能 | 狀態 | 目標發布 | |---------------------------------|--------------|--------------| | 清除聊天記錄 | 已完成 | 2024 年第二季度| | 長音訊支持(拆分 20mb) | 已完成 | 2024 年第二季度| | 文本輸入 | 已完成 | 2024 年第二季度| | 僅文本模式(靜音) | 已完成 | 2024 年第二季度| | 添加配置文件(不同聊天) | 已完成 | 2024 年第二季度| | 更多關於助手狀態的回饋 | 已完成 | 2024 年第二季度| | **新 UI** | 計劃中 | 2024 年第二季度| | **我們的自訂代理基礎設施** | 計劃中 | 2024 年第二季度| | **本機應用程式,exe,dmg,appimage** | 計劃中 | 2024 年第二季度| | **DeepFace 集成(臉部識別)** | 計劃中 | 2024 年第二季度| | **本地模式(使用 Ollama,語音和視覺模型)** | 計劃中 | 2024 年第二季度| ## 功能 此時我們擁有許多基礎設施元素。我們只是希望提供 ChatGPT 應用中已經存在的所有功能。 | 功能 | 描述 | |-----------------------------------|-------------------------------| | **螢幕讀取** | OK | | **麥克風** | OK | | **系統音訊** | OK | | **記憶體** | OK | | **打開和關閉應用程式** | OK | | **打開一個 URL** | OK | | **剪貼簿** | OK | | **搜尋引擎** | OK | | **編寫和運行 Python** | OK | | **編寫和運行 SH** | OK | | **使用你的 Telegram 帳戶** | OK | | **知識管理** | OK | ## 貢獻者