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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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 |
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 |
อีเมล | [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" ] } |