TokenAware

Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info

什麼是TokenAware?

TokenAware是由Sahar開發的Chrome擴展程式,該擴展的主要功能是“Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info”。

擴展截圖

screenshot
screenshot

下載TokenAware擴展crx文件

下載TokenAware擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        OpenAI's playground is where every GPT-3 powered app starts. Token-based pricing was introduced yet it's hard to track and understand how much you're expected to pay at the early stages of building your app within OpenAI's Playground.

The code for this extension can be found here https://github.com/Saharhash/TokenAware                    

擴展基本資訊

名稱 TokenAware TokenAware
ID ngcligbdheofopbokngenlgdpalociaf
官方網址 https://chromewebstore.google.com/detail/tokenaware/ngcligbdheofopbokngenlgdpalociaf
簡介 Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info
檔案大小 83.01 KB
安裝次數 58
目前版本 1.0.7
更新時間 2021-01-20
上架時間 2020-11-11
評分 5.00/5 共 2 次評分
開發者 Sahar
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.saharmor.info
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TokenAware",
    "description": "Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info",
    "version": "1.0.7",
    "browser_action": {
        "default_icon": "icon\/favicon.ico"
    },
    "icons": {
        "16": "icon\/favicon-16x16.png",
        "48": "icon\/favicon-32x32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.beta.openai.com\/*"
            ],
            "js": [
                "jquery-2.2.js",
                "consts.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*.beta.openai.com\/*",
        "webNavigation"
    ]
}