Skip to content
Let’s Talk(678) 203-0800 Partner ProgramDocumentationDocsBlogContact
Product  /  AI Pipeline Builder

Describe the integration. Deploy the integration.

Tell the Accelerator what systems need to communicate. It drafts the pipeline — adapters selected, mappings drafted, tests generated — and your team reviews, adjusts and ships it. The draft is real code in your repository, not a black box you have to trust.

See the whole platform
Adapters

Selected, not guessed.

The draft names the receive and send adapters the described flow actually needs, from the 200+ in the catalogue.

Mappings

Drafted against your schemas.

Transformations are written to the canonical schema you point at, so the shape is right before a human opens it.

Tests

Generated with the component.

The draft arrives with tests, so the first question after “does it compile” already has an answer.

Boundary

Runs in your tenant.

The Accelerator is deployed inside your own Azure subscription. It reads only what you paste into it.

Prompt → Pipeline

The builder chooses pipeline semantics, not just words.

These are three real prompts and the three components they produce. Watch what happens at the end of each: the builder decides the output shape — whether one message becomes many, a batch fans out, or one goes in and one comes out. That decision is the difference between text completion and understanding an integration.

Prompt

Take an HL7 lab order, disassemble it into canonical JSON, then split the batch into one message per order.

PipelineComponentOutput.Split() One inbound batch becomes many independent messages, each routed and tracked on its own.
C# Hl7LabOrderSplitter.cs Drafted
public sealed class Hl7LabOrderSplitter
    : PipelineComponentBase<Hl7Config>
{
    public override string Name => "fnHl7LabOrderSplitter";
 
    // Disassemble the HL7 batch, then split per order
    protected override async Task<PipelineComponentOutput> ExecuteAsync(
        PipelineComponentInput input, Hl7Config config, CancellationToken ct)
    {
        var json   = Hl7.Disassemble(input.Body, config.CanonicalSchema);
        var orders = json.SelectTokens("$.orders[*]");
        return PipelineComponentOutput.Split(orders);
    }
}
The boundary

It never sees your transactions.

The usual objection to AI in an integration platform is the only one that matters: what leaves the building. The answer here is architectural rather than contractual.

  • The Accelerator’s infrastructure is deployed inside your own Azure tenant. It is not a service you call out to.
  • It reads only what you paste into it — a message sample, a schema, a description.
  • Live transactions, tracking data and the internet stay outside that boundary. It has no path to your message flow.
  • What comes back is source you own: a component in your repository, reviewed by your team before anything runs.
YOUR AZURE TENANT AI Accelerator drafts · never observes samples schemas source + tests OUTSIDE — live transactions · tracking · internet
Two different jobs

One drafts what’s new. One converts what you already have.

Both are part of the AI Accelerator, and teams mid-migration usually run them side by side. They answer different questions, so it is worth knowing which one you are reaching for.

AI Pipeline Builder

New integrations, from a description.

You describe the flow in plain language. It drafts the pipeline component, selects adapters, drafts the mappings and generates tests.

Reach for it when: nothing exists yet

Migration AI

Existing BizTalk artefacts, converted.

It converts the schemas, maps and pipelines already in your BizTalk estate, so they are translated rather than retyped by hand.

Reach for it when: you are moving an estate

What it costs

Nothing extra to buy.

The AI Pipeline Builder is part of the AI Accelerator, and the Accelerator is included in every edition of iQBus. There is one limit worth knowing up front.

Included
Every edition

No add-on SKU, no separate licence, no per-seat AI charge. It is part of the platform you already have.

Starter limit
100 prompts

The Starter edition includes 100 prompts. Stated plainly here so it is not a surprise three weeks into an evaluation.

Time to first draft
Under 30 min

Starter is licence-free on the Azure Marketplace — installed, provisioned and registered in no more than thirty minutes.

Describe one integration you already know.

The honest test is not whether the output compiles — it is whether the draft matches what you would have written. Pick a flow you know cold, describe it, and compare.

Install free from Azure Marketplace Read the AI Accelerator docs