Biggest update is the support of Image-To-Video task with inference provider Fal AI
- [Inference] Support image to video task #3289 by @hanouticelina
>>> 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:
- Add type to job owner #3291 by @drbh
- Include HF_HUB_DISABLE_XET in the environment dump #3290 by @hanouticelina
- Whoami: custom message only on unauthorized #3288 by @Wauplin
- Add validation warnings for repository limits in upload_large_folder #3280 by @davanstrien
- Add timeout info to Jobs guide docs #3281 by @davanstrien
- [Jobs] Use current or stored token in a Job secrets #3272 by @lhoestq
- Fix bash history expansion in hf jobs example #3277 by @nyuuzyou
Full Changelog: v0.34.3...v0.34.4