Files
Kian Jones 25d54dd896 chore: enable F821, F401, W293 (#9503)
* auto fixes

* auto fix pt2 and transitive deps and undefined var checking locals()

* manual fixes (ignored or letta-code fixed)

* fix circular import
2026-02-24 10:55:08 -08:00
..
2025-09-17 15:47:40 -07:00
2025-09-17 15:47:40 -07:00
2025-09-17 15:47:40 -07:00

Plugins

Plugins enable plug and play for various components.

Plugin configurations can be set in letta.settings.settings.

The plugins will take a delimited list of consisting of individual plugin configs:

<plugin_name>.<config_name>=<class_or_function>

joined by ;

In the default configuration, the top level keys have values plugin_name, the config_name is nested under and the class_or_function is defined after in format <module_path>:<name>.

DEFAULT_PLUGINS = {
    "experimental_check": {
        "default": "letta.plugins.defaults:is_experimental_enabled",
        ...