Vercel AI Gateway and AWS Kiro Crew Push Composable Multi-Model Agent Stacks

At a glance

  • GLM-5.3 Flash and Qwen 3.8 Max launched on Vercel AI Gateway with immediate availability for developers.
  • Gemini 3.7 Flash ships with notable coding speed improvements and discounted pricing on the same gateway.
  • AWS open-sources Kiro Crew, a new framework for asynchronous multi-agent coding sessions.
  • Claude Managed Agents gain full integration with the Chat SDK, enabling production agent workflows.

Today’s releases underscore a clear shift toward gateway-mediated access and agent orchestration. Builders now have fresh options for routing inference through unified endpoints while agent frameworks mature toward reliable, multi-step execution. These updates arrive amid broader ecosystem movement on model availability and security hardening. The result is faster iteration cycles for teams shipping coding assistants, retrieval systems, and autonomous workflows.

Top Stories

GLM-5.3 Flash and Qwen 3.8 Max reach Vercel AI Gateway Practical dev impact: Developers can immediately route requests to these models through a single endpoint with consistent latency and billing.

Gemini 3.7 Flash delivers coding performance gains at 50% discount Practical dev impact: Teams gain faster code completion and generation in IDEs or agents while cutting inference costs through year-end.

AWS open-sources Kiro Crew for multi-agent coding Practical dev impact: Engineers can now run and extend asynchronous agent sessions locally or in the cloud using an Apache-licensed codebase.

Claude Managed Agents integrate with Chat SDK Practical dev impact: Production apps can orchestrate long-running agents directly from the official SDK without custom orchestration layers.

Practical Impact Analysis

These launches lower the barrier to experimenting with multiple frontier and open models inside the same application stack. Gateway support for GLM-5.3 Flash and Qwen variants means developers no longer need separate client libraries or rate-limit handling for each provider. Gemini 3.7 Flash’s coding focus and pricing directly benefit IDE plugins and agent loops that previously hit cost ceilings on longer traces.

AWS’s decision to open-source Kiro Crew accelerates adoption of structured multi-agent patterns beyond single-vendor ecosystems. Combined with Claude’s SDK-level agent support, teams can now prototype reliable, tool-using agents that survive real-world token budgets and context resets. The net effect is a more composable developer experience: choose the model per task, orchestrate via standardized interfaces, and scale without rewriting client code.

Tutorial

Route a coding task through Vercel AI Gateway using the OpenAI-compatible client

Install the Vercel AI SDK (or use the standard OpenAI client pointed at the gateway endpoint). The following snippet demonstrates a simple code-generation call that automatically benefits from the new GLM-5.3 Flash and Gemini 3.7 Flash routes.

python Tutorial
import os
from openai import OpenAI

client = OpenAI(
    base_url="https://ai-gateway.vercel.sh/v1",
    api_key=os.environ["AI_GATEWAY_API_KEY"],
)

response = client.chat.completions.create(
    model="zai/glm-5.3-flash",  # or google/gemini-3.7-flash / alibaba/qwen3.8-max
    messages=[
        {"role": "system", "content": "You are an expert Python developer."},
        {
            "role": "user",
            "content": "Write a FastAPI endpoint that accepts a list of integers and returns their sorted unique values.",
        },
    ],
    temperature=0.2,
    max_tokens=400,
    extra_body={
        "providerOptions": {
            "gateway": {
                "order": ["zai", "baseten"],
            }
        }
    },
)
print(response.choices[0].message.content)
▸ Show full code (28 lines)
import os
from openai import OpenAI

client = OpenAI(
    base_url="https://ai-gateway.vercel.sh/v1",
    api_key=os.environ["AI_GATEWAY_API_KEY"],
)

response = client.chat.completions.create(
    model="zai/glm-5.3-flash",  # or google/gemini-3.7-flash / alibaba/qwen3.8-max
    messages=[
        {"role": "system", "content": "You are an expert Python developer."},
        {
            "role": "user",
            "content": "Write a FastAPI endpoint that accepts a list of integers and returns their sorted unique values.",
        },
    ],
    temperature=0.2,
    max_tokens=400,
    extra_body={
        "providerOptions": {
            "gateway": {
                "order": ["zai", "baseten"],
            }
        }
    },
)
print(response.choices[0].message.content)

Swap `model` to `google/gemini-3.7-flash` or `alibaba/qwen3.8-max`, or keep `zai/glm-5.3-flash` and let `providerOptions.gateway.order` fail over across providers without changing the rest of the agent.

Grok Deep Dive

With fresh gateway access to GLM-5.3 Flash, Gemini 3.7 Flash coding gains, AWS Kiro Crew open source, and Claude SDK agent integration all landing in the last 48 hours, how should professional developers re-architect their current agent or IDE tooling stacks to take advantage of multi-model routing and asynchronous multi-agent frameworks without introducing new vendor lock-in?

Grok Deep Dive

Explore each Top Story in Grok — links open in a new tab. On phones, the same link may open the Grok app if you have it installed (via your device's normal link handling).

Article: Vercel AI Gateway and AWS Kiro Crew Push Composable Multi-Model Agent Stacks

Privacy: links open grok.com in your session only. AIDevPulse does not run your prompts through our API.

Leave a Comment