These AI bots are said to be added to both Facebook and Instagram. Notably, the company added the feature to let users create AI characters last year in July, however, this feature is currently only available in the US and the created characters cannot be made public.According to a Financial Times report, the social media giant is trying to integrate AI into its platforms in different ways. It has already introduced the Meta AI chatbot, AI writing tools in Instagram DMs, AI avatars for influencers and creators, and more. Now, Connor Hayes, vice president of product for generative AI at Meta, told the publication that AI-powered user accounts are the next step for the company.“We expect these AIs to actually, over time, exist on our platforms, kind of in the same way that accounts do,” he told the publication. Explaining the vision, he reportedly added that these AI accounts will have a profile similar to human accounts complete with bios and profile pictures. They will also be able to generate and share AI content on these platforms.Hayes reportedly said that Meta has a priority project to make its platforms “more entertaining and engaging,” likely due to rising competition from TikTok and . The company is said to have decided that adding more AI tools and these AI characters could boost engagement and interaction on the Meta-owned social media apps. However, experts have reportedly highlighted several negative consequences of the move as well. One such concern includes the risk of spreading misinformation, which could see a snowball effect due to the large number of AI accounts that are all powered by hallucination-prone AI models. Another concern is the flooding of low-quality content on the platform given the lack of true creativity in the current generation of AI models. If the overall quality of content goes down, it can also turn users away from Facebook and Instagram.
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();