[v0.34.4] Support Image to Video inference + QoL in jobs API, auth and utilities
Biggest update is the support of Image-To-Video task with inference provider Fal AI
>>> from huggingface_hub import InferenceClient
>>> client = InferenceClient()
>>> video = client.image_to_video("cat.jpg", model="Wan-AI/Wan2.2-I2V-A14B", prompt="turn the cat into a tiger")
>>> with open("tiger.mp4", "wb") as f:
... f.write(video)
And some quality of life improvements:
Full Changelog: https://github.com/huggingface/huggingface_hub/compare/v0.34.3...v0.34.4
Fetched April 7, 2026