VIT Network AI/ML models — 13-model ensemble powering the Intelligence Oracle
This service provides the AI/ML intelligence layer for the VIT Network. It is built using FastAPI and containerized with Docker.
The repository has been productionized following the VIT-AI Production Readiness task (TRACK-015B).
- FastAPI Framework: High-performance Python API.
- Production Infrastructure: Multi-stage Docker build, non-root user execution.
- Health Monitoring: Standard
/health,/ping, and/versionendpoints. - Render Compatible: Includes
render.yamlfor easy deployment.
- Install dependencies:
pip install -r requirements.txt
- Run the application:
uvicorn app.main:app --reload
Build and run with Docker:
docker build -t vit-ai .
docker run -p 8000:8000 vit-ai