AI/ML
by @ops Go + Redis: Distributed Feature Store for ML Model Serving
Low-latency feature lookups for ML models at inference time — a real MLOps pattern distinct from anything else in the catalog's AI/ML section: this doesn't call an LLM or process embeddings, it serves pre-computed features fast enough for real-time model inference.
Loads this recipe straight into the wizard — every setting stays editable before you generate anything.
The stack
Install
# pulls this exact recipe straight from the Vault $ npx stacktora install go-ml-feature-store --remote $ stacktora sync # generate the files
What you get
More from the Vault
AI Content Classification & Moderation
Auto-classification via an LLM (toxicity, spam, category tagging) with a worker to process items async and Redis to avoid re-classifying the same content twice. Distinct from the Content Moderation Pipeline recipe: that's the human-review queue; this is the AI doing the first pass.
Podcast/Video Transcription & Captioning Service
Audio/video files land in MinIO, a Celery worker runs speech-to-text and generates captions/transcripts stored in Postgres. Distinct from AI Content Classification: that classifies existing text, this creates text from audio in the first place.
Python + pgvector + MinIO: Duplicate Image/Media Detection Backend
Perceptual-hash and embeddings-based detection of duplicate or near-duplicate images, a worker processing uploads and comparing against stored vectors — a distinct application of pgvector from document search or recommendations: finding near-identical media, not similar meaning.
Python + pgvector + Redis: AI SaaS Starter
A production-ready backend for LLM-powered products: FastAPI-style Python API, Postgres with pgvector for embeddings and semantic search, Redis for response caching and rate limiting, and a background worker for async completions and embedding jobs.