Autopilot - Config key mismatch - 'model' vs 'chatModel'

I found a discrepancy between the documentation and implementation regarding the configuration key for the chat model.

In the code (/addons/Autopilot/bootstrap.php, line 31):

'chatModel' => function() {
    return $this->app->retrieve('autopilot/openAI/chatModel', 'gpt-5-nano');
},

In the documentation (/addons/Autopilot/README.md, line 47 and 75):

'model' => 'gpt-4o-mini',                    // Default chat model

The code expects the key chatModel, but the documentation instructs users to configure it using model. This means anyone following the README to override the default model would have their setting ignored.

Thanks! Will be fixed with the next release!