- Oct 31, 2025
- Parsed from source:Oct 31, 2025
- Detected by Releasebot:Nov 3, 2025
AI by Cloudflare
Workers WebSocket message size limit increased from 1 MiB to 32 MiB
WebSocket messages size limit (Durable Objects)
Workers, including those using Durable Objects and Browser Rendering, may now process WebSocket messages up to 32 MiB in size. Previously, this limit was 1 MiB.
This change allows Workers to handle use cases requiring large message sizes, such as processing Chrome Devtools Protocol messages.
For more information, please see the Durable Objects startup limits.
Original source Report a problem - Oct 28, 2025
- Parsed from source:Oct 28, 2025
- Detected by Releasebot:Oct 28, 2025
AI by Cloudflare
Reranking and API-based system prompt configuration in AI Search
AI Search now supports reranking to boost retrieval quality and lets you set system prompts directly in API requests for per-query control. Enable reranking in the dashboard or via API to reorder results by semantic relevance and improve accuracy on large or noisy datasets. Learn more about Reranking and System Prompt in AI Search.
AI Search now supports reranking for improved retrieval quality and allows you to set the system prompt directly in your API requests.
Rerank for more relevant results
You can now enable reranking to reorder retrieved documents based on their semantic relevance to the user’s query. Reranking helps improve accuracy, especially for large or noisy datasets where vector similarity alone may not produce the optimal ordering.
You can enable and configure reranking in the dashboard or directly in your API requests:Set system prompts in API
Previously, system prompts could only be configured in the dashboard. You can now define them directly in your API requests, giving you per-query control over behavior. For example:
Learn more about Reranking and System Prompt in AI Search.
Original source Report a problem - Oct 23, 2025
- Parsed from source:Oct 23, 2025
- Detected by Releasebot:Oct 28, 2025
AI by Cloudflare
Workers AI Markdown Conversion: New endpoint to list supported formats
New in this release
- Developers can now programmatically retrieve a list of all file formats supported by the Markdown Conversion utility in Workers AI.
- You can use the env.AI binding:
- Or call the REST API:
- Both return a list of file formats that users can convert into Markdown:
- Learn more about our Markdown Conversion utility.
- Oct 21, 2025
- Parsed from source:Oct 21, 2025
- Detected by Releasebot:Oct 27, 2025
AI by Cloudflare
New Robots.txt tab for tracking crawler compliance
AI Crawl Control adds a Robots.txt tab to monitor and manage how AI crawlers access your site. Track health, request counts, Content Signals, and disallowed-path requests; filter data by crawler and time. Take action with blocks, custom WAF, and redirect rules from Cloudflare.
Robots.txt tab
AI Crawl Control now includes a Robots.txt tab that provides insights into how AI crawlers interact with your robots.txt files.
The Robots.txt tab allows you to:
- Monitor the health status of robots.txt files across all your hostnames, including HTTP status codes, and identify hostnames that need a robots.txt file.
- Track the total number of requests to each robots.txt file, with breakdowns of successful versus unsuccessful requests.
- Check whether your robots.txt files contain Content Signals directives for AI training, search, and AI input.
- Identify crawlers that request paths explicitly disallowed by your robots.txt directives, including the crawler name, operator, violated path, specific directive, and violation count.
- Filter robots.txt request data by crawler, operator, category, and custom time ranges.
Take action
When you identify non-compliant crawlers, you can:
- Block the crawler in the Crawlers tab
- Create custom WAF rules for path-specific security
- Use Redirect Rules to guide crawlers to appropriate areas of your site
To get started, go to AI Crawl Control > Robots.txt in the Cloudflare dashboard. Learn more in the Track robots.txt documentation.
Original source Report a problem - Oct 14, 2025
- Parsed from source:Oct 14, 2025
- Detected by Releasebot:Oct 27, 2025
AI by Cloudflare
Enhanced AI Crawl Control metrics with new drilldowns and filters
Cloudflare announces AI Crawl Control upgrades with enhanced metrics and CSV exports. Track crawler activity over time by crawler, category, operator, host, and status code, plus referrer insights on paid plans. Export filtered views for deeper analysis.
What's new
Track crawler requests over time
- By Crawler — Track activity from individual AI crawlers (GPTBot, ClaudeBot, Bytespider)
- By Category — Analyze crawler purpose or type
- By Operator — Discover which companies (OpenAI, Anthropic, ByteDance) are crawling your site
- By Host — Break down activity across multiple subdomains
- By Status Code — Monitor HTTP response codes to crawlers (200s, 300s, 400s, 500s)
Analyze referrer data (Paid plans)
- View top referrers driving traffic to your site
- Understand discovery patterns and content popularity from AI operators
Export data
- Download your filtered view as a CSV:
- Includes all applied filters and groupings
- Useful for custom reporting and deeper analysis
Get started
- Log in to the Cloudflare dashboard, and select your account and domain.
- Go to AI Crawl Control > Metrics.
- Use the grouping tabs to explore different views of your data.
- Apply filters to focus on specific crawlers, time ranges, or response codes.
- Select Download CSV to export your filtered data for further analysis.
Learn more about AI Crawl Control.
Original source Report a problem - Oct 2, 2025
- Parsed from source:Oct 2, 2025
- Detected by Releasebot:Oct 27, 2025
- Modified by Releasebot:Oct 28, 2025
AI by Cloudflare
New Deepgram Flux model available on Workers AI
Deepgram's Flux model is now available on Workers AI, leveraging Cloudflare edge GPUs for ultra-low latency voice agents. It pairs with Nova-3 and Aura-1 for end-to-end speech workflows, with October 2025 promotional free usage and pricing to come.
Deepgram's newest Flux model @cf/deepgram/flux is now available on Workers AI, hosted directly on Cloudflare's infrastructure. We're excited to be a launch partner with Deepgram and offer their new Speech Recognition model built specifically for enabling voice agents. Check out Deepgram's blog for more details on the release.
The Flux model can be used in conjunction with Deepgram's speech-to-text model @cf/deepgram/nova-3 and text-to-speech model @cf/deepgram/aura-1 to build end-to-end voice agents. Having Deepgram on Workers AI takes advantage of our edge GPU infrastructure, for ultra low latency voice AI applications.
Promotional Pricing
For the month of October 2025, Deepgram's Flux model will be free to use on Workers AI. Official pricing will be announced soon and charged after the promotional pricing period ends on October 31, 2025. Check out the model page for pricing details in the future.
Example Usage
The new Flux model is WebSocket only as it requires live bi-directional streaming in order to recognize speech activity.
- Create a worker that establishes a websocket connection with @cf/deepgram/flux
- Deploy your worker
- Write a client script to connect to your worker and start sending random audio bytes to it
Original source Report a problem// Generate random audio data (1 second of noise at 44.1kHz, mono) function generateRandomAudio() { const sampleRate = 44100; const duration = 1; const numSamples = sampleRate * duration; const buffer = new ArrayBuffer(numSamples * 2); const view = new Int16Array(buffer); for (let i = 0; i < numSamples; i++) { view[i] = Math.floor(Math.random() * 65536 - 32768); } return buffer; } - Sep 25, 2025
- Parsed from source:Sep 25, 2025
- Detected by Releasebot:Oct 27, 2025
AI by Cloudflare
Browser Rendering Playwright GA, Stagehand support (Beta), and higher limits
Three Browser Rendering updates go live: Playwright support is GA and aligned with v1.55, Stagehand enters Beta for mixed code and natural language automations, and paid plan limits are tripled for REST API and Workers Bindings. A Stagehand example shows NL search and data extraction with a webpage screenshot.
Browser Rendering Updates
- Playwright support is now Generally Available and synced with Playwright v1.55, giving you a stable foundation for critical automation and AI-agent workflows.
- We’re also adding Stagehand support (Beta) so you can combine code with natural language instructions to build more resilient automations.
- Finally, we’ve tripled limits for paid plans across both the REST API and Workers Bindings to help you scale.
To get started with Stagehand, refer to the Stagehand example that uses Stagehand and Workers AI to search for a movie on this example movie directory, extract its details using natural language (title, year, rating, duration, and genre), and return the information along with a screenshot of the webpage.
Original source Report a problem - Sep 25, 2025
- Parsed from source:Sep 25, 2025
- Detected by Releasebot:Oct 27, 2025
- Modified by Releasebot:Oct 28, 2025
AI by Cloudflare
AI Search (formerly AutoRAG) now with More Models To Choose From
AutoRAG rebrands to AI Search with a broader mission and multi-provider model access. Connect provider keys via AI Gateway to use OpenAI, Anthropic, and more for embeddings and inference. API naming will align with the new branding soon, while existing APIs remain supported.
AutoRAG is now AI Search
The new name marks a new and bigger mission: to make world-class search infrastructure available to every developer and business.
With AI Search you can now use models from different providers like OpenAI and Anthropic. By attaching your provider keys to the AI Gateway linked to your AI Search instance, you can use many more models for both embedding and inference.
To use AI Search with other model providers:
- Add provider keys to AI Gateway
- Go to AI > AI Gateway in the dashboard.
- Select or create an AI gateway.
- In Provider Keys, choose your provider, click Add, and enter the key.
- Connect a gateway to AI Search: When creating a new AI Search, select the AI Gateway with your provider keys. For an existing AI Search, go to Settings and switch to a gateway that has your keys under Resources.
- Select models: Embedding models are only available to be changed when creating a new AI Search. Generation model can be selected when creating a new AI Search and can be changed at any time in Settings.
Once configured, your AI Search instance will be able to reference models available through your AI Gateway when making a /ai-search request:
In the coming weeks we will also roll out updates to align the APIs with the new name. The existing APIs will continue to be supported for the time being. Stay tuned to the AI Search Changelog and Discord for more updates!
Original source Report a problem - Sep 19, 2025
- Parsed from source:Sep 19, 2025
- Detected by Releasebot:Oct 27, 2025
AI by Cloudflare
New Metrics View in AutoRAG
AutoRAG Metrics
AutoRAG now includes a Metrics tab that shows how your data is indexed and searched. Get a clear view of the health of your indexing pipeline, compare usage between ai-search and search, and see which files are retrieved most often.
You can find these metrics within each AutoRAG instance:
- Indexing: Track how files are ingested and see status changes over time.
- Search breakdown: Compare usage between ai-search and search endpoints.
- Top file retrievals: Identify which files are most frequently retrieved in a given period.
Try it today in AutoRAG.
Original source Report a problem - Sep 10, 2025
- Parsed from source:Sep 10, 2025
- Detected by Releasebot:Oct 27, 2025
AI by Cloudflare
Agents SDK v0.1.0 and workers-ai-provider v2.0.0 with AI SDK v5 support
The Agents SDK ships a v5 compatible release with automatic legacy message migration, improved streaming and tool support, and seamless Cloudflare Workers AI integration. It adds automatic tool resolution, better error handling, and updated imports and tool definitions to simplify production chat interfaces.
Release Overview
We've shipped a new release for the Agents SDK bringing full compatibility with AI SDK v5 and introducing automatic message migration that handles all legacy formats transparently.
This release includes improved streaming and tool support, tool confirmation detection (for "human in the loop" systems), enhanced React hooks with automatic tool resolution, improved error handling for streaming responses, and seamless migration utilities that work behind the scenes.
This makes it ideal for building production AI chat interfaces with Cloudflare Workers AI models, agent workflows, human-in-the-loop systems, or any application requiring reliable message handling across SDK versions — all while maintaining backward compatibility.
Additionally, we've updated workers-ai-provider v2.0.0, the official provider for Cloudflare Workers AI models, to be compatible with AI SDK v5.
API
useAgentChat(options)
Creates a new chat interface with enhanced v5 capabilities.
Automatic Tool Resolution
Tools are automatically categorized based on their configuration:
// Code examples included in the release content.Message Handling
Send messages using the new v5 format with parts array:
// Code examples included in.Tool Confirmation Detection
Simplified logic for detecting pending tool confirmations:
// Code examples included.Automatic Message Migration
Seamlessly handle legacy message formats without code changes.
// Code examples included.Tool Definition Updates
Migrate tool definitions to use the new inputSchema property.
// Code examples included.Cloudflare Workers AI Integration
Seamless integration with Cloudflare Workers AI models through the updated workers-ai-provider v2.0.0.
Model Setup with Workers AI
Use Cloudflare Workers AI models directly in your agent workflows:
// Code examples included.Enhanced File and Image Support
Workers AI models now support v5 file handling with automatic conversion:
// Code examples included.Streaming with Workers AI
Enhanced streaming support with automatic warning detection:
// Code examples included.Import Updates
Update your imports to use the new v5 types:
// Code examples included.Resources
Migration Guide - Comprehensive migration documentation
AI SDK v5 Documentation - Official AI SDK migration guide
An Example PR showing the migration from AI SDK v4 to v5
GitHub Issues - Report bugs or request featuresFeedback Welcome
We'd love your feedback! We're particularly interested in feedback on:
Original source Report a problem
◦ Migration experience - How smooth was the upgrade process?
◦ Tool confirmation workflow - Does the new automatic detection work as expected?
◦ Message format handling - Any edge cases with legacy message conversion?