├── requirements.txt ├── .streamlit └── .gitignore ├── .devcontainer └── devcontainer.json └── app.py /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-harshavardhan-sai/AI_STORY_GEN_AI/HEAD/requirements.txt -------------------------------------------------------------------------------- /.streamlit/.gitignore: -------------------------------------------------------------------------------- 1 | # Python cache files 2 | __pycache__/ 3 | *.py[cod] 4 | *.pyo 5 | 6 | # Virtual environment folders 7 | .env/ 8 | .venv/ 9 | venv/ 10 | ENV/ 11 | env/ 12 | 13 | # Jupyter Notebook checkpoints 14 | .ipynb_checkpoints/ 15 | 16 | # System files 17 | .DS_Store 18 | Thumbs.db 19 | 20 | # VSCode settings (optional) 21 | .vscode/ 22 | 23 | # Streamlit secrets (DO NOT push this to GitHub) 24 | .streamlit/secrets.toml 25 | 26 | # Logs or temporary files (if any) 27 | *.log 28 | -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Python 3", 3 | // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile 4 | "image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye", 5 | "customizations": { 6 | "codespaces": { 7 | "openFiles": [ 8 | "README.md", 9 | "app.py" 10 | ] 11 | }, 12 | "vscode": { 13 | "settings": {}, 14 | "extensions": [ 15 | "ms-python.python", 16 | "ms-python.vscode-pylance" 17 | ] 18 | } 19 | }, 20 | "updateContentCommand": "[ -f packages.txt ] && sudo apt update && sudo apt upgrade -y && sudo xargs apt install -y