├── .gitignore ├── .vscode └── tasks.json ├── 365-sentences.txt ├── LICENSE ├── README.md ├── Screenshot.png ├── app.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolai/Toddler-Picture-Story-Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolai/Toddler-Picture-Story-Generator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /365-sentences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolai/Toddler-Picture-Story-Generator/HEAD/365-sentences.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolai/Toddler-Picture-Story-Generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolai/Toddler-Picture-Story-Generator/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolai/Toddler-Picture-Story-Generator/HEAD/Screenshot.png -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaolai/Toddler-Picture-Story-Generator/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | openai 3 | python-dotenv 4 | edge_tts 5 | requests --------------------------------------------------------------------------------