Imaginary Cinema: The Rock, but with Chiguiros
[imaginary-cinema
art
chiguiro
llm
gpt4
dall-e-3
]
Premise: Remake The Rock, but with all the characters played by chiguiros…
That’s all. Think about it.
ServiceExecute["OpenAI", "ImageCreate",
{"Prompt" -> "A scene from the movie \"The Rock\" but with a capybara as the character. Depict Alcatraz in the background",
"Model" -> "dall-e-3"}]

description = LLMSynthesize[
"Describe some of the most visually compelling scenes in the movie \"The Rock\" with Sean Connery and Nicholas Cage. Describe the visual aspects and what the characters look like, without their names. Make each description a separate string in a JSON list",
LLMEvaluator -> <|"Model" -> "gpt-4"|>];
descriptionText = First /@ Values @ ImportString[#, "RawJSON"]& @ Transliterate[description];
withChiguiros[description_String] := With[
{prompt = "Depict all of the characters as capybaras having the physical descriptions in the text. Create these in a photorealistic cinematic style, as if in a movie. The scene is: " <> description},
ServiceExecute["OpenAI", "ImageCreate",
{"Prompt" -> prompt, "Model" -> "dall-e-3"}]]
result = AssociationMap[ withChiguiros, descriptionText]

ToJekyll["Imaginary Cinema: The Rock, but with Chiguiros", "imaginary-cinema art chiguiro"]