Member Junction
    Preparing search index...

    Aggregated attachment limits for an agent, combining all relevant input modalities.

    interface AgentAttachmentLimits {
        acceptedFileTypes: string;
        enabled: boolean;
        maxAttachments: number;
        maxAttachmentSizeBytes: number;
        modalities: Map<string, ModalityLimits>;
    }
    Index

    Properties

    acceptedFileTypes: string

    Accepted file types as a pattern (e.g., "image/" or "image/,audio/*")

    enabled: boolean

    Whether attachments are enabled for this agent

    maxAttachments: number

    Maximum total attachments per message across all modalities

    maxAttachmentSizeBytes: number

    Maximum size in bytes for any single attachment

    modalities: Map<string, ModalityLimits>

    Individual modality limits