Troubleshooting AI model downloads and configuration
Fix missing model files and common AppServerX.xml misconfigurations.
Use this page when AppServer fails to start, or AI suggestions don't work.
Missing model files (model wasn’t downloaded)
Symptoms
You may see one of these errors in logs:
04/03/26:16:06:15.635 #21644:0 Subsystem_General Error Failed to load config for model 'en'. The model is disabled until the application is restarted. Failed to open AI config file: '<Installation_path>/AppServer/grammar/neural/en/config.json'. Reason: file doesn't exist.Cause
The AI model directory exists in config, but the model files are missing.
This usually happens when:
the host had no outbound internet during installation
files were copied partially during a manual/offline install
Fix
Pick one:
Re-run installation and select the needed AI models.
Install resources manually using the offline package.
Use: Manually downloading resources (offline installation)
“Unknown AI model” after disabling the model
Symptom
Cause
The model is disabled in AppServerX.xml under <AIModels>, but it is still referenced by an enabled language configuration.
Common sources of that dependency:
an enabled check kit that includes
<Neural Enabled="true" .../>an enabled
<Autocomplete Enabled="true">block
Fix options
Option A: Re-enable the model
If you still want AI features, re-enable the model in <AIModels> and ensure the model files exist.
Option B: Disable AI usage in language configuration (recommended)
If your goal is to turn off AI features, disable them where they are used:
Back up
AppServerX.xml.In
AppServerX.xml, for each affected<Language ...>:disable all check kits that include
<Neural Enabled="true" .../>make a non-AI check kit the default (for example,
lt_hs)to disable autocomplete, set
<Autocomplete Enabled="false">or remove the block
Disable the related model in
<AIModels>(Enabled="false").Restart the application
Restart AppServer to apply changes in
AppServerX.xml.
Was this helpful?

