The Vercel AI SDK has received updates across several packages, including @ai-sdk/tui@1.0.75, @ai-sdk/workflow@2.0.4, @ai-sdk/vue@4.0.74, and @ai-sdk/workflow-harness@1.0.82. These updates introduce new features for image input, file handling, and video model interactions.
Key Points
- The
@ai-sdk/deepseek@3.0.30package now supports DeepSeek V4 Flash Vision Exp image input. - The
@ai-sdk/deepseek@3.0.30package also includes Files API support. - The
@ai-sdk/gateway@4.0.60package implementshandleWebhookOptionfor the video model. - This implementation allows
generateVideo({ webhook })to register a factory URL as the gateway'scallbackUrl. - The webhook mechanism enables awaiting delivery instead of falling back to polling for video generation.
- The
aipackage was updated to version 7.0.74.
Context
According to the Vercel AI SDK Changelog, these updates were released through the Changesets release GitHub action. The changes affect multiple packages within the SDK, indicating a broader set of enhancements across the platform.
Why It Matters
These updates expand the capabilities of the Vercel AI SDK for developers working with multimodal models and asynchronous operations. The addition of DeepSeek V4 Flash Vision Exp support provides new options for image processing, while the webhook implementation for video generation can streamline workflows by enabling push notifications for completion rather than continuous polling.
What To Do
- Review the updated documentation for
@ai-sdk/deepseekto understand the new DeepSeek V4 Flash Vision Exp image input and Files API capabilities. - Investigate the
handleWebhookOptionin@ai-sdk/gatewayif developing applications that generate video. - Test the
generateVideo({ webhook })functionality to observe the change from polling to webhook delivery. - Note the updated
aipackage version 7.0.74 for dependency management.
