@camunda8/orchestration-cluster-api
    Preparing search index...

    Type Alias AgentInstanceObjectContent

    Object content

    An arbitrary structured content block. Accepts any valid JSON value: objects, arrays, numbers, booleans, or strings. Use TEXT content for human-readable natural language; use OBJECT content for machine-readable structured data.

    type AgentInstanceObjectContent = {
        contentType: string;
        object: unknown;
    }
    Index
    contentType: string

    The content type discriminator.

    object: unknown

    Arbitrary structured content — any valid JSON value (object, array, number, boolean, or string).