Windows-Use: an AI agent that interacts with Windows at GUI layer
1–10 of 30 posts
Re: Windows-Use: an AI agent that interacts with Windows at GUI layer
#2Preferably one that is similarly able to understand and interact with web page elements, in addition to app elements and system elements.
Re: Windows-Use: an AI agent that interacts with Windows at GUI layer
#3https://learn.microsoft.com/en-us/dotnet/api/microsoft.visua...
Re: Windows-Use: an AI agent that interacts with Windows at GUI layer
#4Re: Windows-Use: an AI agent that interacts with Windows at GUI layer
#5Very cool - does anyone know of an OSX equivalent? Preferably one that is similarly able to understand and interact with web page elements, in addition to app elements and system elements.
For web page elements, you could drive the browser via `do JavaScript` or use a dedicated browser MCP (Chrome DevTools MCP, Playwright MCP).
Re: Windows-Use: an AI agent that interacts with Windows at GUI layer
#6Using the UIA tree as the currency for LLMs to reason over always made more sense to me than computer vision, screenshot based approaches. It’s true that not all software exposes itself correctly via UIA, but almost all the important stuff does. VS code is one notable exception (but you can turn on accessibility support in the settings)
Re: Windows-Use: an AI agent that interacts with Windows at GUI layer
#7Re: Windows-Use: an AI agent that interacts with Windows at GUI layer
#8Using the UIA tree as the currency for LLMs to reason over always made more sense to me than computer vision, screenshot based approaches. It’s true that not all software exposes itself correctly via UIA, but almost all the important stuff does. VS code is one notable exception (but you can turn on accessibility support in the settings)
Re: Windows-Use: an AI agent that interacts with Windows at GUI layer
#9Very cool - does anyone know of an OSX equivalent? Preferably one that is similarly able to understand and interact with web page elements, in addition to app elements and system elements.