TokenAware
Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info
ما هو TokenAware؟
TokenAware هو إضافة Chrome تم تطويرها بواسطة Sahar، والميزة الرئيسية لها هي "Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TokenAware
قم بتنزيل ملفات الامتداد TokenAware بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | |
ID | ngcligbdheofopbokngenlgdpalociaf |
عنوان URL الرسمي | 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 |
البريد الإلكتروني | koryoislie@gmail.com |
نوع الدفع | 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" ] } |