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 - AI Search (formerly AutoRAG) now with More Models To Choose From

9mo ago

Source

CloudflareAI Search - AI Search (formerly AutoRAG) now with More Models To Choose Fromcloudflare.com
Snippet from the RSS feed
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: export default { async fetch ( request , env ) { // Query your AI Search instance with a natural language question to an OpenAI model const result = await env . AI . autorag ( "my-ai-search" ) . aiSearch ( { query : "What's new for Cloudflare Birthday Week?" , model : "openai/gpt-5" } ) ; // Return only the generated answer as plain text return new Response ( result . response , { headers : { "Content-Type" : "text/plain" }, } ) ; }, }; 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!

You might also wanna read

Comments

Sign in to join the conversation.

No comments yet. Be the first.