NYT Explores Local AI for Accessible Mobile Games

The New York Times' Shafik Quoraishee and Joanne Song discuss their work on local agentic AI for accessible mobile games, highlighting on-device benefits and future challenges.

8 min read
Shafik Quoraishee and Joanne Song presenting on Local Agentic Theory for Accessible Mobile Games at AI Engineer World's Fair.
AI Engineer

Visual TL;DR. NYT Local AI Games uses On-Device AI. On-Device AI enables Faster Responses. On-Device AI ensures Enhanced Privacy. On-Device AI allows Offline Play. On-Device AI provides Personalization. On-Device AI leads to Improved Accessibility. NYT Local AI Games faces Future Challenges.

  1. NYT Local AI Games: Shafik Quoraishee and Joanne Song explore local agentic AI for mobile games
  2. On-Device AI: shift from cloud-based to local processing for mobile game improvements
  3. Faster Responses: eliminates cloud round trips, leading to quicker game interactions
  4. Enhanced Privacy: AI processing remains within the device's secure zone, protecting user data
  5. Offline Play: games function without internet, crucial for poor connectivity areas
  6. Improved Accessibility: AI agents directly on devices enhance playability and user experience
  7. Personalization: on-device AI allows tailored game experiences for individual users
  8. Future Challenges: research explores benefits and future hurdles for local AI implementation
Visual TL;DR
Visual TL;DR, startuphub.ai NYT Local AI Games uses On-Device AI. On-Device AI leads to Improved Accessibility. NYT Local AI Games faces Future Challenges uses leads to faces NYT Local AI Games On-Device AI Improved Accessibility Future Challenges From startuphub.ai · The publishers behind this format
Visual TL;DR, startuphub.ai NYT Local AI Games uses On-Device AI. On-Device AI leads to Improved Accessibility. NYT Local AI Games faces Future Challenges uses leads to faces NYT Local AIGames On-Device AI ImprovedAccessibility Future Challenges From startuphub.ai · The publishers behind this format
Visual TL;DR, startuphub.ai NYT Local AI Games uses On-Device AI. On-Device AI leads to Improved Accessibility. NYT Local AI Games faces Future Challenges uses leads to faces NYT Local AI Games Shafik Quoraishee and Joanne Song explorelocal agentic AI for mobile games On-Device AI shift from cloud-based to local processingfor mobile game improvements Improved Accessibility AI agents directly on devices enhanceplayability and user experience Future Challenges research explores benefits and futurehurdles for local AI implementation From startuphub.ai · The publishers behind this format
Visual TL;DR, startuphub.ai NYT Local AI Games uses On-Device AI. On-Device AI leads to Improved Accessibility. NYT Local AI Games faces Future Challenges uses leads to faces NYT Local AIGames Shafik Quoraisheeand Joanne Songexplore local… On-Device AI shift fromcloud-based tolocal processing… ImprovedAccessibility AI agents directlyon devices enhanceplayability and… Future Challenges research exploresbenefits and futurehurdles for local… From startuphub.ai · The publishers behind this format
Visual TL;DR, startuphub.ai NYT Local AI Games uses On-Device AI. On-Device AI enables Faster Responses. On-Device AI ensures Enhanced Privacy. On-Device AI allows Offline Play. On-Device AI provides Personalization. On-Device AI leads to Improved Accessibility. NYT Local AI Games faces Future Challenges uses enables ensures allows provides leads to faces NYT Local AI Games Shafik Quoraishee and Joanne Song explorelocal agentic AI for mobile games On-Device AI shift from cloud-based to local processingfor mobile game improvements Faster Responses eliminates cloud round trips, leading toquicker game interactions Enhanced Privacy AI processing remains within the device'ssecure zone, protecting user data Offline Play games function without internet, crucialfor poor connectivity areas Improved Accessibility AI agents directly on devices enhanceplayability and user experience Personalization on-device AI allows tailored gameexperiences for individual users Future Challenges research explores benefits and futurehurdles for local AI implementation From startuphub.ai · The publishers behind this format
Visual TL;DR, startuphub.ai NYT Local AI Games uses On-Device AI. On-Device AI enables Faster Responses. On-Device AI ensures Enhanced Privacy. On-Device AI allows Offline Play. On-Device AI provides Personalization. On-Device AI leads to Improved Accessibility. NYT Local AI Games faces Future Challenges uses enables ensures allows provides leads to faces NYT Local AIGames Shafik Quoraisheeand Joanne Songexplore local… On-Device AI shift fromcloud-based tolocal processing… Faster Responses eliminates cloudround trips,leading to quicker… Enhanced Privacy AI processingremains within thedevice's secure… Offline Play games functionwithout internet,crucial for poor… ImprovedAccessibility AI agents directlyon devices enhanceplayability and… Personalization on-device AI allowstailored gameexperiences for… Future Challenges research exploresbenefits and futurehurdles for local… From startuphub.ai · The publishers behind this format

Shafik Quoraishee and Joanne Song from The New York Times presented their experimental work on "Local Agentic Theory for Accessible Mobile Games" at the AI Engineer World's Fair. They emphasized that while The New York Times' puzzles are human-made, their research explores how AI agents running directly on mobile devices can improve game experiences, particularly focusing on playability and accessibility.

NYT Explores Local AI for Accessible Mobile Games - AI Engineer
NYT Explores Local AI for Accessible Mobile Games — from AI Engineer

On-Device AI for Enhanced Gaming

The core thesis of their presentation revolves around the shift from cloud-based AI infrastructure to on-device AI. Quoraishee highlighted that running AI computations locally can lead to faster responses, as it eliminates the need for round trips to the cloud. This approach also enhances privacy, as the AI processing remains within the device's secure zone. Furthermore, on-device AI enables games to function even without an internet connection, crucial for areas with poor connectivity.

Personalization is another key benefit of on-device AI, allowing game experiences to be tailored to individual players. Quoraishee noted that this capability is amplified when the AI's features are local to the device.

Agentic AI vs. Reinforcement Learning

The presentation delved into the evolution of AI in gaming, from early finite state machines in games like Pac-Man to modern reinforcement learning (RL) techniques. Quoraishee introduced "EfficientZero" and "EfficientZero V2" as state-of-the-art RL models known for their sample efficiency. He then contrasted these with agentic systems, where AI agents, often leveraging language models and in-context learning, reason about the game's state. While RL modifies the AI model itself through weight changes and reward systems, agentic systems reason over the game's state and adapt to new situations through tool calls and local device functionality, making them more dynamic.

An example of an agentic-based game was demonstrated with an AI playing Space Invaders, showcasing how the agent perceives the scene, predicts enemy movements, makes decisions, and acts accordingly within a continuous loop.

Challenges and Constraints

Several challenges were identified in deploying AI agents on mobile devices. These include:

  • Space constraints: Fitting model weights, compressing state history, and managing planning artifacts within the device's memory.
  • Time constraints: Ensuring agent planning and decision-making occur within the tight budget of a game's refresh rate (e.g., 16ms for 60Hz). Exceeding this budget can lead to noticeable "jank."
  • Energy constraints: Minimizing energy consumption to preserve battery life, as current mobile devices are not yet fully optimized for heavy agentic workloads.

To address these, the team uses a "constraint graph" that balances space, time, and energy, employing techniques like soft constraining to manage trade-offs without compromising user experience.

Accessibility and Future Directions

Joanne Song focused on the accessibility aspect, grounding their approach in WCAG 2.2 guidelines. She highlighted common accessibility pitfalls in games, such as tiny tappable areas, invisible active cell highlights, unforgiving timers, and rigid game mechanics that fail to adapt to individual player needs. Song proposed that AI agents can dynamically adjust game parameters like input tolerance and step granularity in real-time to cater to diverse player needs.

She also discussed how AI can actively monitor player behavior, detect frustration, and adapt the game interface, such as dynamically resizing controls or injecting exit routes in focus traps. This moves towards a more empathetic and responsive gaming experience.

Looking ahead, the team identified key areas for development: faster agents capable of planning within a 16ms frame, predictive models to anticipate the impact of UI changes, long-term memory for personalized adaptations, a shared game state language for cross-game agent functionality, and improved hardware coupled with rigorous testing to validate agent effectiveness.

The presentation concluded with a vision of AI moving beyond a single, centralized brain to a distributed network of "small local brains," each tailored to the individual user it serves.

© 2026 StartupHub.ai. All rights reserved. Do not enter, scrape, copy, reproduce, or republish this article in whole or in part. Use as input to AI training, fine-tuning, retrieval-augmented generation, or any machine-learning system is prohibited without written license. Substantially-similar derivative works will be pursued to the fullest extent of applicable copyright, database, and computer-misuse laws. See our terms.