Microsoft said to be developing ai reasoning models to compes with openai
Microsoft is developing in-House Artificial Intelligence Reasoning Models to Compete With Openai and May Sell Them to Developers, The Information reported on Friday, Citing a Person Involved in this Involved Redmond, Washington-Based Company, A Major Backer of Openai, Has Begun Testing Out Models from Xai, Meta and Deepsek as Potential Openai Replacements in Copilot, According to the report. Looking to Reduce its dependence on the chatgpt maker, even as it early partnership with the startup put it in a Leadership position position Among Big Tech Peers in the Lucrative Ai Race.
Reutors AI RECE exclusively in December that the company has been working on adding internal and third-party ai models to power its flagship ai product ai product a product microsoft 365 copilot to diversify from the current up Technology from Openai and Reduce Costs.When Microsoft Announced 365 Copilot in 2023, A Major Selling Point was that it used open-4 model.according to the information report, Microsopt AI Division, LED by Mustafa Suleyman, Has Completed The Training of a Family of Models, Internally Referred to as Mai, Whoch Perform Nearly as Well as the Leading Models from Openai and Anthropic On Commonly Accepted benchmarks.the tam is also training models, which use chain-off-thout techniques-a reasoning process that generates answers with intermediatee salving Complex Problems – That Cold Compete Directly with Openai’s, The report said.suleyman’s team is alredy experimenting with swapping out the mai models, fur larger thehan an earlar than an earlar than an early of microsopt Models Called Phi, For Openai’s Models in Copilot, The Report said.The company is considering the mai models later Weave these models into their own apps, the report said.microsoft and openai did not immediatily respond to reuters’ requests for comment. © Thomson Reuters 2025 (Tagstotranslate) Reasoning Models Compete Openai Microsoft (T) Microsoft 365 Copilot (T) Openai (T) Chatgpt (T) Artificial Intelligence (T) AI
Credit-Read More
// 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);
Random Latest Posts Display // 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();