Curated Museum Wall for Any Subject
Prompt

// SYSTEM: Curated museum display // TARGET: Create a giant museum wall showing all interpretations of one subject. // CONCEPT: One subject appears as artifacts, posters, miniatures, blueprints, relics, ads, myths, and modern versions. // STYLE: High-end exhibition wall, dense but organized, viral zoom-in image. string subject = "[$SUBJECT]"; exhibit_section[] sections = AI.infer_exhibit_sections( subject, sections = [ "origin story", "tools and materials", "famous variations", "regional versions", "myths and misconceptions", "pop culture references", "luxury version", "street version", "future version", "unexpected facts" ] ); wall museum_wall = create_grid_wall( rows = 5, columns = 8, spacing = "gallery precise" ); foreach(exhibit_section section; sections) { mesh[] artifacts = AI.infer_and_load_assets(section); frame_or_mount(artifacts, museum_wall); add_gallery_label(section.name); } add_centerpiece( subject, scale = 2.5, placement = "center", lighting = "spotlight" ); camera("straight-on museum wall view"); lighting("premium gallery lighting"); background("matte off-white museum wall"); quality("ultra detailed, viral, collectible, educational, luxury exhibition");

Related Content