MODEL IDcreatify:aurora@fast
live

Aurora v1 Fast

Aurora v1 Fast is an optimized variant of Aurora v1 designed for faster avatar video generation. It converts a single image and audio input into a talking-head video with synchronized lip movement and facial motion, prioritizing speed and responsiveness for rapid iteration workflows.

Aurora v1 Fast
audio-driven

Mycelium Collar Fashion Showcase Reel

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'creatify:aurora@fast',
  positivePrompt: 'Animate the source portrait as a polished experimental-fashion product showcase. The designer speaks directly to camera with precise synchronized lip movement, natural blinking, a confident warm expression, and subtle eyebrow emphasis. Add restrained head tilts and gentle shoulder movement that feel consistent with her spoken explanation. Keep the camera locked and preserve the exact facial identity, garment construction, layered mycelium texture, cobalt joinery, lighting, and acid-chartreuse background from the source image. The sculptural collar remains stable and clearly visible throughout, with only slight physically natural movement as the wearer shifts. Premium editorial pacing, composed and credible presentation, realistic facial motion, no added people, props, lettering, logos, scene changes, or exaggerated gestures.',
  CFGScale: 1,
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/16975837-2031-4ae3-a282-9d99f11d82e6.jpg',
    audio: 'https://assets.runware.ai/assets/inputs/df39456b-3f66-41d2-9e47-7c10d2b8ad17.mp3'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "creatify:aurora@fast",
            "positivePrompt": "Animate the source portrait as a polished experimental-fashion product showcase. The designer speaks directly to camera with precise synchronized lip movement, natural blinking, a confident warm expression, and subtle eyebrow emphasis. Add restrained head tilts and gentle shoulder movement that feel consistent with her spoken explanation. Keep the camera locked and preserve the exact facial identity, garment construction, layered mycelium texture, cobalt joinery, lighting, and acid-chartreuse background from the source image. The sculptural collar remains stable and clearly visible throughout, with only slight physically natural movement as the wearer shifts. Premium editorial pacing, composed and credible presentation, realistic facial motion, no added people, props, lettering, logos, scene changes, or exaggerated gestures.",
            "CFGScale": 1,
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/16975837-2031-4ae3-a282-9d99f11d82e6.jpg",
                "audio": "https://assets.runware.ai/assets/inputs/df39456b-3f66-41d2-9e47-7c10d2b8ad17.mp3"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "f68a7bd5-27d5-44c9-9cef-20b8db1e94a0",
      "model": "creatify:aurora@fast",
      "positivePrompt": "Animate the source portrait as a polished experimental-fashion product showcase. The designer speaks directly to camera with precise synchronized lip movement, natural blinking, a confident warm expression, and subtle eyebrow emphasis. Add restrained head tilts and gentle shoulder movement that feel consistent with her spoken explanation. Keep the camera locked and preserve the exact facial identity, garment construction, layered mycelium texture, cobalt joinery, lighting, and acid-chartreuse background from the source image. The sculptural collar remains stable and clearly visible throughout, with only slight physically natural movement as the wearer shifts. Premium editorial pacing, composed and credible presentation, realistic facial motion, no added people, props, lettering, logos, scene changes, or exaggerated gestures.",
      "CFGScale": 1,
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/16975837-2031-4ae3-a282-9d99f11d82e6.jpg",
        "audio": "https://assets.runware.ai/assets/inputs/df39456b-3f66-41d2-9e47-7c10d2b8ad17.mp3"
      }
    }
  ]'
runware run creatify:aurora@fast \
  positivePrompt="Animate the source portrait as a polished experimental-fashion product showcase. The designer speaks directly to camera with precise synchronized lip movement, natural blinking, a confident warm expression, and subtle eyebrow emphasis. Add restrained head tilts and gentle shoulder movement that feel consistent with her spoken explanation. Keep the camera locked and preserve the exact facial identity, garment construction, layered mycelium texture, cobalt joinery, lighting, and acid-chartreuse background from the source image. The sculptural collar remains stable and clearly visible throughout, with only slight physically natural movement as the wearer shifts. Premium editorial pacing, composed and credible presentation, realistic facial motion, no added people, props, lettering, logos, scene changes, or exaggerated gestures." \
  CFGScale=1 \
  inputs.image=https://assets.runware.ai/assets/inputs/16975837-2031-4ae3-a282-9d99f11d82e6.jpg \
  inputs.audio=https://assets.runware.ai/assets/inputs/df39456b-3f66-41d2-9e47-7c10d2b8ad17.mp3
{
  "taskType": "videoInference",
  "taskUUID": "f68a7bd5-27d5-44c9-9cef-20b8db1e94a0",
  "model": "creatify:aurora@fast",
  "positivePrompt": "Animate the source portrait as a polished experimental-fashion product showcase. The designer speaks directly to camera with precise synchronized lip movement, natural blinking, a confident warm expression, and subtle eyebrow emphasis. Add restrained head tilts and gentle shoulder movement that feel consistent with her spoken explanation. Keep the camera locked and preserve the exact facial identity, garment construction, layered mycelium texture, cobalt joinery, lighting, and acid-chartreuse background from the source image. The sculptural collar remains stable and clearly visible throughout, with only slight physically natural movement as the wearer shifts. Premium editorial pacing, composed and credible presentation, realistic facial motion, no added people, props, lettering, logos, scene changes, or exaggerated gestures.",
  "CFGScale": 1,
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/16975837-2031-4ae3-a282-9d99f11d82e6.jpg",
    "audio": "https://assets.runware.ai/assets/inputs/df39456b-3f66-41d2-9e47-7c10d2b8ad17.mp3"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "f68a7bd5-27d5-44c9-9cef-20b8db1e94a0",
  "videoUUID": "0cf528f8-d8c8-4036-8d85-fbf3c387a79a",
  "videoURL": "https://vm.runware.ai/video/os/a07dlim3/ws/5/vi/0cf528f8-d8c8-4036-8d85-fbf3c387a79a.mp4",
  "cost": 0.63
}
audio-driven

Orchid Smuggling Docuseries Teaser

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'creatify:aurora@fast',
  positivePrompt: 'Animate this portrait as a polished cinematic teaser performance for a prestige investigative docuseries. Preserve the subject\'s identity, wardrobe, laboratory setting, black orchid, ultraviolet cobalt lighting, and carmine accents. Synchronize her lips precisely to the supplied speech. She begins completely still with guarded eye contact, then makes a small measured inhale before speaking. Use restrained, intelligent facial acting: subtle tension around the eyes, one natural blink, a slight brow movement on “disappear,” and a nearly imperceptible forward lean as the allegation sharpens. On “white gloves,” let her briefly glance toward her gloved hand before returning directly to camera. Deliver “perfectly legal hammer” with quiet certainty, a faint tightening of the jaw, and a controlled final pause. Include realistic breathing, tiny head adjustments, and minimal shoulder motion. Keep the tone ominous, sophisticated, and journalistic rather than theatrical. Stable composition with a gentle cinematic push-in; no exaggerated gestures, no smiling, no visual distortions, no additional people, and no on-screen interface.',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/0d8ec02a-91ee-49ba-b372-3dd86e78c88e.jpg',
    audio: 'https://assets.runware.ai/assets/inputs/d44d2131-9c70-4395-8408-93313162aadc.mp3'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "creatify:aurora@fast",
            "positivePrompt": "Animate this portrait as a polished cinematic teaser performance for a prestige investigative docuseries. Preserve the subject's identity, wardrobe, laboratory setting, black orchid, ultraviolet cobalt lighting, and carmine accents. Synchronize her lips precisely to the supplied speech. She begins completely still with guarded eye contact, then makes a small measured inhale before speaking. Use restrained, intelligent facial acting: subtle tension around the eyes, one natural blink, a slight brow movement on “disappear,” and a nearly imperceptible forward lean as the allegation sharpens. On “white gloves,” let her briefly glance toward her gloved hand before returning directly to camera. Deliver “perfectly legal hammer” with quiet certainty, a faint tightening of the jaw, and a controlled final pause. Include realistic breathing, tiny head adjustments, and minimal shoulder motion. Keep the tone ominous, sophisticated, and journalistic rather than theatrical. Stable composition with a gentle cinematic push-in; no exaggerated gestures, no smiling, no visual distortions, no additional people, and no on-screen interface.",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/0d8ec02a-91ee-49ba-b372-3dd86e78c88e.jpg",
                "audio": "https://assets.runware.ai/assets/inputs/d44d2131-9c70-4395-8408-93313162aadc.mp3"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "e956501d-c3e5-47b3-ac1d-50730cddc2c7",
      "model": "creatify:aurora@fast",
      "positivePrompt": "Animate this portrait as a polished cinematic teaser performance for a prestige investigative docuseries. Preserve the subject's identity, wardrobe, laboratory setting, black orchid, ultraviolet cobalt lighting, and carmine accents. Synchronize her lips precisely to the supplied speech. She begins completely still with guarded eye contact, then makes a small measured inhale before speaking. Use restrained, intelligent facial acting: subtle tension around the eyes, one natural blink, a slight brow movement on “disappear,” and a nearly imperceptible forward lean as the allegation sharpens. On “white gloves,” let her briefly glance toward her gloved hand before returning directly to camera. Deliver “perfectly legal hammer” with quiet certainty, a faint tightening of the jaw, and a controlled final pause. Include realistic breathing, tiny head adjustments, and minimal shoulder motion. Keep the tone ominous, sophisticated, and journalistic rather than theatrical. Stable composition with a gentle cinematic push-in; no exaggerated gestures, no smiling, no visual distortions, no additional people, and no on-screen interface.",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/0d8ec02a-91ee-49ba-b372-3dd86e78c88e.jpg",
        "audio": "https://assets.runware.ai/assets/inputs/d44d2131-9c70-4395-8408-93313162aadc.mp3"
      }
    }
  ]'
runware run creatify:aurora@fast \
  positivePrompt="Animate this portrait as a polished cinematic teaser performance for a prestige investigative docuseries. Preserve the subject's identity, wardrobe, laboratory setting, black orchid, ultraviolet cobalt lighting, and carmine accents. Synchronize her lips precisely to the supplied speech. She begins completely still with guarded eye contact, then makes a small measured inhale before speaking. Use restrained, intelligent facial acting: subtle tension around the eyes, one natural blink, a slight brow movement on “disappear,” and a nearly imperceptible forward lean as the allegation sharpens. On “white gloves,” let her briefly glance toward her gloved hand before returning directly to camera. Deliver “perfectly legal hammer” with quiet certainty, a faint tightening of the jaw, and a controlled final pause. Include realistic breathing, tiny head adjustments, and minimal shoulder motion. Keep the tone ominous, sophisticated, and journalistic rather than theatrical. Stable composition with a gentle cinematic push-in; no exaggerated gestures, no smiling, no visual distortions, no additional people, and no on-screen interface." \
  inputs.image=https://assets.runware.ai/assets/inputs/0d8ec02a-91ee-49ba-b372-3dd86e78c88e.jpg \
  inputs.audio=https://assets.runware.ai/assets/inputs/d44d2131-9c70-4395-8408-93313162aadc.mp3
{
  "taskType": "videoInference",
  "taskUUID": "e956501d-c3e5-47b3-ac1d-50730cddc2c7",
  "model": "creatify:aurora@fast",
  "positivePrompt": "Animate this portrait as a polished cinematic teaser performance for a prestige investigative docuseries. Preserve the subject's identity, wardrobe, laboratory setting, black orchid, ultraviolet cobalt lighting, and carmine accents. Synchronize her lips precisely to the supplied speech. She begins completely still with guarded eye contact, then makes a small measured inhale before speaking. Use restrained, intelligent facial acting: subtle tension around the eyes, one natural blink, a slight brow movement on “disappear,” and a nearly imperceptible forward lean as the allegation sharpens. On “white gloves,” let her briefly glance toward her gloved hand before returning directly to camera. Deliver “perfectly legal hammer” with quiet certainty, a faint tightening of the jaw, and a controlled final pause. Include realistic breathing, tiny head adjustments, and minimal shoulder motion. Keep the tone ominous, sophisticated, and journalistic rather than theatrical. Stable composition with a gentle cinematic push-in; no exaggerated gestures, no smiling, no visual distortions, no additional people, and no on-screen interface.",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/0d8ec02a-91ee-49ba-b372-3dd86e78c88e.jpg",
    "audio": "https://assets.runware.ai/assets/inputs/d44d2131-9c70-4395-8408-93313162aadc.mp3"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "e956501d-c3e5-47b3-ac1d-50730cddc2c7",
  "videoUUID": "2c5c0efc-f387-4b8e-b7e6-582f0bcc2f6a",
  "videoURL": "https://vm.runware.ai/video/os/a03d21/ws/5/vi/2c5c0efc-f387-4b8e-b7e6-582f0bcc2f6a.mp4",
  "cost": 0.7
}
audio-driven

Emergency Book Conservation Social Reel

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'creatify:aurora@fast',
  positivePrompt: 'Create a polished vertical social media advice ad by naturally animating the paper conservator in the source portrait to deliver the supplied speech directly to camera. Maintain her identity, clothing, studio setting, realistic skin detail and chest-up framing. Use precise lip synchronization and a calm, credible, gently urgent delivery. Begin with attentive eye contact and a small concerned brow movement as she mentions the spill. Add restrained conversational head motion, natural blinking and subtle breathing. On “Blot, never rub,” let her expression become firm and instructive, with one small gloved-hand gesture near the book. As she lists the remaining steps, use slight nods timed to each instruction. End with a reassuring expression and steady eye contact. Keep the camera locked, the background stable and the movement physically realistic. Premium editorial color treatment with persimmon orange, ultramarine blue and clean archival white; practical, trustworthy and immediately useful rather than theatrical. No added people, captions, logos, interface elements or camera movement.',
  CFGScale: 4,
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/e969f7f3-0ef2-47d1-a186-c3d2428993b4.jpg',
    audio: 'https://assets.runware.ai/assets/inputs/c66db613-e5e7-443d-8674-0b50f0351fc2.mp3'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "creatify:aurora@fast",
            "positivePrompt": "Create a polished vertical social media advice ad by naturally animating the paper conservator in the source portrait to deliver the supplied speech directly to camera. Maintain her identity, clothing, studio setting, realistic skin detail and chest-up framing. Use precise lip synchronization and a calm, credible, gently urgent delivery. Begin with attentive eye contact and a small concerned brow movement as she mentions the spill. Add restrained conversational head motion, natural blinking and subtle breathing. On “Blot, never rub,” let her expression become firm and instructive, with one small gloved-hand gesture near the book. As she lists the remaining steps, use slight nods timed to each instruction. End with a reassuring expression and steady eye contact. Keep the camera locked, the background stable and the movement physically realistic. Premium editorial color treatment with persimmon orange, ultramarine blue and clean archival white; practical, trustworthy and immediately useful rather than theatrical. No added people, captions, logos, interface elements or camera movement.",
            "CFGScale": 4,
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/e969f7f3-0ef2-47d1-a186-c3d2428993b4.jpg",
                "audio": "https://assets.runware.ai/assets/inputs/c66db613-e5e7-443d-8674-0b50f0351fc2.mp3"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "f93ff6bf-d548-4eeb-a270-c72198218e74",
      "model": "creatify:aurora@fast",
      "positivePrompt": "Create a polished vertical social media advice ad by naturally animating the paper conservator in the source portrait to deliver the supplied speech directly to camera. Maintain her identity, clothing, studio setting, realistic skin detail and chest-up framing. Use precise lip synchronization and a calm, credible, gently urgent delivery. Begin with attentive eye contact and a small concerned brow movement as she mentions the spill. Add restrained conversational head motion, natural blinking and subtle breathing. On “Blot, never rub,” let her expression become firm and instructive, with one small gloved-hand gesture near the book. As she lists the remaining steps, use slight nods timed to each instruction. End with a reassuring expression and steady eye contact. Keep the camera locked, the background stable and the movement physically realistic. Premium editorial color treatment with persimmon orange, ultramarine blue and clean archival white; practical, trustworthy and immediately useful rather than theatrical. No added people, captions, logos, interface elements or camera movement.",
      "CFGScale": 4,
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/e969f7f3-0ef2-47d1-a186-c3d2428993b4.jpg",
        "audio": "https://assets.runware.ai/assets/inputs/c66db613-e5e7-443d-8674-0b50f0351fc2.mp3"
      }
    }
  ]'
runware run creatify:aurora@fast \
  positivePrompt="Create a polished vertical social media advice ad by naturally animating the paper conservator in the source portrait to deliver the supplied speech directly to camera. Maintain her identity, clothing, studio setting, realistic skin detail and chest-up framing. Use precise lip synchronization and a calm, credible, gently urgent delivery. Begin with attentive eye contact and a small concerned brow movement as she mentions the spill. Add restrained conversational head motion, natural blinking and subtle breathing. On “Blot, never rub,” let her expression become firm and instructive, with one small gloved-hand gesture near the book. As she lists the remaining steps, use slight nods timed to each instruction. End with a reassuring expression and steady eye contact. Keep the camera locked, the background stable and the movement physically realistic. Premium editorial color treatment with persimmon orange, ultramarine blue and clean archival white; practical, trustworthy and immediately useful rather than theatrical. No added people, captions, logos, interface elements or camera movement." \
  CFGScale=4 \
  inputs.image=https://assets.runware.ai/assets/inputs/e969f7f3-0ef2-47d1-a186-c3d2428993b4.jpg \
  inputs.audio=https://assets.runware.ai/assets/inputs/c66db613-e5e7-443d-8674-0b50f0351fc2.mp3
{
  "taskType": "videoInference",
  "taskUUID": "f93ff6bf-d548-4eeb-a270-c72198218e74",
  "model": "creatify:aurora@fast",
  "positivePrompt": "Create a polished vertical social media advice ad by naturally animating the paper conservator in the source portrait to deliver the supplied speech directly to camera. Maintain her identity, clothing, studio setting, realistic skin detail and chest-up framing. Use precise lip synchronization and a calm, credible, gently urgent delivery. Begin with attentive eye contact and a small concerned brow movement as she mentions the spill. Add restrained conversational head motion, natural blinking and subtle breathing. On “Blot, never rub,” let her expression become firm and instructive, with one small gloved-hand gesture near the book. As she lists the remaining steps, use slight nods timed to each instruction. End with a reassuring expression and steady eye contact. Keep the camera locked, the background stable and the movement physically realistic. Premium editorial color treatment with persimmon orange, ultramarine blue and clean archival white; practical, trustworthy and immediately useful rather than theatrical. No added people, captions, logos, interface elements or camera movement.",
  "CFGScale": 4,
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/e969f7f3-0ef2-47d1-a186-c3d2428993b4.jpg",
    "audio": "https://assets.runware.ai/assets/inputs/c66db613-e5e7-443d-8674-0b50f0351fc2.mp3"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "f93ff6bf-d548-4eeb-a270-c72198218e74",
  "videoUUID": "f2d46ae1-8c2f-474a-9b02-3d865bdda67a",
  "videoURL": "https://vm.runware.ai/video/os/a06dlim3/ws/5/vi/f2d46ae1-8c2f-474a-9b02-3d865bdda67a.mp4",
  "cost": 0.63
}
audio-driven

Seed Library Logo Sting

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'creatify:aurora@fast',
  positivePrompt: 'Create a polished animated logo sting from the supplied seed-library identity. Keep the medallion, background, lettering, colors, paper texture, and overall composition locked in place. Only the illustrated seed keeper within the emblem comes gently to life: natural blinking, precise lip synchronization to the supplied speech, subtle breathing, a small encouraging nod on “possibility,” and a warm restrained smile on the final phrase. Preserve her identity and the handcrafted risograph character of the source art; facial motion should remain expressive but understated, with no photorealistic transformation. Add minimal secondary motion as a few sunflower petals softly flex outward and settle, while all typography stays perfectly sharp, legible, and stationary. No camera movement, cuts, added objects, extra people, or background changes. Finish with the speaker’s mouth closed and the portrait settled into the original logo pose for a clean brand-signature ending.',
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/4e2a974b-52de-46bc-85bd-008a692d59ff.jpg',
    audio: 'https://assets.runware.ai/assets/inputs/b88af56e-8519-47b9-bf96-4f3dd4fcfdc2.mp3'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "creatify:aurora@fast",
            "positivePrompt": "Create a polished animated logo sting from the supplied seed-library identity. Keep the medallion, background, lettering, colors, paper texture, and overall composition locked in place. Only the illustrated seed keeper within the emblem comes gently to life: natural blinking, precise lip synchronization to the supplied speech, subtle breathing, a small encouraging nod on “possibility,” and a warm restrained smile on the final phrase. Preserve her identity and the handcrafted risograph character of the source art; facial motion should remain expressive but understated, with no photorealistic transformation. Add minimal secondary motion as a few sunflower petals softly flex outward and settle, while all typography stays perfectly sharp, legible, and stationary. No camera movement, cuts, added objects, extra people, or background changes. Finish with the speaker’s mouth closed and the portrait settled into the original logo pose for a clean brand-signature ending.",
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/4e2a974b-52de-46bc-85bd-008a692d59ff.jpg",
                "audio": "https://assets.runware.ai/assets/inputs/b88af56e-8519-47b9-bf96-4f3dd4fcfdc2.mp3"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "d5da84e5-59bc-4bcd-af18-d40fb2aafc6d",
      "model": "creatify:aurora@fast",
      "positivePrompt": "Create a polished animated logo sting from the supplied seed-library identity. Keep the medallion, background, lettering, colors, paper texture, and overall composition locked in place. Only the illustrated seed keeper within the emblem comes gently to life: natural blinking, precise lip synchronization to the supplied speech, subtle breathing, a small encouraging nod on “possibility,” and a warm restrained smile on the final phrase. Preserve her identity and the handcrafted risograph character of the source art; facial motion should remain expressive but understated, with no photorealistic transformation. Add minimal secondary motion as a few sunflower petals softly flex outward and settle, while all typography stays perfectly sharp, legible, and stationary. No camera movement, cuts, added objects, extra people, or background changes. Finish with the speaker’s mouth closed and the portrait settled into the original logo pose for a clean brand-signature ending.",
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/4e2a974b-52de-46bc-85bd-008a692d59ff.jpg",
        "audio": "https://assets.runware.ai/assets/inputs/b88af56e-8519-47b9-bf96-4f3dd4fcfdc2.mp3"
      }
    }
  ]'
runware run creatify:aurora@fast \
  positivePrompt="Create a polished animated logo sting from the supplied seed-library identity. Keep the medallion, background, lettering, colors, paper texture, and overall composition locked in place. Only the illustrated seed keeper within the emblem comes gently to life: natural blinking, precise lip synchronization to the supplied speech, subtle breathing, a small encouraging nod on “possibility,” and a warm restrained smile on the final phrase. Preserve her identity and the handcrafted risograph character of the source art; facial motion should remain expressive but understated, with no photorealistic transformation. Add minimal secondary motion as a few sunflower petals softly flex outward and settle, while all typography stays perfectly sharp, legible, and stationary. No camera movement, cuts, added objects, extra people, or background changes. Finish with the speaker’s mouth closed and the portrait settled into the original logo pose for a clean brand-signature ending." \
  inputs.image=https://assets.runware.ai/assets/inputs/4e2a974b-52de-46bc-85bd-008a692d59ff.jpg \
  inputs.audio=https://assets.runware.ai/assets/inputs/b88af56e-8519-47b9-bf96-4f3dd4fcfdc2.mp3
{
  "taskType": "videoInference",
  "taskUUID": "d5da84e5-59bc-4bcd-af18-d40fb2aafc6d",
  "model": "creatify:aurora@fast",
  "positivePrompt": "Create a polished animated logo sting from the supplied seed-library identity. Keep the medallion, background, lettering, colors, paper texture, and overall composition locked in place. Only the illustrated seed keeper within the emblem comes gently to life: natural blinking, precise lip synchronization to the supplied speech, subtle breathing, a small encouraging nod on “possibility,” and a warm restrained smile on the final phrase. Preserve her identity and the handcrafted risograph character of the source art; facial motion should remain expressive but understated, with no photorealistic transformation. Add minimal secondary motion as a few sunflower petals softly flex outward and settle, while all typography stays perfectly sharp, legible, and stationary. No camera movement, cuts, added objects, extra people, or background changes. Finish with the speaker’s mouth closed and the portrait settled into the original logo pose for a clean brand-signature ending.",
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/4e2a974b-52de-46bc-85bd-008a692d59ff.jpg",
    "audio": "https://assets.runware.ai/assets/inputs/b88af56e-8519-47b9-bf96-4f3dd4fcfdc2.mp3"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "d5da84e5-59bc-4bcd-af18-d40fb2aafc6d",
  "videoUUID": "a25a65fc-3a88-4b09-9c28-af881d3d876f",
  "videoURL": "https://vm.runware.ai/video/os/a05d22/ws/5/vi/a25a65fc-3a88-4b09-9c28-af881d3d876f.mp4",
  "cost": 0.42
}
Audio to Video

Brass Automaton Lecture Chamber

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'creatify:aurora@fast',
  positivePrompt: 'A warmly lit mechanical scholar delivering a thoughtful lecture to camera, subtle head motion, natural blinking, precise lip sync, polished brass details, porcelain facial plates, amber glass eyes, refined Victorian-inspired attire, scholarly atmosphere, shelves of scientific instruments softly blurred in the background, cinematic framing, expressive but believable facial animation',
  CFGScale: 1,
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/3fa727ee-cb24-4a26-a3ae-8f08c2a5d32a.jpg',
    audio: 'https://assets.runware.ai/assets/inputs/bf499d82-2c5a-455d-938f-f4e0216d10cf.mp3'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "creatify:aurora@fast",
            "positivePrompt": "A warmly lit mechanical scholar delivering a thoughtful lecture to camera, subtle head motion, natural blinking, precise lip sync, polished brass details, porcelain facial plates, amber glass eyes, refined Victorian-inspired attire, scholarly atmosphere, shelves of scientific instruments softly blurred in the background, cinematic framing, expressive but believable facial animation",
            "CFGScale": 1,
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/3fa727ee-cb24-4a26-a3ae-8f08c2a5d32a.jpg",
                "audio": "https://assets.runware.ai/assets/inputs/bf499d82-2c5a-455d-938f-f4e0216d10cf.mp3"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "c734d6e1-a1b2-45a5-9deb-aec768e1e1c3",
      "model": "creatify:aurora@fast",
      "positivePrompt": "A warmly lit mechanical scholar delivering a thoughtful lecture to camera, subtle head motion, natural blinking, precise lip sync, polished brass details, porcelain facial plates, amber glass eyes, refined Victorian-inspired attire, scholarly atmosphere, shelves of scientific instruments softly blurred in the background, cinematic framing, expressive but believable facial animation",
      "CFGScale": 1,
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/3fa727ee-cb24-4a26-a3ae-8f08c2a5d32a.jpg",
        "audio": "https://assets.runware.ai/assets/inputs/bf499d82-2c5a-455d-938f-f4e0216d10cf.mp3"
      }
    }
  ]'
runware run creatify:aurora@fast \
  positivePrompt="A warmly lit mechanical scholar delivering a thoughtful lecture to camera, subtle head motion, natural blinking, precise lip sync, polished brass details, porcelain facial plates, amber glass eyes, refined Victorian-inspired attire, scholarly atmosphere, shelves of scientific instruments softly blurred in the background, cinematic framing, expressive but believable facial animation" \
  CFGScale=1 \
  inputs.image=https://assets.runware.ai/assets/inputs/3fa727ee-cb24-4a26-a3ae-8f08c2a5d32a.jpg \
  inputs.audio=https://assets.runware.ai/assets/inputs/bf499d82-2c5a-455d-938f-f4e0216d10cf.mp3
{
  "taskType": "videoInference",
  "taskUUID": "c734d6e1-a1b2-45a5-9deb-aec768e1e1c3",
  "model": "creatify:aurora@fast",
  "positivePrompt": "A warmly lit mechanical scholar delivering a thoughtful lecture to camera, subtle head motion, natural blinking, precise lip sync, polished brass details, porcelain facial plates, amber glass eyes, refined Victorian-inspired attire, scholarly atmosphere, shelves of scientific instruments softly blurred in the background, cinematic framing, expressive but believable facial animation",
  "CFGScale": 1,
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/3fa727ee-cb24-4a26-a3ae-8f08c2a5d32a.jpg",
    "audio": "https://assets.runware.ai/assets/inputs/bf499d82-2c5a-455d-938f-f4e0216d10cf.mp3"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "c734d6e1-a1b2-45a5-9deb-aec768e1e1c3",
  "videoUUID": "7aaf6f1b-dc63-447f-9002-c4f71509179d",
  "videoURL": "https://vm.runware.ai/video/os/a22d05/ws/5/vi/7aaf6f1b-dc63-447f-9002-c4f71509179d.mp4",
  "cost": 0.77
}
Audio to Video

Harbor Botanist Video Diary

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'creatify:aurora@fast',
  positivePrompt: 'A believable speaking avatar video of a coastal greenhouse botanist addressing the camera with calm enthusiasm, accurate lip sync, subtle head movement, natural blinking, relaxed shoulders, gentle expression changes, soft maritime daylight through glass panes, detailed plants in the background, realistic skin texture, grounded documentary feel',
  CFGScale: 1.6,
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/85f73fe7-c574-448a-b47c-0d9f731ad437.jpg',
    audio: 'https://assets.runware.ai/assets/inputs/a220d09f-89cb-4707-974a-8ad370c750b0.mp3'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "creatify:aurora@fast",
            "positivePrompt": "A believable speaking avatar video of a coastal greenhouse botanist addressing the camera with calm enthusiasm, accurate lip sync, subtle head movement, natural blinking, relaxed shoulders, gentle expression changes, soft maritime daylight through glass panes, detailed plants in the background, realistic skin texture, grounded documentary feel",
            "CFGScale": 1.6,
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/85f73fe7-c574-448a-b47c-0d9f731ad437.jpg",
                "audio": "https://assets.runware.ai/assets/inputs/a220d09f-89cb-4707-974a-8ad370c750b0.mp3"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "cf245b6a-1815-4d86-8248-31bab664c505",
      "model": "creatify:aurora@fast",
      "positivePrompt": "A believable speaking avatar video of a coastal greenhouse botanist addressing the camera with calm enthusiasm, accurate lip sync, subtle head movement, natural blinking, relaxed shoulders, gentle expression changes, soft maritime daylight through glass panes, detailed plants in the background, realistic skin texture, grounded documentary feel",
      "CFGScale": 1.6,
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/85f73fe7-c574-448a-b47c-0d9f731ad437.jpg",
        "audio": "https://assets.runware.ai/assets/inputs/a220d09f-89cb-4707-974a-8ad370c750b0.mp3"
      }
    }
  ]'
runware run creatify:aurora@fast \
  positivePrompt="A believable speaking avatar video of a coastal greenhouse botanist addressing the camera with calm enthusiasm, accurate lip sync, subtle head movement, natural blinking, relaxed shoulders, gentle expression changes, soft maritime daylight through glass panes, detailed plants in the background, realistic skin texture, grounded documentary feel" \
  CFGScale=1.6 \
  inputs.image=https://assets.runware.ai/assets/inputs/85f73fe7-c574-448a-b47c-0d9f731ad437.jpg \
  inputs.audio=https://assets.runware.ai/assets/inputs/a220d09f-89cb-4707-974a-8ad370c750b0.mp3
{
  "taskType": "videoInference",
  "taskUUID": "cf245b6a-1815-4d86-8248-31bab664c505",
  "model": "creatify:aurora@fast",
  "positivePrompt": "A believable speaking avatar video of a coastal greenhouse botanist addressing the camera with calm enthusiasm, accurate lip sync, subtle head movement, natural blinking, relaxed shoulders, gentle expression changes, soft maritime daylight through glass panes, detailed plants in the background, realistic skin texture, grounded documentary feel",
  "CFGScale": 1.6,
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/85f73fe7-c574-448a-b47c-0d9f731ad437.jpg",
    "audio": "https://assets.runware.ai/assets/inputs/a220d09f-89cb-4707-974a-8ad370c750b0.mp3"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "cf245b6a-1815-4d86-8248-31bab664c505",
  "videoUUID": "a16ce5a6-4915-4d51-b516-fa0145c94015",
  "videoURL": "https://vm.runware.ai/video/os/a22d05/ws/5/vi/a16ce5a6-4915-4d51-b516-fa0145c94015.mp4",
  "cost": 1.26
}
Audio to Video

Weathered Lighthouse Keeper Monologue

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'creatify:aurora@fast',
  positivePrompt: 'A grounded cinematic talking-head performance of a weathered lighthouse keeper speaking directly to camera, realistic facial expressions, precise lip sync, subtle head movement, natural blinking, wind-touched atmosphere, overcast seaside background, detailed skin texture, believable human motion, sharp focus, immersive realism',
  CFGScale: 1,
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/1e4e7426-1e08-462d-9324-fb0853f94e22.jpg',
    audio: 'https://assets.runware.ai/assets/inputs/10288cc1-874f-46a5-b694-448a71c90a59.mp3'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "creatify:aurora@fast",
            "positivePrompt": "A grounded cinematic talking-head performance of a weathered lighthouse keeper speaking directly to camera, realistic facial expressions, precise lip sync, subtle head movement, natural blinking, wind-touched atmosphere, overcast seaside background, detailed skin texture, believable human motion, sharp focus, immersive realism",
            "CFGScale": 1,
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/1e4e7426-1e08-462d-9324-fb0853f94e22.jpg",
                "audio": "https://assets.runware.ai/assets/inputs/10288cc1-874f-46a5-b694-448a71c90a59.mp3"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "ee3a0c7b-9e19-40ef-8487-22eaad36d925",
      "model": "creatify:aurora@fast",
      "positivePrompt": "A grounded cinematic talking-head performance of a weathered lighthouse keeper speaking directly to camera, realistic facial expressions, precise lip sync, subtle head movement, natural blinking, wind-touched atmosphere, overcast seaside background, detailed skin texture, believable human motion, sharp focus, immersive realism",
      "CFGScale": 1,
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/1e4e7426-1e08-462d-9324-fb0853f94e22.jpg",
        "audio": "https://assets.runware.ai/assets/inputs/10288cc1-874f-46a5-b694-448a71c90a59.mp3"
      }
    }
  ]'
runware run creatify:aurora@fast \
  positivePrompt="A grounded cinematic talking-head performance of a weathered lighthouse keeper speaking directly to camera, realistic facial expressions, precise lip sync, subtle head movement, natural blinking, wind-touched atmosphere, overcast seaside background, detailed skin texture, believable human motion, sharp focus, immersive realism" \
  CFGScale=1 \
  inputs.image=https://assets.runware.ai/assets/inputs/1e4e7426-1e08-462d-9324-fb0853f94e22.jpg \
  inputs.audio=https://assets.runware.ai/assets/inputs/10288cc1-874f-46a5-b694-448a71c90a59.mp3
{
  "taskType": "videoInference",
  "taskUUID": "ee3a0c7b-9e19-40ef-8487-22eaad36d925",
  "model": "creatify:aurora@fast",
  "positivePrompt": "A grounded cinematic talking-head performance of a weathered lighthouse keeper speaking directly to camera, realistic facial expressions, precise lip sync, subtle head movement, natural blinking, wind-touched atmosphere, overcast seaside background, detailed skin texture, believable human motion, sharp focus, immersive realism",
  "CFGScale": 1,
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/1e4e7426-1e08-462d-9324-fb0853f94e22.jpg",
    "audio": "https://assets.runware.ai/assets/inputs/10288cc1-874f-46a5-b694-448a71c90a59.mp3"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "ee3a0c7b-9e19-40ef-8487-22eaad36d925",
  "videoUUID": "441b1fa1-d447-4ebc-a46a-8992b50ba482",
  "videoURL": "https://vm.runware.ai/video/os/a21d05/ws/5/vi/441b1fa1-d447-4ebc-a46a-8992b50ba482.mp4",
  "cost": 0.7
}
Audio to Video

Windmill Baker Storytelling Avatar

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'creatify:aurora@fast',
  positivePrompt: 'A natural speaking avatar video of a kindly village baker addressing the viewer directly, subtle head movement, accurate lip sync, relaxed blinking, soft expressive eyes, believable cheeks and jaw motion, rustic countryside bakery atmosphere, warm daylight, stable camera, realistic skin texture, cinematic but grounded, clean background separation, engaging and trustworthy presence',
  CFGScale: 1,
  inputs: {
    image: 'https://assets.runware.ai/assets/inputs/a0852c8b-a247-4950-b98c-39a7c15c4efb.jpg',
    audio: 'https://assets.runware.ai/assets/inputs/bf595475-f6f1-42a7-bf13-8fc0720c9288.mp3'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "creatify:aurora@fast",
            "positivePrompt": "A natural speaking avatar video of a kindly village baker addressing the viewer directly, subtle head movement, accurate lip sync, relaxed blinking, soft expressive eyes, believable cheeks and jaw motion, rustic countryside bakery atmosphere, warm daylight, stable camera, realistic skin texture, cinematic but grounded, clean background separation, engaging and trustworthy presence",
            "CFGScale": 1,
            "inputs": {
                "image": "https://assets.runware.ai/assets/inputs/a0852c8b-a247-4950-b98c-39a7c15c4efb.jpg",
                "audio": "https://assets.runware.ai/assets/inputs/bf595475-f6f1-42a7-bf13-8fc0720c9288.mp3"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "videoInference",
      "taskUUID": "0d8ba56d-0201-4246-b62c-b80fcd78789a",
      "model": "creatify:aurora@fast",
      "positivePrompt": "A natural speaking avatar video of a kindly village baker addressing the viewer directly, subtle head movement, accurate lip sync, relaxed blinking, soft expressive eyes, believable cheeks and jaw motion, rustic countryside bakery atmosphere, warm daylight, stable camera, realistic skin texture, cinematic but grounded, clean background separation, engaging and trustworthy presence",
      "CFGScale": 1,
      "inputs": {
        "image": "https://assets.runware.ai/assets/inputs/a0852c8b-a247-4950-b98c-39a7c15c4efb.jpg",
        "audio": "https://assets.runware.ai/assets/inputs/bf595475-f6f1-42a7-bf13-8fc0720c9288.mp3"
      }
    }
  ]'
runware run creatify:aurora@fast \
  positivePrompt="A natural speaking avatar video of a kindly village baker addressing the viewer directly, subtle head movement, accurate lip sync, relaxed blinking, soft expressive eyes, believable cheeks and jaw motion, rustic countryside bakery atmosphere, warm daylight, stable camera, realistic skin texture, cinematic but grounded, clean background separation, engaging and trustworthy presence" \
  CFGScale=1 \
  inputs.image=https://assets.runware.ai/assets/inputs/a0852c8b-a247-4950-b98c-39a7c15c4efb.jpg \
  inputs.audio=https://assets.runware.ai/assets/inputs/bf595475-f6f1-42a7-bf13-8fc0720c9288.mp3
{
  "taskType": "videoInference",
  "taskUUID": "0d8ba56d-0201-4246-b62c-b80fcd78789a",
  "model": "creatify:aurora@fast",
  "positivePrompt": "A natural speaking avatar video of a kindly village baker addressing the viewer directly, subtle head movement, accurate lip sync, relaxed blinking, soft expressive eyes, believable cheeks and jaw motion, rustic countryside bakery atmosphere, warm daylight, stable camera, realistic skin texture, cinematic but grounded, clean background separation, engaging and trustworthy presence",
  "CFGScale": 1,
  "inputs": {
    "image": "https://assets.runware.ai/assets/inputs/a0852c8b-a247-4950-b98c-39a7c15c4efb.jpg",
    "audio": "https://assets.runware.ai/assets/inputs/bf595475-f6f1-42a7-bf13-8fc0720c9288.mp3"
  }
}
Response
{
  "taskType": "videoInference",
  "taskUUID": "0d8ba56d-0201-4246-b62c-b80fcd78789a",
  "videoUUID": "349a8383-5dae-4191-979f-0e6243877d1c",
  "videoURL": "https://vm.runware.ai/video/os/a24d12/ws/5/vi/349a8383-5dae-4191-979f-0e6243877d1c.mp4",
  "cost": 0.98
}