Models are saved in gguf in the models subfolder. Configuration and parameters are in models.ini.
Current list of files. Made with:
echo -e "# models directory structure\n\n\`\`\`text\n$(tree -h --du --dirsfirst -F models)\n\`\`\`" > modelsDirTree.mdFolders added with:
find models -type d ! -path '*/\.*' -print0 | xargs -0 -I {} sh -c 'echo "*.gguf" > "{}/.gitignore"'ROCm, Vulkan and CPU docker containers configured in compose.yaml.
Run with:
docker compose up -dLogs with:
docker logs llamacpp-r
#or
docker logs llamacpp-v
#or
docker logs llamacpp-cBuilt-in WebUI and all APIs are under http://localhost:8083/ for Vulkan, http://localhost:8080/ for ROCm or http://localhost:8082/ for CPU.