dify/api/providers
xuwei95 2126a5a11b feat: try to see the hierarchy in phonenix trace rather than all single events
try to see the hierarchy in phonenix trace rather than all single events
2026-04-21 16:41:21 +08:00
..
trace feat: try to see the hierarchy in phonenix trace rather than all single events 2026-04-21 16:41:21 +08:00
vdb refactor: replace deprecated Iterator with Generator in contextmanagers #35433 (#35441) 2026-04-21 07:44:49 +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.