ai-comic-factory / src /app /queries /mockLLMResponse.ts
jbilcke-hf's picture
jbilcke-hf HF staff
experimenting with things
048071f
raw
history blame
No virus
710 Bytes
import { LLMResponse } from "@/types"
export const mockLLMResponse: LLMResponse = [
{
"panel": 1,
"instructions": "Close-up of cat's face, looking straight at reader with a smirk on its face",
"caption": "Feline mischief"
},
{
"panel": 2,
"instructions": "Medium shot of cat sniffing a glass of milk, with a surprised expression",
"caption": "Uh oh, what's this?"
},
{
"panel": 3,
"instructions": "Wide shot of cat knocking over the glass of milk, with a crazed look in its eyes",
"caption": "Cat-astrophe!"
},
{
"panel": 4,
"instructions": "Close-up of cat's face, looking satisfied with a milk moustache",
"caption": "Mission accomplished"
}
]