English | 中文
This folder is the repository-side hub for plugin source files in OpenWebUI Extensions. If you want the best discovery experience, start with the Plugin Center first, then come back here when you want the source tree, local READMEs, or repo-only entries.
- Use the Plugin Center for curated recommendations and the current catalog
- Jump into a type folder when you already know you need an Action, Filter, Pipe, Tool, or Pipeline reference
- Open the local plugin folder when you need the source file, local README, or repo-only notes
- Actions — interactive buttons, exports, visualizations, and user-facing chat experiences
- Filters — message-pipeline logic for context, cleanup, and response shaping
- Pipes — model integrations and advanced workflow runtimes
- Tools — native tools that can be called across models and workflows
- Pipelines — orchestration-oriented references and historical experiments
plugins/
├── actions/<plugin>/
│ ├── <plugin>.py
│ ├── README.md
│ └── README_CN.md
├── filters/<plugin>/
│ ├── <plugin>.py
│ ├── README.md
│ └── README_CN.md
├── pipes/<plugin>/
│ ├── <plugin>.py
│ ├── README.md
│ └── README_CN.md
├── tools/<plugin>/
│ ├── <plugin>.py
│ ├── README.md
│ └── README_CN.md
└── pipelines/<plugin>/
└── ...
Current repo rule: plugin source stays in a single Python file with built-in i18n. Do not split source into separate
_cn.pyfiles.
Some items may appear in the repository before a mirrored docs page exists. Right now, notable repo-only entries include:
plugins/pipes/iflow-sdk-pipe/plugins/filters/chat-session-mapping-filter/
- OpenWebUI Community — install directly from Fu-Jie's profile
- Docs + repo source — use the docs pages to choose, then upload the matching
.pyfile - Bulk install locally — run
python scripts/install_all_plugins.pyafter setting up.env
