diff options
| author | Paul Buetow <paul@buetow.org> | 2025-07-17 13:49:23 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-07-17 13:49:23 +0300 |
| commit | 6d73daa3abf06b34bb80868571d6d6be464f1c62 (patch) | |
| tree | b01007d9273359ac62301364e49416d976e28e8b /test_scene_generation.sh | |
| parent | b2b007699b2a42ed86970f59d597034679265e91 (diff) | |
feat: add contextual scene generation for flashcard imagesv0.2.0
- Generate meaningful scenes for each Bulgarian word using OpenAI
- Scene descriptions use English words for DALL-E compatibility
- Creates more engaging and memorable flashcards with context
- Bump version to v0.2.0
π€ Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'test_scene_generation.sh')
| -rwxr-xr-x | test_scene_generation.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/test_scene_generation.sh b/test_scene_generation.sh new file mode 100755 index 0000000..0355167 --- /dev/null +++ b/test_scene_generation.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +# Test scene generation with Bulgarian words +echo "Testing scene generation for Bulgarian flashcards..." + +# Test words +words=("ΡΠ±ΡΠ»ΠΊΠ°" "ΠΊΠΎΡΠΊΠ°" "ΠΊΡΡΠ΅" "Ρ
Π»ΡΠ±" "Π²ΠΎΠ΄Π°" "ΠΊΠ½ΠΈΠ³Π°") + +for word in "${words[@]}"; do + echo "" + echo "====================" + echo "Testing word: $word" + echo "====================" + go run ./cmd/totalrecall "$word" --provider openai + echo "" + echo "Press Enter to continue to next word..." + read +done + +echo "Scene generation test complete!"
\ No newline at end of file |
