Microsoft Build 2025


A man in a dark grey sweater stands onstage in front of a large monitor with a flow chart. The onscreen title says, “Building the open agentic web.”


Microsoft Build 2025: Satya Nadella Opening Keynote





Microsoft Build 2025: Day 2 keynote recording




Highlights from Microsoft Build 2025: Satya Nadella’s Keynote Recap




Open Video: Satya Nadella at Microsoft Build 2025




Microsoft Discovery: Microsoft Build 2025




Microsoft 365 Copilot and Copilot Studio: Microsoft Build 2025




Agentic Windows: Microsoft Build 2025




GitHub Developer Advocate: Microsoft Build 2025




Stanford Medicine and the healthcare agent orchestrator: Satya Nadella at Microsoft Build 2025




AISIN helps people who are hard of hearing communicate: Satya Nadella at Microsoft Build 2025




UK Met office forecasts with Azure supercomputing: Satya Nadella at Microsoft Build 2025




Empowering teachers in Peru with Microsoft 365 Copilot Chat: Satya Nadella at Microsoft Build 2025




AI meets the NFL Combine: Satya Nadella at Microsoft Build 2025




Conversation with OpenAI CEO Sam Altman: Satya Nadella at Microsoft Build 2025




Conversation with Elon Musk: Satya Nadella at Microsoft Build 2025




Conversation with NVIDIA CEO Jensen Huang: Satya Nadella at Microsoft Build 2025




Building the agentic web: Demos from NLWeb Collaborators




How agents use structured data: GitHub example with NLWeb




Loading structured data into NLWeb using DB_load




Asking questions of your data with NLWeb and GitHub API




The Agentic Web [Part 1]




The Agentic Web: A conversation with Jay Parikh [Part 2]

function display_related_posts() { if (is_single()) { global $post; $categories = wp_get_post_categories($post->ID); if ($categories) { $args = array( 'category__in' => $categories, 'post__not_in' => array($post->ID), 'posts_per_page' => 4, 'orderby' => 'rand' ); $related_posts = new WP_Query($args); if ($related_posts->have_posts()) { echo ''; } wp_reset_postdata(); } } } add_action('wp_footer', 'display_related_posts');