Last refreshed 2026-05-22. Next refresh: weekly.
Why use Morph V3 Large on Vercel AI Gateway?
Vercel AI Gateway offers Morph V3 Large with pay-as-you-go pricing at $0.90/1M input tokens. Vercel AI Gateway is a unified AI proxy providing a single OpenAI-compatible API endpoint to 275+ models from 25+ providers including Anthropic, OpenAI, Google, Meta, Mistral, DeepSeek, xAI, Alibaba, Amazon, ByteDance, Cohere, MiniMax, MoonshotAI, KwaiPilot, Black Forest Labs, Recraft, Voyage AI, NVIDIA, and more.
Setup recipe
Python + curlpip install openaiexport AI_GATEWAY_API_KEY=...import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["AI_GATEWAY_API_KEY"],morph/morph-v3-largeRequest example
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["AI_GATEWAY_API_KEY"],
base_url="https://ai-gateway.vercel.sh/v1"
)
response = client.chat.completions.create(
model="morph/morph-v3-large",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)Gotchas
- Use provider model ID "morph/morph-v3-large", not the LLMReference slug "morph-v3-large".
- creator/model-name e.g. kwaipilot/kat-coder-pro-v2
- The examples expect AI_GATEWAY_API_KEY; rename it only if your application config maps the new variable.
Pricing
| Type | Price (per 1M) |
|---|---|
| Input tokens | $0.90 |
| Output tokens | $1.90 |
Capabilities
About Morph V3 Large
Morph V3 Large is Morph's high-accuracy code apply model, achieving ~98% accuracy for precise code transformations at ~4,500 tokens/sec and 256K context.
FAQ
What does Morph V3 Large cost on Vercel AI Gateway?
On Vercel AI Gateway, Morph V3 Large costs $0.9 per 1M input tokens and $1.9 per 1M output tokens.
What is the context window for Morph V3 Large on Vercel AI Gateway?
Morph V3 Large supports a 81,920 token context window on Vercel AI Gateway.
What API model ID do I use for Morph V3 Large on Vercel AI Gateway?
Use the model ID morph/morph-v3-large when calling Vercel AI Gateway's API.
Who created Morph V3 Large?
Morph V3 Large was created by Morph as part of the Morph model family.
Is Morph V3 Large open source?
Morph V3 Large is not open source; the seed data lists it as proprietary.