├── .gitignore ├── .gitmodules ├── .python-version ├── LICENSE ├── README.md ├── app.py ├── assets ├── logo.png ├── long_logo.png └── ui.png ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/.gitmodules -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/app.py -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/assets/logo.png -------------------------------------------------------------------------------- /assets/long_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/assets/long_logo.png -------------------------------------------------------------------------------- /assets/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/assets/ui.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SakanaAI/TinySwallow-ChatUI-Local/HEAD/uv.lock --------------------------------------------------------------------------------