|
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" |
|
} |
|
] |