├── .env_template ├── .gitignore ├── .mdformat.toml ├── .pre-commit-config.yaml ├── .python-version ├── LICENSE ├── README.md ├── app.py ├── pyproject.toml ├── screenshot.png ├── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── profiles.json ├── script.js ├── site.webmanifest └── style.css └── uv.lock /.env_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/.env_template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdformat.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/.mdformat.toml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/app.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/screenshot.png -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/index.html -------------------------------------------------------------------------------- /static/profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/profiles.json -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/script.js -------------------------------------------------------------------------------- /static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/site.webmanifest -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/static/style.css -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAhmadOsman/4o-ghibli-at-home/HEAD/uv.lock --------------------------------------------------------------------------------