Data storage

A datasource resource used to interact with a database.

You define datasources in the configuration.yaml file.

This is for a Vector Database datasource:

resources:
  - type: "vector-database"
    name: "NameOfTheDatasource"
    configuration:
      service: "SERVICE-TYPE"
      ...  other parameters depending on the service type
      

This is for a generic datasource:

resources:
  - type: "datasource"
    name: "NameOfTheDatasource"
    configuration:
      service: "SERVICE-TYPE"
      ...  other parameters depending on the service type
      

Supported services

Supporting a new service

If your favourite database is not supported, you can add support for it by creating a new plugin. Feel free to open an issue on GitHub to ask for help or file a feature request.

Last updated