AutoBE
    Preparing search index...

    Interface AutoBeUserMessageImageContent

    User message content for image uploads.

    Handles image attachments in user messages, supporting both base64-encoded images and URL references. Used for sharing UI mockups, diagrams, screenshots, and other visual materials.

    Samchon

    interface AutoBeUserMessageImageContent {
        detail?: "auto" | "high" | "low";
        image: AutoBeUserMessageImageContent.IBase64 | IUrl;
        type: "image";
    }

    Hierarchy

    • AutoBeUserMessageContentBase<"image">
      • AutoBeUserMessageImageContent
    Index

    Properties

    Properties

    detail?: "auto" | "high" | "low"

    Image analysis detail level.

    • "auto": Automatic detail selection
    • "high": Detailed analysis for complex images
    • "low": Fast processing for simple images

    Image content data.

    Either base64-encoded image data or a URL reference.

    type: "image"

    Type discriminator for identifying the specific content modality.

    Provides type-safe discrimination between different content types such as "text", "audio", "image", and "file". This discriminator enables proper type narrowing and ensures that each content type is processed according to its specific characteristics and requirements.

    The type field is essential for the multimodal content processing pipeline, allowing the system to route different content types to appropriate handlers while maintaining type safety throughout the conversation flow.