TokenAware

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

TokenAware là gì?

TokenAware là một tiện ích mở rộng Chrome được phát triển bởi Sahar, và tính năng chính của nó là "Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TokenAware

Tải xuống các tệp mở rộng TokenAware dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TokenAware TokenAware
ID ngcligbdheofopbokngenlgdpalociaf
URL Chính Thức https://chromewebstore.google.com/detail/tokenaware/ngcligbdheofopbokngenlgdpalociaf
Mô tả Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info
Kích Thước Tệp 83.01 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 1.0.7
Cập Nhật Lần Cuối 2021-01-20
Ngày Phát Hành 2020-11-11
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Sahar
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.saharmor.info
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}