summaryrefslogtreecommitdiff
path: root/test_scene_generation.sh
blob: 03551676f571603bb91533e1161fd9f734d8078b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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!"