Options

This section lists all available settings and how to access them in your code.

To get started, import the settings object:

from zerogpt.utils import settings

Then, retrieve all available options and their properties with:

print(settings.options())

Example output:

{
    'keep-alive': {
        'default': 'Enabled',
        'can_disable': False,
        'can_change': False,
        'kwargs': None
    }
}

Description of parameters:

  • default — the default value. Most options are enabled by default.

  • can_disable — indicates whether the setting can be completely disabled.

  • can_change — indicates whether the value can be modified.

  • kwargs — contains additional configurable parameters (if applicable).

Last updated