File size: 178 Bytes
d87e8d0 |
1 2 3 4 5 6 7 8 |
# test_story.py
from app.storytelling import generate_story
caption = "a group of people standing in a pool"
story = generate_story(caption)
print("Generated Story:\n", story)
|