KB Plugins
Knowledge Base plugins allow you to create custom data source types for importing and processing information from external systems into your knowledge base.
Adding a datahub source type
A datahub source is any custom file source that can be imported into a Knowledge Base. A datahub source converts your source into files. An example source is reading from a SQL database and writing the data as text to a file.
First we define a config class, this contains the configuration for the source. The config class must inherit from CustomSourceConfig
, and must implement the to_files
method.
Next we define a source class, this contains the subtype, name, image, and config class. The subtype must be unique across all sources. These values will be visible in our UI when selecting a source.
The final step is to return the source in the datahub_sources
method of your plugin.