dify/api/providers
dependabot[bot] b97abe5328
chore: bump nltk from 3.9.4 to 3.10.0 in /api (#39503)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: yunlu.wen <yunlu.wen@dify.ai>
2026-07-28 08:19:15 +00:00
..
trace test: use SQLite in Aliyun trace utilities (#38983) 2026-07-28 05:40:27 +00:00
vdb chore: bump nltk from 3.9.4 to 3.10.0 in /api (#39503) 2026-07-28 08:19:15 +00:00
conftest.py test: add SQLite session fixture for providers (#38982) 2026-07-21 08:29:44 +00:00
README.md refactor(api): move trace providers (#35144) 2026-04-17 07:53:35 +00:00

Providers

This directory holds optional workspace packages that plug into Difys API core. Providers are responsible for implementing the interfaces and registering themselves to the API core. Provider mechanism allows building the software with selected set of providers so as to enhance the security and flexibility of distributions.

Developing Providers

Tests

Provider tests often live next to the package, e.g. providers/<type>/<backend>/tests/unit_tests/. Shared fixtures may live under providers/ (e.g. conftest.py).

Excluding Providers

In order to build with selected providers, use --no-group vdb-all and --no-group trace-all to disable default ones, then use --group vdb-<provider> and --group trace-<provider> to enable specific providers.