ChatDev IDE: Building your AI Agent

Personalize your AI Town and build your GPTs with PromptIDE.

ChatDev IDE: Building your AI Agentとは何ですか?

ChatDev IDE: Building your AI Agentはhttps://chatdev.toscl.comによって開発されたChromeの拡張機能で、その主な機能は「Personalize your AI Town and build your GPTs with PromptIDE.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ChatDev IDE: Building your AI Agent拡張機能のCRXファイルをダウンロード

ChatDev IDE: Building your AI Agent拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ChatDev IDE to seamlessly connect conversations across various agents within a web browser, It consists of three parts: Game Mode、Chat Mode and Prompt IDE.

you can personalize these NPCs, customize the location's prompt, and build your GPTs with the visualize prompt editor, run GPTs let NPCs Multi-Persona Self-Collaboration.

The ability to chain together conversations across different agents within a browser is one of the most interesting things about the project, as all the other attempts to do so like autogen etc use huge amounts of API tokens. if you use the default Webapp Mode, you will spend $0 tokens. (this just requires your browser to log in to the LLM's website then will use it through the extension.)

✨GameMode: in the AI Town Social Simulation, you can customize these NPCs & location mark.
✨GPTs Support: import from GPTs Community or defined yours.
✨PromptIDE: Automatic completion, Dual screen display, Visualize PromptFlow, JavaScript Support
✨Not just ChatGpt, but the new Bing Chat, Google Bard, Claude, QianWen, iFlytek Spark, and more than 10 open source models.

It accelerates prompt engineering through JavaScript Support that allows implementing complex prompting techniques.

Source code: https://github.com/10cl/chatdev                    

拡張機能の基本情報

名前 ChatDev IDE: Building your AI Agent ChatDev IDE: Building your AI Agent
ID dopllopmmfnghbahgbdejnkebfcmomej
公式URL https://chromewebstore.google.com/detail/chatdev-ide-building-your/dopllopmmfnghbahgbdejnkebfcmomej
説明 Personalize your AI Town and build your GPTs with PromptIDE.
ファイルサイズ 10.71 MB
インストール数 4,658
現在のバージョン 1.4.3
最終更新日 2024-02-22
公開日 2023-08-15
評価 4.43/5 合計 14 レビュー
開発者 https://chatdev.toscl.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://chatdev.toscl.com
ヘルプページのURL https://chatdev.toscl.com
プライバシーポリシーページのURL https://chatdev.toscl.com/privacy_policy
対応言語 id,de,en,fr,es,ru,th,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.4.3",
    "icons": {
        "16": "src\/assets\/icon.png",
        "32": "src\/assets\/icon.png",
        "48": "src\/assets\/icon.png",
        "128": "src\/assets\/icon.png"
    },
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "action": [],
    "host_permissions": [
        "https:\/\/*.bing.com\/",
        "https:\/\/*.openai.com\/",
        "https:\/\/*.xfyun.cn\/",
        "https:\/\/bard.google.com\/",
        "https:\/\/*.toscl.com\/",
        "https:\/\/*.aliyun.com\/",
        "https:\/\/*.poe.com\/",
        "https:\/\/*.anthropic.com\/",
        "https:\/\/*.claude.ai\/"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
    },
    "optional_host_permissions": [
        "https:\/\/*\/*",
        "wss:\/\/*\/*"
    ],
    "permissions": [
        "storage",
        "unlimitedStorage",
        "sidePanel",
        "declarativeNetRequestWithHostAccess"
    ],
    "content_scripts": [
        {
            "js": [
                "assets\/chatgpt-inpage-proxy.ts-loader-dcb64d17.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        },
        {
            "js": [
                "assets\/chatdev-inpage.ts-loader-1282f367.js"
            ],
            "matches": [
                "https:\/\/chatdev.toscl.com\/*"
            ]
        }
    ],
    "commands": {
        "open-app": {
            "suggested_key": {
                "default": "Alt+L",
                "windows": "Alt+L",
                "linux": "Alt+L",
                "mac": "Command+L"
            },
            "description": "Open ChatDev app"
        }
    },
    "side_panel": {
        "default_path": "sidepanel.html"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_bing",
                "enabled": true,
                "path": "src\/rules\/bing.json"
            },
            {
                "id": "ruleset_ddg",
                "enabled": true,
                "path": "src\/rules\/ddg.json"
            },
            {
                "id": "ruleset_qianwen",
                "enabled": true,
                "path": "src\/rules\/qianwen.json"
            },
            {
                "id": "ruleset_baichuan",
                "enabled": true,
                "path": "src\/rules\/baichuan.json"
            }
        ]
    },
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "resources": [
                "assets\/browser-polyfill-a1087b52.js",
                "assets\/proxy-fetch-042b042d.js",
                "assets\/chatgpt-inpage-proxy.ts-026ac2c1.js"
            ],
            "use_dynamic_url": true
        },
        {
            "matches": [
                "https:\/\/chatdev.toscl.com\/*"
            ],
            "resources": [
                "assets\/browser-polyfill-a1087b52.js",
                "assets\/chatdev-inpage.ts-e4fbedbc.js"
            ],
            "use_dynamic_url": true
        }
    ]
}