Ask HN: What are you go to LLM models for the following
1. Coding 2. TTS (Text to Speech) and STT (Speech To Text) 3. Image creation and understandingFor me I've been using:1. qwen3-coder-next 2. Fish Audio S2 Pro (TTS) and Whisper for STT 3. Gemma for image analysis and Flux for creation.I run these on my 16-inch MacBook Pro (Apple M5 Max chip...
The Rise of the Local AI Stack
A recent Hacker News thread has surfaced a revealing snapshot of how advanced AI practitioners are assembling their own multi-model workflows. The user in question describes a personal setup running on a 16-inch MacBook Pro with an M5 Max chip, using distinct models for different tasks: qwen3-coder-next for coding, Fish Audio S2 Pro for text-to-speech, Whisper for speech-to-text, Gemma for image analysis, and Flux for image generation. This is not a corporate deployment or a cloud API call—it is a fully local, heterogeneous AI stack running on consumer hardware.
What This Signals
The most significant takeaway is not the specific model selection, but the composition itself. The user is treating AI not as a single monolithic service (like ChatGPT or Gemini) but as a modular toolkit. Each component is chosen for its specific strengths: a coding model optimized for code generation, a lightweight TTS model for latency-sensitive audio, a dedicated image analysis model separate from the generation model. This mirrors the software engineering principle of separation of concerns, applied to AI inference.
The hardware context is equally important. Running an M5 Max MacBook Pro—a high-end but still consumer-grade laptop—the user is demonstrating that a multi-model local inference pipeline is now feasible without a server farm. The M5 Max’s unified memory architecture and neural engine are clearly sufficient to load and run several models simultaneously, albeit likely with careful resource management. This is a practical validation of Apple’s silicon strategy for AI workloads.
Why It Matters for AI Practitioners
For developers and AI practitioners, this trend has several concrete implications:
- Latency and Privacy Control: Local inference eliminates round-trip API calls, reducing latency to milliseconds. It also ensures data never leaves the device, a critical factor for sensitive codebases or personal data.
- Cost Efficiency: Running models locally avoids per-token API costs. For heavy users—especially those doing iterative coding or real-time speech processing—this can represent substantial savings over time.
- Model Specialization Over Generalization: The thread underscores a shift away from “one model to rule them all.” Practitioners are increasingly selecting specialized models that excel at narrow tasks, then orchestrating them. This requires more integration work but yields better performance per task.
- Hardware Constraints as a Design Factor: The user’s choice of models is likely influenced by memory and compute limits. qwen3-coder-next, for example, is a relatively compact coding model. This forces practitioners to be deliberate about model size and quantization, rather than defaulting to the largest available model.
Implications for the Industry
This pattern—local, multi-model, task-specific stacks—challenges the dominant cloud-centric AI narrative. It suggests that the future of AI deployment may be more heterogeneous than currently assumed. Cloud APIs will remain essential for heavy lifting, but for routine, latency-sensitive, or privacy-critical tasks, local inference on high-end laptops is becoming a viable alternative.
Model providers should take note: there is a growing market for smaller, efficient, and specialized models that can run on consumer hardware. The success of models like Whisper, Gemma, and Flux in this context is not accidental—they offer a favorable trade-off between capability and resource footprint.
Key Takeaways
- Local multi-model stacks are now practical on consumer hardware, enabling low-latency, private, and cost-effective AI workflows.
- Specialized models are outperforming generalists for specific tasks like coding, speech, and image analysis, driving a modular approach to AI.
- Hardware constraints are a design parameter, not a limitation—practitioners are actively choosing smaller, efficient models to fit within memory and compute budgets.
- The cloud-centric AI paradigm is being challenged by a growing ecosystem of local, task-specific models that offer viable alternatives for many use cases.