This is the AMP version of this page.
If you want to load the real page instead, click this text.

Help! CLEVERTYPE HELP

Saulildo

Platinian
I tried modifying the app so that I can have infinite daily tokens. But it didn't work, I tried every approach but nothing worked. Does anyone know why? Can anyone help me?
 
I searched the application name and it's an AI powered application, i assumed it must've been using OpenAI api which store tokens on the server
Imagine you can easily mod the tokens, the developer will go broke
It is actually not like that. In fact, the application itself utilizes the OpenAI API as its core, but it does not rely on the OpenAI service to count the tokens used. Instead, it only tallies the number of words in the answer and subtracts them from the daily word limit. The issue lies in my lack of knowledge regarding where this process takes place. Simply searching for 'Tokens' will not resolve the problem
 
Even if it's not using OpenAI for counting the token, i bet they store it on their server.
Infact, i attempted to intercept the network request and got this response:

JSON:
{
  "text": "Clevertype is a productivity tool that enhances users' typing speed and accuracy. It employs artificial intelligence and machine learning algorithms to anticipate and propose words as users type, facilitating quicker and more effortless typing. Clevertype also provides features such as autocorrect, text expansion, and customizable shortcuts to further improve typing efficiency.",
  "tokensUsed": 77,
  "totalTokensUsedByUser": 193,
  "tokenUsageResponse": {
    "tokensUsed": 77,
    "totalTokensUsedByUser": 193,
    "dailyTokenUsed": 193
  }
}

totalTokensUsedByUser consistently increases with every request/response, even if the request is not sent from the app.

You might be able to mod it if the app is sending the current token usage to the server, but unfortunately it's not.