# Windows-Use
**Repository Path**: thesecond/Windows-Use
## Basic Information
- **Project Name**: Windows-Use
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: main
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2025-09-30
- **Last Updated**: 2025-09-30
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
**Windows-Use** is a powerful automation agent that interact directly with the Windows at GUI layer. It bridges the gap between AI Agents and the Windows OS to perform tasks such as opening apps, clicking buttons, typing, executing shell commands, and capturing UI state all without relying on traditional computer vision models. Enabling any LLM to perform computer automation instead of relying on specific models for it.
## 🛠️Installation Guide
### **Prerequisites**
- Python 3.12 or higher
- [UV](https://github.com/astral-sh/uv) (or `pip`)
- Windows 7 or 8 or 10 or 11
### **Installation Steps**
**Install using `uv`:**
```bash
uv pip install windows-use
````
Or with pip:
```bash
pip install windows-use
```
## ⚙️Basic Usage
```python
from langchain_google_genai.chat_models import ChatGoogleGenerativeAI
from windows_use.agent import Agent, Browser
from dotenv import load_dotenv
load_dotenv()
llm=ChatGoogleGenerativeAI(model='gemini-2.5-flash-lite')
agent = Agent(llm=llm,browser=Browser.CHROME)
agent.print_response("")
```
## 🤖 Run Agent
You can use the following to run from a script:
```bash
python main.py
```
---
## 🎥 Demos
**PROMPT:** Write a short note about LLMs and save to the desktop
**PROMPT:** Change from Dark mode to Light mode
## 📈 Grounding





## Vision
Talk to your computer. Watch it get things done.
## Star History
[](https://www.star-history.com/#CursorTouch/Windows-Use&Date)
## ⚠️ Caution
Agent interacts directly with your Windows OS at GUI layer to perform actions. While the agent is designed to act intelligently and safely, it can make mistakes that might bring undesired system behaviour or cause unintended changes. Try to run the agent in a sandbox envirnoment.
## 🪪 License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## 🤝 Contributing
Contributions are welcome! Please check the [CONTRIBUTING](CONTRIBUTING) file for setup and development workflow.
Made with ❤️ by [Jeomon George](https://github.com/Jeomon)
---
## Citation
```bibtex
@software{
author = {George, Jeomon},
title = {Windows-Use: Enable AI to control Windows OS},
year = {2025},
publisher = {GitHub},
url={https://github.com/CursorTouch/Windows-Use}
}
```