TokenAware
Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info
Co to jest TokenAware?
TokenAware to rozszerzenie Chrome opracowane przez Sahar, a jego główną funkcją jest „Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia TokenAware
Pobierz pliki rozszerzeń TokenAware w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | TokenAware |
ID | ngcligbdheofopbokngenlgdpalociaf |
Oficjalny URL | https://chromewebstore.google.com/detail/tokenaware/ngcligbdheofopbokngenlgdpalociaf |
Opis | Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info |
Rozmiar pliku | 83.01 KB |
Liczba instalacji | 58 |
Aktualna Wersja | 1.0.7 |
Ostatnia Aktualizacja | 2021-01-20 |
Data Publikacji | 2020-11-11 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Sahar |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://www.saharmor.info |
Obsługiwane Języki | 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" ] } |