@archastro/sdk
    Preparing search index...

    Interface KnowledgeSourceKind

    Describes a single knowledge source kind that can be created through the public API. Use the type value when creating a new knowledge source.

    interface KnowledgeSourceKind {
        description?: string;
        label?: string;
        type: string;
    }
    Index

    Properties

    description?: string

    Short description of what this source kind ingests and how it is used.

    label?: string

    Human-readable display name for this source kind, suitable for showing in a UI.

    type: string

    Machine-readable type identifier for this source kind (e.g. "gmail", "github_activity"). Pass this value as type when creating a knowledge source.