Common issues and solutions.
Error: ConnectionRefusedError or "Ollama unavailable"
Solution:
# Start Ollama
ollama serve
# Verify it's running
curl http://localhost:11434/api/versionError: "Model not found"
Solution:
ollama pull qwen2.5:3b-instruct-q4_K_M
ollama pull qwen2.5vl:7b-q4_K_M
ollama list # Verify they're installedError: "Port 8000 is already in use"
Solution:
# Use different port
file-organizer serve --port 8001
# Or find process using 8000
lsof -i :8000
kill -9 <PID>If you can't find a solution:
- Check documentation: Full docs
- Review logs:
docker-compose logs - GitHub Issues: Report issue
- Discussions: Ask questions
- FAQ: Frequently Asked Questions