genkitx-temporal
    Preparing search index...

    Interface TemporalPluginOptions

    Options for the Temporal Genkit plugin.

    Note: these are defaults used when no explicit value is supplied to the worker or client helpers. They do not configure the Temporal Server itself.

    interface TemporalPluginOptions {
        address?: string;
        namespace?: string;
        taskQueue?: string;
    }
    Index

    Properties

    address?: string

    Default Temporal address (host:port) used by the helpers when none is passed explicitly. Defaults to the env var TEMPORAL_ADDRESS or localhost:7233.

    namespace?: string

    Default Temporal namespace. Defaults to env TEMPORAL_NAMESPACE or "default".

    taskQueue?: string

    Default task queue used when none is passed explicitly. Defaults to env TEMPORAL_TASK_QUEUE or "genkit".