Total Articles: 17 from 7 sources
AWS News
1. Runtime instances: persistent compute for production AI agents on Amazon Bedrock AgentCore
Published: 2026-08-06 22:58
Summary:
Announcing runtime instances in Amazon Bedrock AgentCore—persistent, managed EC2 infrastructure for production AI agents with multi-agent collaboration, GPU support, and sessions lasting up to 14 days.
2. Amazon DynamoDB now supports real-time vector search at any scale
URL: https://aws.amazon.com/blogs/aws/amazon-dynamodb-now-supports-real-time-vector-search-at-any-scale/
Published: 2026-08-05 14:45
Summary:
DynamoDB now supports native vector search with single-digit millisecond latency at 99%+ recall It is designed for any scale, even trillions of vectors and requires zero infrastructure management.
3. AWS Weekly Roundup: Price reduction of GPT models in Bedrock, CloudWatch managed collectors for Prometheus metrics, and more (August 3, 2026)
Published: 2026-08-03 16:12
Summary:
Last week I had the joy of participating in Amazon’s “Bring Your Kids to Work Day” with my 7 year old son We commuted together into the New York City office, his first real rush hour train ride, and spent the day exploring how Amazon uses AI, machine learning, and robotics to deliver packages to […]
Dropbox Engineering
1. How our universal content processing platform Riviera evolved for AI and beyond
Published: 2026-07-20 15:00
Summary:
Riviera is the Dropbox content processing platform that’s been iteratively improving content transformation in our products for roughly a decade.
GitHub Blog
1. A guide to slash commands in the GitHub Copilot app
URL: https://github.blog/ai-and-ml/github-copilot/a-guide-to-slash-commands-in-the-github-copilot-app/
Published: 2026-08-06 19:49
Summary:
Go beyond chat in the GitHub Copilot app with these slash commands They’ll help you plan, collaborate, automate, and customize your dev workflow The post A guide to slash commands in the GitHub Copilot app appeared first on The GitHub Blog.
2. How we took malware advisories beyond npm
URL: https://github.blog/security/supply-chain-security/how-we-took-malware-advisories-beyond-npm/
Published: 2026-08-06 16:51
Summary:
GitHub malware advisories no longer stop at npm Here’s how we wired OpenSSF’s malicious-packages data into the Advisory Database, and why we built the pipeline paranoid The post How we took malware advisories beyond npm appeared first on The GitHub Blog.
3. How the GitHub legal team used Copilot CLI to streamline their workflows
Published: 2026-08-04 19:02
Summary:
Learn how to build tools to simplify how you work—without writing a single line of code The post How the GitHub legal team used Copilot CLI to streamline their workflows appeared first on The GitHub Blog.
Google Developers
1. ML Development in VS Code with Google Cloud Power: Workbench Extension Now Available
Published: 2026-08-10 10:13
Summary:
The Google Cloud Workbench Notebooks extension for VS Code has officially launched, allowing developers to connect their local IDE to scalable, cloud-based Jupyter environments This integration streamlines the machine learning lifecycle by eliminating context switching and providing direct access to high-performance Google Cloud infrastructure To support transparency and community-driven innovation, the newly released extension is fully open-sourced and available on GitHub and the VS Code Marketplace.
2. Why we built ADK 2.0
URL: https://developers.googleblog.com/why-we-built-adk-20/
Published: 2026-08-10 10:13
Summary:
Answering the questions of “why we built ADK 2.0” This explains the rationale, some of the features, and why a developer should consider upgrading This will be published the day after ADK go 2.0 launches.
3. Build agentic full-stack apps with Genkit
URL: https://developers.googleblog.com/build-agentic-full-stack-apps-with-genkit/
Published: 2026-08-10 10:13
Summary:
The open-source Genkit framework has introduced the Agents API, a full-stack tool designed to simplify the complex plumbing of conversational AI by packaging message history, tool loops, and streaming into a single interface The API supports flexible, server- or client-managed state persistence—allowing for advanced workflows like history branching, long-running detached tasks, and multi-agent coordination—while seamlessly connecting backends to frontends via a unified wire protocol Currently available in preview for TypeScript and Go, it also integrates with the Genkit Developer UI to allow developers to easily test, debug, and inspect agent snapshots without writing client code.
Meta Engineering
1. From User Sequences to Scaling Laws: A Multi-Stage Architecture for Meta’s Ads Ranking
Published: 2026-08-05 19:20
Summary:
Every day, Meta’s recommendation platforms handle billions of user interactions, generating rich temporal signals that capture individual preferences and intent across products, ads, and content In our 2024 post on sequence learning for ads recommendations, we showed how modeling the order and timing of user actions (rather than relying on static, manually engineered sparse features) […] Read More The post From User Sequences to Scaling Laws: A Multi-Stage Architecture for Meta’s Ads Ranking appeared first on Engineering at Meta.
2. GEM Training: How Meta Doubled the Efficiency of Its LLM-Scale Ads Foundation Model
Published: 2026-08-03 18:00
Summary:
Meta’s Generative Ads Recommendation Model (GEM), the foundation model behind ads recommendations across Instagram and Facebook, now trains at LLM scale on several thousand of the latest-generation GPUs This post goes into the details on how we achieved: doubling end-to-end (E2E) training efficiency to 20–25% Model FLOPs Utilization (MFU) while scaling training FLOPs 4x in […] Read More The post GEM Training: How Meta Doubled the Efficiency of Its LLM-Scale Ads Foundation Model appeared first on Engineering at Meta.
3. Exploring Hierarchical Interest Representation For Meta Ads Deep Funnel Optimization
Published: 2026-07-15 17:00
Summary:
Hierarchical Interest Representation is a research area for Meta Ads The innovations in Hierarchical Interest Representation are […] Read More The post Exploring Hierarchical Interest Representation For Meta Ads Deep Funnel Optimization appeared first on Engineering at Meta.
Netflix TechBlog
1. How and Why Netflix Built a Real-Time Distributed Graph: Part 3 — Querying the graph with gRPC…
Published: 2026-08-07 16:01
Summary:
It batches requests, runs them in parallel with graph data assembly, and degrades gracefully when an enrichment source is unavailable.When a client sends a query, the request flows through these layers in sequence: the Query Service parses the request into an execution plan, the execution engine walks the graph level by level through the Storage Abstraction Layer, and if enrichments are requested, the Enrichment Layer fetches and merges external data before the response is serialized back to the client.Now, with that mental model in place, let’s follow a query through this system and see how these choices play out in practice.Executing Queries Efficiently: Following a Query’s JourneyTo see how the RDG query layer works in practice, let’s follow a single query end-to-end and focus on one question: how do we make every step fast?We’ll reuse the deep-narrow example from above:For Account X, show me the Stranger Things viewing history across all profiles: which profiles watched it, what they watched, and when.In graph terms, this becomes a 2‑hop traversal:Account X → has_profile → ProfilesProfiles → started_watching → Content (filtered for “Stranger Things”)We’ll walk through how this query moves through the layers we described above:Reading and interpreting the requestReading from storage efficientlyExecuting traversal with breadth‑first levelsRunning many operations in parallel, but safelyFiltering smartly to keep only what mattersMaking repeat queries faster with cachingBy the end, we’ll see how a 2-hop query like our Stranger Things example, with streaming, filtering, and parallel execution, can complete in under 100ms.Step 1: Reading the Request: Deciding What the Query Really WantsEvery query starts as a gRPC request The query was:For Account X, show me the Stranger Things viewing history across all profiles: which profiles watched it, what they watched, and whenSo we still need to fetch each profile’s history and filter it down to Stranger Things sessions That’s why our Stranger Things query completes in under 100ms.Step 4: Parallel Execution: Doing Many Things at Once, SafelyBreadth-first traversal enables parallel work at each level, which is the key to low latency.At Level 2 of our Stranger Things query, we fetch started_watching edges for each profile
2. Modeling Device Capabilities for Analytics
Published: 2026-07-31 16:01
Summary:
To ensure the best possible user experience, we rely on a deep understanding of device capabilities We use a cumulative table to process information about the device’s capabilities By relying on data-driven insights, we can make informed decisions about which features to enable on specific devices, ensuring both performance and reliability.Modeling Device Capabilities for Analytics was originally published in Netflix TechBlog on Medium, where people are continuing the conversation by highlighting and responding to this story.
3. GenRec: Towards LLM-Native Recommendation at Netflix
Published: 2026-07-30 20:10
Summary:
Raw logs of user history, item metadata, and context are transformed via context engineering into natural-language prompts and fed into the GenRec, which runs on vLLM in prefill-only mode and outputs scores for each catalog item, yielding a recommendation ranking.At a high level, GenRec:Verbalizes user histories, item metadata, and context as text.Post‑trains a Netflix‑adapted foundation LLM for ranking.Adds a catalog‑aware scoring head over Netflix titles.Uses reward signals to align with long‑term member value and business goals.Runs in prefill‑only mode on Netflix’s LLM serving stack for cost efficiency.In a large‑scale A/B test against a well‑tuned production ranker, GenRec achieves statistically significant improvements in both short‑term and long‑term online metrics, while using only a small fraction of the Phase‑2 labeled data and input signals As we increased Phase‑2 training data and enriched the input signals, GenRec’s offline metrics continued to improve.Online, we ran a large A/B test on batch‑compute recommendation surfaces, covering ~10% of Netflix traffic over ~4 weeks By verbalizing user histories, context, and item metadata, adding a catalog‑aware ranking head, using reward‑weighted objectives aligned to long‑term satisfaction and business goals, and serving efficiently on our LLM infrastructure, we obtain a model that improves on a strong production ranker while using far fewer Phase‑2 labels and input signals.GenRec is an early but promising step toward a more LLM‑centric recommendation stack at Netflix
Stripe Engineering
1. Analyzing the evidence that helps businesses win “product not received” disputes
Published: 2026-07-21 00:00
Summary:
To understand what can influence win rates, we analyzed evidence packets from one million disputes over a 16-week period Here’s what the data shows and what it means for how you mitigate disputes.
Generated on 2026-08-10 10:13:51