Microsoft Brings Semantic Indexing to Windows Search on Snapdragon-Powered Copilot+ PCs

Microsoft Brings Semantic Indexing to Windows Search on Snapdragon-Powered Copilot+ PCs

Microsoft released a new Windows 11 Insider Preview build on Friday. The new update improves the Windows Search feature on Snapdragon-powered Copilot+ PCs by adding support for semantic indexing. These artificial intelligence (AI) enabled devices will now support natural language or semantic searches for files stored locally. This means users can type conversational commands to look for a particular file, image, or settings option. Microsoft also highlighted that the Copilot-powered feature will arrive on AMD and Intel-based Copilot+ PCs with a future update.Windows 11 to Add Support for Natural Language Search QueriesIn a blog post, Microsoft highlighted that the new feature is coming to PCs powered by the Snapdragon The feature is part of the Windows 11 Insider preview build 26120.2992 (KB5050083), currently available in the Dev Channel. It might take several weeks or months until the feature is rolled out to all users.Traditionally, searching for a file on Windows devices requires typing specific keywords related to the name of the file. However, the new Windows Search on supported devices will also support semantic indexing. This means users can simply describe the file they are looking for, and the Copilot-powered device will be able to understand the context to find it.Windows 11 is expected to receive improvements to the Search featurePhoto Credit: Microsoft Users can utilize this feature in File Explorer, the Windows search box placed on the taskbar, or in the Settings app. For instance, users can type “bridge at sunset” to find images that include sunsets and a bridge. Similarly, users can type “change my theme” in Settings, and Copilot will be able to surface the relevant settings. Notably, the feature is powered locally, so it will work despite the device not being connected to the Internet.There are some limitations in the feature in its preview state. Currently, the feature will only work for files saved locally in indexed locations on the PC. Users can manually adjust the indexed locations by going to Settings > Privacy & security > Searching Windows. Turning on the Enhanced option will automatically index the entire PC. Microsoft stated that in the future, the feature can also be used to search for documents and photos saved in cloud storage.Similarly, Settings-related searches will only work within the Settings app. In the future, the tech giant will add the ability to search for the setting directly from the taskbar search box. Additionally, the feature currently only supports Chinese, English, French, German, Japanese, and Spanish languages. It also supports .txt, .pdf, .docx, .doc, .rtf, .pptx, .ppt, .xls, .xlsx formats for documents and .jpg/.jpeg, .png, .gif, .bmp, .ico formats for images.

Credit-Read More

News kiosk Latest Posts

// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts

// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);

// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);

// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;

// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `

${description} Read more

`;

// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}

// Call the function to fetch and display the latest posts
fetchLatestPosts();

News kiosk- Are You Making These Common Mistakes? Click below to Learn More

Secret That Everyone Is Talking About

If you want to dive deeper into the topic, click on Read More:

Gardening with Ecorganicas: Your Source for Organic Gardening Tips
Financial potential with expert tips on budgeting, investing, and saving
Unlock the Hidden Truth: Click to Reveal!

Share to Spread

Leave a Reply

Your email address will not be published. Required fields are marked *