AutoBE
    Preparing search index...

    Interface AutoBeUserImageConversateContent

    Content type representing image input from users in the conversation.

    Enables users to share visual references, UI mockups, diagrams, screenshots, or other visual materials as part of their development requirements. Image content uses URL-backed references so raw user input remains separate from refined message metadata.

    interface AutoBeUserImageConversateContent {
        detail?: "auto" | "high" | "low";
        type: "image";
        url: string & Format<"iri">;
    }

    Hierarchy

    • AutoBeUserConversateContentBase<"image">
      • AutoBeUserImageConversateContent
    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
    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.

    url: string & Format<"iri">

    URL or data URL from which the image bytes can be read.