TokenAware
Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info
Cos'è TokenAware?
TokenAware è un'estensione di Chrome sviluppata da Sahar, e la sua funzione principale è "Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TokenAware
Scarica i file di estensione TokenAware in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | TokenAware |
ID | ngcligbdheofopbokngenlgdpalociaf |
URL Ufficiale | https://chromewebstore.google.com/detail/tokenaware/ngcligbdheofopbokngenlgdpalociaf |
Descrizione | Dynamically count tokens and visualize your spend in OpenAI's Playground. 100% client side and secure. For feedback: saharmor.info |
Dimensione del File | 83.01 KB |
Conteggio Installazioni | 58 |
Versione Corrente | 1.0.7 |
Ultimo Aggiornamento | 2021-01-20 |
Data di Pubblicazione | 2020-11-11 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Sahar |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.saharmor.info |
Lingue Supportate | 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" ] } |