github huggingface/huggingface_hub v0.34.4
[v0.34.4] Support Image to Video inference + QoL in jobs API, auth and utilities

29 days ago

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: v0.34.3...v0.34.4

Don't miss a new huggingface_hub release

NewReleases is sending notifications on new releases.