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

How to prevent AI inference stack silent failures

May 22, 2026
Bill Murdock Robin Narsingh Ranabh
Related topics:
AI inferenceArtificial intelligenceVirtualization
Related products:
Red Hat OpenShift AI

    If you are running agentic workloads in production, you want an API layer between your application and the inference engine for swapping providers without rewriting code, managing multi-turn conversation state, and observability. Every request passes through it as follows:

    Client -> API layer -> inference server -> API layer -> client

    You would expect this layer to pass everything through faithfully. But it can pass tool schemas incorrectly, handle fields differently across versions, or drop state that carries conversation context. When that happens, the final prompt the model sees differs from the format on which it was trained. In multi-turn tool calling, the client takes the response, updates conversation history, and sends it back through the API layer for the next turn. If information is silently lost, there are no failing tests, just quiet accuracy loss. This is one reason performance reports for the same agentic model vary so widely across different deployments.

    The only way to catch this is to run an end-to-end benchmark like Berkeley Function-Calling Leaderboard, BFCL across your full stack and compare the numbers against direct calls to the inference provider.

    Our stack: OGX and vLLM

    OGX is an open source API server that provides a single OpenAI-compatible interface across multiple inference providers, including vLLM, Ollama, and Bedrock. Red Hat OpenShift AI ships both together.

    We ran BFCL for gpt-oss, OpenAI's open-weight model family, on this stack across OpenShift AI 3.3 and 3.4. The surprise was not that 3.4 scored better, but where the gain came from. Upgrading OGX without vLLM actually made things worse, a regression that would have been invisible without the benchmark.

    The gpt-oss-120b on OpenShift AI 3.4 scored 51.4% on BFCL multi-turn, up from 44.8% on 3.3: a 6.6 percentage point gain in tool-calling accuracy across multi-step conversations.

    OpenShift AI tests OGX and vLLM together before shipping, so a version bump in one does not silently break the other. That means your team can focus on building applications instead of debugging invisible regressions between infrastructure components. When the next round of model and infrastructure improvements ships, you get those gains without requalifying each piece. If you run your own stack with different layers in between, the same lesson applies: test end-to-end.

    The source of the gain

    Among many changes in OpenShift AI 3.4, the two driving accuracy gains in these experiments are vLLM (v0.13.0 to v0.18.0) and OGX (v0.4.2 to v0.7.1). The BFCL tests run through OGX's responses API, with the BFCL harness managing the multi-turn tool-calling loop client-side.

    We tested every combination of old and new as shown in the following table:

    Configuration

    Overall Accuracy

    OpenShift AI 3.3 OGX + RHOAI 3.3 vLLM

    44.8%

    OpenShift AI 3.3 OGX + RHOAI 3.4 vLLM

    46.0%

    OpenShift AI 3.4 OGX + RHOAI 3.3 vLLM

    43.6%

    OpenShift AI 3.4 OGX + RHOAI 3.4 vLLM

    51.4%

    Upgrading vLLM alone gave a small bump. Upgrading OGX alone actually regressed. Both together jumped to 51.4%. The pieces have to move together.

    Full results, including gpt-oss-20b and vLLM-direct baselines, are in the benchmark report.

    Reproduce the results

    The benchmark report has step-by-step instructions to replicate the results, including OGX and vLLM versions, BFCL test setup, and evaluation commands. The gpt-oss-120b uses MXFP4 quantization and fits on a single 80GB GPU, but for production serving we recommend a multi-GPU setup such as 4x NVIDIA H100 with NVLink. We ran our tests on an AWS g6e.12xlarge (4x NVIDIA L40S). Review the vLLM gpt-oss recipe for detailed hardware guidance.

    To get started with OpenShift AI 3.4, see the Red Hat OpenShift AI documentation. The BFCL benchmark is open source if you want to run it against your own stack.

    Related Posts

    • Combining KServe and llm-d for optimized generative AI inference

    • Integrate Claude Code with Red Hat AI Inference Server on OpenShift

    • Why vLLM is the best choice for AI inference today

    • Getting started with llm-d for distributed AI inference

    • Protecting virtual machines from storage and secondary network node failures

    Recent Posts

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    • Preventing GPU waste: A guide to JIT checkpointing with Kubeflow Trainer on OpenShift AI

    • How to manage TLS certificates used by OpenShift GitOps operator

    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

    Chat Support

    Please log in with your Red Hat account to access chat support.