The foundation model must have multimodal capabilities because the application accepts one modality—an image—and produces information in another modality—text.
AWS Bedrock documentation explains that models differ according to supported input modalities and output modalities . AWS provides an explicit example of using a Bedrock model to “Generate a text response to an image with an accompanying text prompt.” This represents exactly the image-understanding capability needed by the ecommerce application.
A multimodal model can process more than one type of information, such as text, images, audio, or video. For catalog generation, the system can provide a product image as input and ask the model to identify visible attributes such as product type, shape, material, color, style, notable components, or other relevant characteristics. The model can then generate a natural-language catalog description.
AWS also supports broader multimodal processing through Amazon Bedrock. For example, Bedrock Data Automation can process images, audio, video, and documents, while foundation model parsers can extract information and generate descriptions of visual content.
Multilanguage processing concerns understanding or generating content across human languages. It does not inherently enable image interpretation.
Retrieval Augmented Generation (RAG) combines retrieved external knowledge with a model ' s generation process. RAG could enrich a product description with retrieved catalog specifications, but it does not provide the fundamental image-understanding capability required to interpret the product photograph.
A sequence-to-sequence architecture maps one sequence to another and is historically associated with workloads such as translation, summarization, and related text transformations. The question is specifically testing the ability to process multiple modalities rather than a particular internal neural-network architecture.
Because the model must understand visual image input and transform that understanding into textual output, B. Multimodal capabilities is the required characteristic.
Submit