All Topics
All Topics
Technology
Technology
AI
AI
Business
Business
Entertainment
Entertainment
News
News
Programming
Programming
Security
Security
Science
Science
Design
Design
Environment
Environment
Finance
Finance
Crypto
Crypto
Politics
Politics
Sports
Sports
Education
Education
Gaming
Gaming
Art
Art
Music
Music
Health
Health
Books
Books
Food
Food
Travel
Travel
Personal
Personal
Bluesky
Twitter

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

8mo ago

Source

CloudflareAI Search - Reranking and API-based system prompt configuration in AI Searchcloudflare.com
Snippet from the RSS feed
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: 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 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: // Dynamically set query and system prompt in AI Search async 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 usage const query = "What is Cloudflare?" ; const tone = "friendly" ; const answer = await getAnswer ( query , tone ) ; console . log ( answer ) ; Learn more about Reranking and System Prompt in AI Search.

You might also wanna read

Comments

Sign in to join the conversation.

No comments yet. Be the first.