summaryrefslogtreecommitdiff
path: root/test_scene_generation.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test_scene_generation.sh')
-rwxr-xr-xtest_scene_generation.sh20
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