The Wire · Showcase
LARAVEL AI GAINS GEMINI AUDIO AND AZURE IMAGE GENERATION
By RepoJournal · Filed · About Laravel
Laravel's AI toolkit shipped native text-to-speech and speech-to-text support for Gemini [ref:6], while Azure OpenAI users finally got DALL-E image generation [ref:7] — closing a critical gap in multimodal AI coverage.
The Gemini audio driver [1] handles the messy details: raw PCM streams get automatically wrapped into WAV containers, and voice selection is now flexible with built-in defaults for hosts and guests. Azure OpenAI's image generation support [2] was a long-coming addition — the provider already supported DALL-E deployments but lacked the interface to use them. Bedrock users get a parallel win with Base64 image attachment support now baked into the text gateway [3], keeping attachment logic reusable across providers. On the framework side, Laravel 13.x is shedding deprecated PHP baggage: `mt_srand()` mode arguments [6] and `mb_split()` calls [7] are being stripped out in favor of modern PHP standard functions. The MCP server fixed two edge cases yesterday — JSON-RPC request IDs that aren't strings or ints no longer throw TypeErrors [5], and OAuth client registration now correctly returns 201 instead of 200 per RFC 7591 [4], unblocking stricter clients like Antigravity.
Action items
- → Test Gemini TTS/STT integration if you're building voice features with Laravel AI laravel/ai [plan]
- → Enable Azure DALL-E image generation in production if previously blocked laravel/ai [plan]
- → Review MCP servers for JSON-RPC compatibility with the 201 status change laravel/mcp [monitor]
- → Prepare Laravel 13.x upgrade — deprecated PHP functions are being removed laravel/framework [plan]
References
- [1] Add Gemini TTS and STT support ↗ laravel/ai
- [2] [0.x] Add image generation support to AzureOpenAiProvider ↗ laravel/ai
- [3] Bedrock : support Base64 image for BedrockTextGateway ↗ laravel/ai
- [4] Return 201 from OAuth client registration per RFC 7591 ↗ laravel/mcp
- [5] Fix TypeError when JSON-RPC request id is not a string or int ↗ laravel/mcp
- [6] [13.x] remove `mt_srand()` deprecated "mode" argument (#60020) laravel/framework
- [7] [13.x] Replace `mb_split` with `preg_split` (#60012) laravel/framework
FAQ
- What changed in Laravel on May 7, 2026?
- Laravel's AI toolkit shipped native text-to-speech and speech-to-text support for Gemini , while Azure OpenAI users finally got DALL-E image generation — closing a critical gap in multimodal AI coverage.
- What should Laravel teams do about it?
- Test Gemini TTS/STT integration if you're building voice features with Laravel AI • Enable Azure DALL-E image generation in production if previously blocked • Review MCP servers for JSON-RPC compatibility with the 201 status change
- Which Laravel repositories shipped on May 7, 2026?
- laravel/ai, laravel/mcp, laravel/framework