First, you need to enable the Statistics feature. Go to the dashboard of AI Engine and check the corresponding option:

This will add a new tab in AI Engine settings. Now you can go to the "Queries" tab. Here, you will find a list of all the queries that are being made to your chatbot. You can also set limits here.
By the way, if you want to see the logs of any of these queries, you will need to go to the "Settings" tab and enable the "Queries Data" option.
Once you have enabled the limits, you have different settings that you can tweak, such as the number and type of credits (Queries, Tokens, and Dollars). You can also set the timeframe for each of these limits to reset.

Be careful, there are three different settings tabs here: User, Guests, and System. Take a look at the message that will be sent by the chatbot when the user reaches its limit for each of those.
The "System" setting will apply to every type of user. It's kind of like your website's maximum limit, so make sure to set this up correctly as well.


If you want to customize the limits based on your users’ roles or any meta data please refer to our documentation on the matter : https://meowapps.com/ai-engine/faq/#limits-users-customers
If you are looking for ways to block access from different parameters, such as time (only available from 2 p.m to 4 p.m), currently, there are no out-of-the-box features to accomplish this. However, you can achieve it yourself by using AI Engine filters. By using the mwai_ai_allowed($allowed, $query, $limits) function, you can check the timing of the user's query and return an error message if the timeframe is not suitable for you.
You can also come up with a solution on the client side. Using JavaScript, you can check the current time and then select the chatbot using its ID to disable it. You can do this by either hiding it or disabling the input with CSS, or even deleting the DOM element. If you need help or an example, please reach out through the support link in this documentation! 😊
Sure ! Go read our documentation over there : FAQ | Meow Apps ! 🐈
Instead of setting limits in terms of "tokens" or "dollars," you can easily configure them based on "queries" for your users. This way, when using the filter, you'll be handling "questions" rather than a credit system. Although the underlying logic remains the same, where 1 credit equals 1 question, using the filter becomes more intuitive.