Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Replace LLM infrastructure guesswork with data-driven planning

Optimize LLM deployment with Neural Navigator on Red Hat OpenShift AI

August 13, 2026
Yuval Luria
Related topics:
Artificial intelligenceAI inference
Related products:
Red Hat OpenShift AI

    You've finalized your model training and confirmed its accuracy. Now, you're staring at a production cluster, trying to answer a simple question: Which GPU do you need, and how many replicas?

    Most platform teams answer this based on gut feeling. You overprovision "just in case," eating into your budget, or you underprovision and watch latency spike hours after launch. You scramble to reconfigure, and the cycle repeats. "It worked on my laptop, why is it slow in production?" becomes the team's standard refrain.

    Your deployments are expensive, and your models aren't optimized.

    Production failures in LLMs usually stem from the same 3 issues:

    • Cost overruns: GPUs sit at 12% utilization because we guessed the scale wrong.
    • Latency spikes: Architecture mismatches result in unacceptable wait times for the end user.
    • The guessing game: Planning relies on subjective feelings instead of hard, benchmark-driven data.

    We developed Neural Navigator to replace the guesswork with engineering precision.

    What makes LLM deployment planning different?

    Production LLMs demand service level objectives (SLOs), not prompts alone. You need to track time to first token (TTFT), inter-token latency (ITL) for streaming quality, and end-to-end latency (E2E) for response delivery.

    Operating without these metrics is hoping for the best. Through our work on the open source llm-d-planner project, we built Neural Navigator to convert natural language requirements into optimized infrastructure configurations. We believe production deployment should be a deterministic step, not a gamble.

    Imagine transitioning from a requirement—"a high-speed chatbot for 30 users"—to a production-ready Kubernetes deployment in 30 seconds, validated against 1,200+ benchmarks.

    The 4-step deterministic workflow

    To convert natural language intent into deterministic infrastructure, Neural Navigator follows a four-step engineering workflow, illustrated in Figure 1.

    Four-step process showing intent extraction, research-backed mapping, multi-criteria ranking, and Kubernetes deployment.
    Figure 1: Neural Navigator's architectural workflow covering intent extraction, research-backed mapping, multi-criteria ranking, and production deployment.

    Step 1: Intent extraction

    We use Qwen 2.5 7B to parse natural language into technical specifications with 95.1% weighted accuracy. Qwen 2.5 7B breaks down a request for a "customer service chatbot" into use case, user count, hardware preference, and priority. This distinction is the difference between a "vibe-based" request and actual requirements.

    Step 2: Research-backed mapping

    We cross-reference parsed intent with an extensive evaluation repository. Figure 2 shows the scope of our database.

    Infographic of benchmark repository metrics across GPU types, traffic profiles, and latency percentiles including TTFT, ITL, and E2E.
    Figure 2: The Neural Navigator evaluation repository includes 1,226 benchmarks across 77 distinct models and 6 hardware tiers.

    Our benchmark coverage includes:

    • 1,226 total evaluations
    • 77 models, including Llama 3.3, Mistral Large, and DeepSeek-V3
    • 6 NVIDIA GPU types, from L4 to B200
    • Diverse traffic profiles, including Poisson chat and long-context Q&A

    Step 3: Multi-criteria ranking

    We rank options across 4 dimensions: balanced (task-weighted trade-off), best accuracy (output quality), lowest cost (economic efficiency), and lowest latency (real-time responsiveness).

    Step 4: 1-click deployment

    Neural Navigator generates the production-ready Kubernetes YAML, including KServe InferenceService definitions, autoscaling rules, and Prometheus monitoring setups.

    Engineering prompt accuracy: From 70% to 95%

    Developing the intent engine wasn't a creative exercise; it was an engineering one. We treated prompt engineering like software testing (Figure 3).

    Timeline of five prompt engineering versions showing accuracy growth from 70 percent in version 1 to 95.1 percent in version 5.
    Figure 3: Timeline of prompt engineering progression across 5 major iterations.
    • Version 1 (naive): 70% accuracy. It struggled with ambiguity.
    • Version 2 (few-shot): 78% accuracy.
    • Version 3 (specialized): 85% accuracy. It addressed edge cases like distinguishing document Q&A from chatbots.
    • Version 5 (schema-driven): 95.1% accuracy. We shifted from trying to parse "vibes" to structured keyword schemas.

    Benchmarking the truth

    We avoid generic, misleading scores. We use a mix of industry-standard benchmarks—such as MMLU-Pro, Graduate-Level Google-Proof Q&A (GPQA), and LiveCodeBench—that we weight based on your specific use case. Figure 4 shows how we prioritize benchmarks, and Figure 5 illustrates the full architecture.

    Benchmark weighting breakdowns for chatbot, coding, and legal or research domains using tau squared Bench, MMLU-Pro, and GPQA.
    Figure 4: Dynamic benchmark weighting for chatbot, coding, and research domains.
    Grid displaying ten evaluation benchmark layers including MMLU Pro, GPQA, MATH 500, LiveCodeBench, SciCode, and TerminalBench.
    Figure 5: The 10 core benchmark layers used for data-driven hardware and model mapping.

    If you're building a conversational bot, we weight τ²-Bench and MMLU-Pro heavily. If you're building for code, we prioritize LiveCodeBench. This approach helps your hardware choice match your workload.

    Running on Red Hat OpenShift AI

    While Neural Navigator operates as an open source engine, running the generated configurations on Red Hat OpenShift AI provides built-in enterprise governance, automated scaling via KServe, and Day 2 operational monitoring out of the box.

    The generated YAML is optimized for KServe on OpenShift AI.

    1. Input: Enter your natural language requirements.
    2. Review: Examine the generated KServe InferenceService YAML (storage uniform resource identifier (URI), resource limits, etc.).
    3. Execute: Deploy via the OpenShift command-line interface (CLI) (oc apply).
    4. Monitor: Check the status of your InferenceService and pods.

    The agentic ops vision

    We view Neural Navigator as an API layer for infrastructure. In an agentic future, platform engineers can offload repetitive cluster sizing to autonomous agents that request SLO-compliant configs directly.

    Imagine an autonomous agent programmatically requesting a deployment recommendation and receiving back a complete, SLO-compliant configuration. This capability allows agents to self-optimize and spawn inference endpoints independently.

    Conclusion

    Transitioning from synthetic to industry-standard benchmarks provided the credibility necessary for production. Prompt engineering is a systematic discipline, not a creative one. Define your targets as technical values, stop parsing "vibes," and start engineering.

    Ready to eliminate guesswork from your LLM deployments? Visit the llm-d-planner repository on GitHub to test Neural Navigator with your workload specs, or explore how Red Hat OpenShift AI streamlines automated inference scaling.

    Related Posts

    • AutoRAG: Optimizing RAG for small models

    • Optimize GPU efficiency with OpenShift AI and llm-d flow-control

    • Optimize OpenShift workloads with software-defined memory

    • Optimize and deploy LLMs for production with OpenShift AI

    • Optimize GPU utilization with Kueue and KEDA

    • Optimize LLMs with LLM Compressor in Red Hat OpenShift AI

    Recent Posts

    • Replace LLM infrastructure guesswork with data-driven planning

    • Build a DIY pipeline for a trusted software supply chain

    • How to check if your model is supported by vLLM in Red Hat AI

    • Extend zero trust workload identity manager to virtual machines with Red Hat OpenShift Virtualization

    • Just-in-time access to HashiCorp Vault using the Red Hat Ansible Automation Platform OIDC provider

    What’s up next?

    Learning Path intro-to-OS-LP-feature-image

    Introduction to OpenShift AI

    Learn how to use Red Hat OpenShift AI to quickly develop, train, and deploy...
    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility
    Ask AI