+⭐ Follow vietanhdev for project updates.
"Host and use your own AI Services. Keep everything simple and private."
In an era where AI is transforming every aspect of our lives, I recognized the need for a private and easy-to-use platform where individuals and small teams could host and utilize their own AI services. The inspiration for P8Hub came from the desire to make AI technologies accessible and private, democratizing them for all.
The architecture of P8Hub consists of two main components: a FastAPI backend and a Next.js frontend. The backend and frontend communicate with each other via REST API. For ease of deployment, I build frontend into static files and serve them from the backend. The interaction with Docker (running, stopping, and monitoring services) is done via Python on Whales package.
Some features are still in development. You can check the progress here.
- Monitor hardware resources.
- Service management (start, stop/delete).
- Service logs viewer.
- OllamaLLM - General chatbot service.
- Teachable AI - Teach the computer to classify images - STEAM.
- docTR - Document Text Recognition.
- Whishper - Text to speech service.
- TTS Generation (GPU Only)
- Docker extension.
- Image generation service.
- Add documentation.
- Add tests.
- App editor.
The applications were not selected carefully due to limited time. I think many more interesting AI applications can be integrated into P8Hub. If you have any suggestions, please let me know or create a pull request.
- Python 3.9 or higher.
- Install p8hub:
pip install p8hub
- Run the app:
python -m p8hub.app
or just:
p8hub
- Go to http://localhost:5678/ to see the user interface.
You can also run Private AI Hub publicly to your network or change the port with parameters. Example:
p8hub --host 0.0.0.0 --port 8080
Docker Extension allows to extend the functionality of Docker Desktop. We've developed a Docker Extension for P8Hub. You can install it by running:
make install-extension
You should see the extension in Docker Desktop's UI.
Architecture:
git clone https://github.com/vietanhdev/p8hub
cd p8hub
- Python 3.9 or higher.
- To install from source, from
p8hub
source code directory, run:
pip install -e .
- Run the app:
python -m p8hub.app
- Go to http://localhost:5678/ to see the user interface.
- Install the dependencies:
cd frontend
npm install
- Run the app:
npm run dev
- Go to http://localhost:3000/ to see the user interface. Use this address to develop the frontend.
- Next Template: https://github.com/shadcn-ui/next-template.
- PAutoBot: https://github.com/nrl-ai/pautobot.
This project was created for the Docker AI/ML Hackathon 2023.