---
title: Reranking and API-based system prompt configuration in AI Search
description: Improve result accuracy with reranking and dynamically control AI Search responses by setting system prompts in API requests.
image: https://developers.cloudflare.com/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Reranking and API-based system prompt configuration in AI Search

Oct 28, 2025 

[ AI Search ](https://developers.cloudflare.com/ai-search/) 

[AI Search](https://developers.cloudflare.com/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](https://developers.cloudflare.com/ai-search/configuration/retrieval/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:

JavaScript

```
const answer = await env.AI.autorag("my-autorag").aiSearch({  query: "How do I train a llama to deliver coffee?",  model: "@cf/meta/llama-3.3-70b-instruct-fp8-fast",  reranking: {    enabled: true,    model: "@cf/baai/bge-reranker-base",  },});
```

#### Set system prompts in API

Previously, [system prompts](https://developers.cloudflare.com/ai-search/configuration/retrieval/system-prompt/) 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:

JavaScript

```
// Dynamically set query and system prompt in AI Searchasync function getAnswer(query, tone) {  const systemPrompt = `You are a ${tone} assistant.`;
  const response = await env.AI.autorag("my-autorag").aiSearch({    query: query,    system_prompt: systemPrompt,  });
  return response;}
// Example usageconst query = "What is Cloudflare?";const tone = "friendly";
const answer = await getAnswer(query, tone);console.log(answer);
```

Learn more about [Reranking](https://developers.cloudflare.com/ai-search/configuration/retrieval/reranking/) and [System Prompt](https://developers.cloudflare.com/ai-search/configuration/retrieval/system-prompt/) in AI Search.

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://developers.cloudflare.com/changelog/post/2025-10-27-ai-search-reranking-system-prompt/#page","headline":"Reranking and API-based system prompt configuration in AI Search · Changelog","description":"Improve result accuracy with reranking and dynamically control AI Search responses by setting system prompts in API requests.","url":"https://developers.cloudflare.com/changelog/post/2025-10-27-ai-search-reranking-system-prompt/","inLanguage":"en","image":"https://developers.cloudflare.com/changelog-preview.png","dateModified":"2025-10-28","datePublished":"2025-10-28","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
```
