If you own a Xiaomi, Redmi, or POCO smartphone based on MIUI, youβve probably encountered PAI (Personal AI Assistant) feature, which is a built-in assistant that analyzes your actions, offers personalized recommendations, and even manages some settings automatically, but not everyone likes the system collecting data about their habits β especially when it affects performance or privacy.
In this article, we will discuss all the current ways to disable PAI on Xiaomi in 2026, including hidden settings, ADB commands, and even radical methods for those who want to get rid of the assistant forever. You will learn how to deactivate PAI without losing MIUI functionality, what risks are associated with a complete deletion, and what to do if the system again activates the assistant after an update.
What is PAI in Xiaomi and why they want to disable it
PAI (Personal AI Assistant) is a proprietary development of Xiaomi, integrated into the MIUI shell since version 12.5. According to the manufacturer, the assistant should simplify interaction with the device: automatically sort notifications, offer quick actions depending on the context (for example, launching the navigator when connecting to a Bluetooth magnet), and even optimize battery consumption.
However, in practice, many users face problems:
- π Increased battery consumption β PAI Works in the background, constantly analyzing sensor data and applications.
- π‘οΈ Personal data collection β the assistant needs access to call history, location, application use.
- π’ Slowing down the system on budget models (Redmi) 9A, POCO M3) PAI may cause lag.
- π± Incorrect recommendations β for example, offering to turn on mobile data when you specifically disabled it.
In addition, PAI cannot be completely removed by standard means β even after switching off in settings, it can be activated again after the MIUI update.
Method 1: Disable PAI through standard MIUI settings
The easiest and safest method is to deactivate the assistant in the settings menu, which is suitable for most models (Xiaomi 13, Redmi Note 12, POCO F5, etc.) and does not require superuser rights.
Instructions:
- Open the Settings app (cog icon).
- Go to the Memory section. β PAI (On some firmware, the path may be different: β PAI).
- Turn off the PAI Personal Assistant slider.
- In the window that appears, confirm the action by clicking Disconnect.
After that, the basic functions of the assistant will be deactivated, but some services (such as application usage analytics) may continue to work in the background.
- π Go to Settings. β Annexes β Application management.
- π Find it on the list. PAI Service (or Personal Assistant).
- π Click Stop and Disable (if available).
βοΈ Checking the shutdown PAI
β οΈ Note: On some firmware (for example, MIUI Global for the European market, paragraph PAI It may not be on the menu, in which case try the alternative methods described below.
Method 2: Disconnect via ADB (for power users)
If the PAI does not turn off through settings or is activated again after restarting, you can use the ADB command (Android Debug Bridge), which requires connecting the smartphone to the computer and enabling debugging mode.
Step-by-step:
- Activate Developer Mode: Go to Settings β About Phone. Press 7 times on MIUI Version until you become a developer.
USB debugging
Settings β Additional β For Developers
ADB
Minimal ADB and Fastboot
Open the command line (Windows) or terminal (macOS/Linux) and type:
adb shell pm disable-user --user 0 com.miui.personalassistant
adb shell pm uninstall -k --user 0 com.miui.personalassistantThe first command disables PAI for the current user, the second - removes the application updates (the application itself will remain in the system, but will stop working).
| ADB Team Team | The effect | Reversibility |
|---|---|---|
| pm disable-user | Disables PAI before manual activation | Yes (via pm enable) |
| pm uninstall -k | Remove updates, reset to factory version | Partially (requires an update via Play Market) |
| pm hide | Hiding the application from the system (requires root) | Yes (via pm unhide) |
β οΈ Attention: After update MIUI team ADB They can drop, and PAI To avoid this, add a command to the auto-execution script when booting (e.g., via Tasker or MacroDroid).
π‘
If PAI still works after executing the commands, check for duplicate services: enter the pm list packages | grep pai in ADB and disable all found packages.
Method 3: Completely remove PAI via TWRP (requires unlocking the bootloader)
For those willing to take drastic measures, it is possible to physically remove PAI files from the system.
- π Unlocked bootloader (bootloader).
- π± Established custom recaveri TWRP.
- π οΈ Backup of data (procedure may result in resetting).
Instructions:
- Download the official ZIP-file-box PAI (for example, Disable_PAI_MIUI.zip for your model).
- Reboot the phone to TWRP (clip Power + Volume up).
- In the Recovery menu, select Install and specify the path to the downloaded file.
- Confirm the installation with a swipe and wait for completion.
- Clear the cache (Wipe β Dalvik / ART Cache) and restart the device.
This method removes PAI at the system file level, but has risks:
- β οΈ Possible errors in work MIUI (For example, missing tiles in the notification curtain).
- β οΈ After the firmware update PAI You may return, you will have to repeat the procedure.
- β οΈ Xiaomi warranty will be canceled due to unlocking the bootloader.
List of models with confirmed operability of the method
Method 4: Disconnecting through file editing build.prop
Another way to deactivate PAI is to change the build.prop system file, which contains the shell configuration, a method less risky than deleting via TWRP, but requires root rights or access to ADB with superuser rights.
How to do this:
- Connect your phone to your PC and open ADB Shell:
adb shell
su- Open the build.prop file in a text editor (for example, via nano or vi):
mount -o rw,remount /system
nano /system/build.prop- Add a line to the end of the file:
ro.miui.pai.disabled=1- Save the changes (Ctrl+O, then Ctrl+X to nano).
- Reset the device:
rebootOnce you reboot, PAI must be disabled at the system level, and to get it back, you just need to delete the added string from build.prop.
β οΈ Warning: Incorrect editing of build.prop can lead to bootloop ( looped reboot).Before changes, make a backup of the file with the cp command /system/build.prop /sdcard/build.prop.bak.
Alternative methods: what to do if the PAI is not turned off
If none of the above methods worked, try the following options:
- π Reset to factory settings: Sometimes PAI "It's built into the system so deep that only a complete reset helps you get rid of it. Before that, save your data and your accounts! β The phone. β Resetting settings.
- π΅ Firewall Blocking: Applications like NetGuard or AFWall+ Can block access PAI Install a firewall from F-Droid and turn off the Internet for com.miui.personalassistant.
- π‘οΈ Use of the Xposed/EdXposed: DisableFlagSecure module or MIUI Optimizations allows you to disable system components, including PAI. Requires root and an installed Xposed framework.
- π§ Switching to custom firmware: Firmware like LineageOS, Pixel Experience or HavocOS does not contain PAI And other proprietary components of Xiaomi. MIUI (for example, the themes of design).
π‘
On devices with MIUI EU (European version), PAI is often disabled by default. If you use global or Chinese firmware, consider switching to MIUI EU via Xiaomi.eu.
Frequent problems and their solutions
When you turn off PAI, you'll see common errors, and here are the most common ones and how to fix them:
| Problem. | Possible cause | Decision |
|---|---|---|
| PAI is activated again after the update | MIUI restores system applications | Repeat the shutdown via ADB or use the Magisk module to lock |
| Search in settings does not work after disabling PAI | PAI is responsible for indexing system data | Install an alternative launcher (like Nova Launcher) with built-in search |
| Error: "Com.miui.personalassistant process stopped" | Conflict after manual deletion of files | Clear the app cache or reset via TWRP |
| It is impossible to disable PAI in settings (no item) | Firmware for the Chinese market (MIUI China) | Go to MIUI Global or use ADB |
If you notice a performance deterioration or unstable MIUI after disabling the PAI, try:
- Clear the system cache: Settings β Memory β Cleaning.
- Remove updates to the PAI Service app in the Play Market.
- Install a compatibility patch through Magisk (e.g. Universal SafetyNet Fix).