| # AIVisionsLab | |
| Base de conhecimento e scripts operacionais para ambiente local de IA. | |
| ## Hardware | |
| - GPU: RX 580 8GB | |
| - Backend: Vulkan 1.4.341.1 | |
| - Driver AMD: 31.0.21924.61 | |
| ## Stack | |
| | Ferramenta | Função | Status | | |
| |----------------|----------------------------------|--------| | |
| | llama.cpp | Inferência LLM (GGUF + Vulkan) | OK | | |
| | OpenWebUI | Interface web para LLMs | OK | | |
| | ComfyUI | Geração de imagens | OK | | |
| | Docker | Deploy OpenWebUI | OK | | |
| | Vulkan SDK | Backend GPU para RX 580 | OK | | |
| ## Estrutura de Pastas | |
| ``` | |
| AIVisionsLab/ | |
| ├── 07_docs/ | |
| │ └── markdown/ # Documentação técnica | |
| │ ├── VULKAN.md | |
| │ ├── OPENWEBUI.md | |
| │ ├── RX580.md | |
| │ ├── LLAMA_CPP.md | |
| │ ├── COMFYUI.md | |
| │ └── INSTALL.md | |
| ├── scripts/ # Scripts de automação | |
| │ ├── start_openwebui.bat | |
| │ ├── start_comfyui.bat | |
| │ ├── start_llama_server.bat | |
| │ └── setup_git_lfs.ps1 | |
| ├── troubleshooting/ # Soluções de problemas | |
| │ ├── vulkan_issues.md | |
| │ ├── python_conflicts.md | |
| │ └── openwebui_fix.md | |
| ├── README.md | |
| ├── .gitattributes | |
| └── .gitignore | |
| ``` | |
| ## Início Rápido | |
| 1. Iniciar llama.cpp: `scripts/start_llama_server.bat` | |
| 2. Iniciar OpenWebUI: `scripts/start_openwebui.bat` | |
| 3. Acessar: http://localhost:3000 | |
| ## Princípios | |
| - Manter o stack enxuto: sem abstracoes desnecessarias | |
| - Priorizar GGUF + Vulkan para hardware legado | |
| - Documentar toda configuracao que funcionar | |