You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hub/public-endpoint-reference.mdx
+109-1Lines changed: 109 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ The following models are currently available:
13
13
14
14
| Model | Description | Endpoint URL | Type | Price |
15
15
|-------|-------------|----------|------|-------|
16
+
|**IBM Granite-4.0-H-Small**| A 32B parameter long-context instruct model. |`https://api.runpod.ai/v2/granite-4-0-h-small/`| Text |\$0.01 per 1000 tokens |
16
17
|**Qwen3 32B AWQ**| The latest LLM in the Qwen series, offering advancements in reasoning, instruction-following, agent capabilities, and multilingual support. |`https://api.runpod.ai/v2/qwen3-32b-awq/`| Text |\$0.01 per 1000 tokens |
17
18
|**Flux Dev**| Offers exceptional prompt adherence, high visual fidelity, and rich image detail. |`https://api.runpod.ai/v2/black-forest-labs-flux-1-dev/`| Image |\$.02 per megapixel |
18
19
|**Flux Schnell**| Fastest and most lightweight FLUX model, ideal for local development, prototyping, and personal use. |`https://api.runpod.ai/v2/black-forest-labs-flux-1-schnell/`| Image |\$.0024 per megapixel |
@@ -24,7 +25,11 @@ The following models are currently available:
24
25
| **Seedream 4.0 Edit** | New-generation image editing with unified generation and editing architecture. | `https://api.runpod.ai/v2/seedream-v4-edit/` | Image | \$0.027 per megapixel
|**InfiniteTalk**| Audio-driven video generation model that creates talking or singing videos from a single image and audio input. |`https://api.runpod.ai/v2/infinitetalk/`| Video |\$0.25 per video generation |
29
+
|**Kling v2.1 I2V Pro**| Professional-grade image-to-video with enhanced visual fidelity. |`https://api.runpod.ai/v2/kling-v2-1-i2v-pro/`| Video |\$0.36 per 5 seconds of video |
27
30
|**Seedance 1.0 Pro**| High-performance video generation with multi-shot storytelling. |`https://api.runpod.ai/v2/seedance-1-0-pro/`| Video |\$0.62 per 5 seconds of video |
31
+
|**SORA 2 I2V**| OpenAI's Sora 2 is a video and audio generation model. |`https://api.runpod.ai/v2/sora-2-i2v/`| Video |\$0.40 per video generation |
32
+
|**SORA 2 Pro I2V**| OpenAI's Sora 2 Pro is a professional-grade video and audio generation model. |`https://api.runpod.ai/v2/sora-2-pro-i2v/`| Video |\$1.20 per video generation |
28
33
| **WAN 2.5** | Image-to-video generation model. | `https://api.runpod.ai/v2/wan-2-5/` | Video | \$0.50 per 5 seconds of video
29
34
| **WAN 2.2 I2V 720p LoRA** | Open-source video generation with LoRA support. | `https://api.runpod.ai/v2/wan-2-2-t2v-720-lora/` | Video | \$0.35 per 5 seconds of video
30
35
| **WAN 2.2 I2V 720p** | Open-source AI video generation model that uses a diffusion transformer architecture for image-to-video generation. | `https://api.runpod.ai/v2/wan-2-2-i2v-720/` | Video | \$0.30 per 5 seconds of video
@@ -101,6 +106,43 @@ Flux Schnell is optimized for speed and real-time applications:
101
106
Flux Schnell is optimized for speed and works best with lower step counts. Using higher values may not improve quality significantly.
102
107
</Warning>
103
108
109
+
### IBM Granite-4.0-H-Small
110
+
111
+
IBM Granite-4.0-H-Small is a 32B parameter long-context instruct model.
112
+
113
+
```json
114
+
{
115
+
"input": {
116
+
"messages": [
117
+
{
118
+
"role": "system",
119
+
"content": "You are a helpful assistant. Please ensure responses are professional, accurate, and safe."
120
+
},
121
+
{
122
+
"role": "user",
123
+
"content": "What is Runpod?"
124
+
}
125
+
],
126
+
"sampling_params": {
127
+
"max_tokens": 512,
128
+
"temperature": 0.7,
129
+
"seed": -1,
130
+
"top_k": -1,
131
+
"top_p": 1
132
+
}
133
+
}
134
+
}
135
+
```
136
+
137
+
| Parameter | Type | Required | Default | Range | Description |
Kling 2.1 Pro generates videos from static images with additional control parameters.
@@ -445,6 +511,48 @@ Seedance 1.0 Pro is a high-performance video generation model with multi-shot st
445
511
|`size`| string | No | "1920x1080" | Video dimensions. |
446
512
|`image`| string | No | "" | Optional source image URL for image-to-video generation. |
447
513
514
+
### SORA 2 I2V
515
+
516
+
OpenAI's Sora 2 is a video and audio generation model.
517
+
518
+
```json
519
+
{
520
+
"input": {
521
+
"prompt": "Action: The mechs headlamps flicker a few times. It then slowly and laboriously pushes itself up with a damaged mechanical arm, sparks flying from gaps in its armor. Ambient Sound: Distant, continuous explosions (low rumbles); the sizzle and crackle of short-circuiting electricity from within the mech; heavy, grinding metallic sounds as the mech rises; faint, garbled static from a damaged comms unit.Character Dialogue: (Processed mechanical voice, weary but firm) `No retreat.`",
|`prompt`| string | Yes | - | Text description of the desired video, including action, ambient sound, and character dialogue. |
531
+
|`image`| string | Yes | - | URL of the source image to animate. |
532
+
|`duration`| integer | Yes | 4 | Video duration in seconds. Valid options: 4, 8, or 12. |
533
+
534
+
### SORA 2 Pro I2V
535
+
536
+
OpenAI's Sora 2 Pro is a professional-grade video and audio generation model.
537
+
538
+
```json
539
+
{
540
+
"input": {
541
+
"prompt": "Action: She opened her hands\n\nAmbient Sound: The soft crackling of the dying fire in the oven; a high-pitched, happy little ding sound from the timer; the warm, persistent sizzle of butter melting on a nearby stovetop.\n\nCharacter Dialogue: (Voice is high-pitched, bubbly, and enthusiastic) \"Welcome to my bakery!\"\n\n\n",
0 commit comments