Compare

Recraft V4.1 Utility Pro SVG vs HappyHorse 1.0 T2V

Pricing per million tokens, context window, capabilities — pulled from each provider's public docs. All 2 are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.

Search2/4
Recraft V4.1 Utility Pro SVG
recraft/recraftv4-1-utility-pro-vector
HappyHorse 1.0 T2V
alibaba/hh1-t2v
Provider
Recraft
Alibaba
Family
Recraft
HappyHorse
Modality
image
video
Context window
Max output
Released
2026-05-22
2026-05-22
License
Proprietary
Open-weight
Per image
$0.300 /img
Per output second
$0.280 /sec
Tools
Streaming
Vision
JSON mode
Reasoning
Prompt caching
Batch API
Try it
View model →
View model →
Recraft V4.1 Utility Pro SVG
recraft/recraftv4-1-utility-pro-vector
Full spec →

Generate detailed, high-resolution SVG vector graphics from text prompts with a general-purpose model, scalable to any size for print and large-scale design work.

Strengths
  • Text-to-image generation
  • Creative control
Use cases
Marketing assetsProduct mockupsConcept art
HappyHorse 1.0 T2V
alibaba/hh1-t2v
Full spec →

Alibaba's HappyHorse 1.0 text-to-video model. Generates videos from a text prompt with configurable resolution, aspect ratio, and duration (3-15s).

Strengths
  • Text-to-video generation
Use cases
PromosDemosStoryboards

Compare with another

Claude Opus 4.8 vs Recraft V4.1 Utility Pro SVG
anthropic/claude-opus-4.8 · recraft/recraftv4-1-utility-pro-vector
Claude Opus 4.8 vs HappyHorse 1.0 T2V
anthropic/claude-opus-4.8 · alibaba/hh1-t2v
Gemini 3.1 Pro vs Recraft V4.1 Utility Pro SVG
google/gemini-3.1-pro · recraft/recraftv4-1-utility-pro-vector
Gemini 3.1 Pro vs HappyHorse 1.0 T2V
google/gemini-3.1-pro · alibaba/hh1-t2v
Claude Sonnet 4.6 vs Recraft V4.1 Utility Pro SVG
anthropic/claude-sonnet-4.6 · recraft/recraftv4-1-utility-pro-vector
Claude Sonnet 4.6 vs HappyHorse 1.0 T2V
anthropic/claude-sonnet-4.6 · alibaba/hh1-t2v
GPT-5.5 vs Recraft V4.1 Utility Pro SVG
openai/gpt-5.5 · recraft/recraftv4-1-utility-pro-vector
GPT-5.5 vs HappyHorse 1.0 T2V
openai/gpt-5.5 · alibaba/hh1-t2v
Gemini 2.5 Pro vs Recraft V4.1 Utility Pro SVG
google/gemini-2.5-pro · recraft/recraftv4-1-utility-pro-vector
SWITCH BETWEEN THEM

One key, all 2, one line different.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.aigateway.sh/v1",
    api_key="sk-aig-...",
)

# Recraft V4.1 Utility Pro SVG
client.chat.completions.create(
    model="recraft/recraftv4-1-utility-pro-vector",
    messages=[{"role":"user","content":"hello"}],
)

# HappyHorse 1.0 T2V
client.chat.completions.create(
    model="alibaba/hh1-t2v",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →