├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── commands_config.json ├── config.json ├── docker-compose.yml ├── docker-required-volumes.zip ├── mesh-ai.py ├── motd.json ├── requirements.txt └── startup script examples ├── Load LM-Studio Model & Run MESH-AI-windows.bat ├── Run MESH-AI-windows.bat └── Run MESH-AI-windows.ps1 /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/README.md -------------------------------------------------------------------------------- /commands_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/commands_config.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/config.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-required-volumes.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/docker-required-volumes.zip -------------------------------------------------------------------------------- /mesh-ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/mesh-ai.py -------------------------------------------------------------------------------- /motd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/motd.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/requirements.txt -------------------------------------------------------------------------------- /startup script examples/Load LM-Studio Model & Run MESH-AI-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/startup script examples/Load LM-Studio Model & Run MESH-AI-windows.bat -------------------------------------------------------------------------------- /startup script examples/Run MESH-AI-windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/startup script examples/Run MESH-AI-windows.bat -------------------------------------------------------------------------------- /startup script examples/Run MESH-AI-windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-tbot/mesh-ai/HEAD/startup script examples/Run MESH-AI-windows.ps1 --------------------------------------------------------------------------------