Spaces:
Running
Running
File size: 710 Bytes
2254a72 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
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"
}
] |