{"id":24627834,"url":"https://github.com/e2b-dev/open-computer-use","last_synced_at":"2025-06-18T14:39:40.925Z","repository":{"id":263662832,"uuid":"881448795","full_name":"e2b-dev/open-computer-use","owner":"e2b-dev","description":"Secure AI computer use powered by E2B Desktop Sandbox","archived":false,"fork":false,"pushed_at":"2025-01-25T01:36:06.000Z","size":1512,"stargazers_count":579,"open_issues_count":2,"forks_count":78,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-01-25T02:24:19.603Z","etag":null,"topics":["agent","ai","anthropic","claude","computer-use","llm"],"latest_commit_sha":null,"homepage":"https://e2b.dev","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/e2b-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-31T15:39:29.000Z","updated_at":"2025-01-25T01:36:10.000Z","dependencies_parsed_at":"2024-11-19T19:38:28.780Z","dependency_job_id":"604d0ff3-c8b1-43d1-9b7c-543227ba4485","html_url":"https://github.com/e2b-dev/open-computer-use","commit_stats":null,"previous_names":["e2b-dev/secure-computer-use","e2b-dev/open-computer-use"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e2b-dev%2Fopen-computer-use","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e2b-dev%2Fopen-computer-use/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e2b-dev%2Fopen-computer-use/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/e2b-dev%2Fopen-computer-use/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/e2b-dev","download_url":"https://codeload.github.com/e2b-dev/open-computer-use/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":235538037,"owners_count":19006076,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agent","ai","anthropic","claude","computer-use","llm"],"created_at":"2025-01-25T05:03:28.222Z","updated_at":"2025-01-25T05:03:29.242Z","avatar_url":"https://github.com/e2b-dev.png","language":"Python","readme":"# Open Computer Use\n\nA secure cloud Linux computer powered by [E2B Desktop Sandbox](https://github.com/e2b-dev/desktop/) and controlled by open-source LLMs.\n\nhttps://github.com/user-attachments/assets/3837c4f6-45cb-43f2-9d51-a45f742424d4\n\n## Features\n\n- Uses [E2B](https://e2b.dev) for secure [Desktop Sandbox](https://github.com/e2b-dev/desktop)\n- Supports [Meta Llama](https://www.llama.com/), [OS-Atlas](https://osatlas.github.io/)/[ShowUI](https://github.com/showlab/ShowUI) and [any LLM you want to integrate](#llm-support)!\n- Operates the computer via the keyboard, mouse, and shell commands\n- Live streams the display of the sandbox on the client computer\n- User can pause and prompt the agent at any time\n- Uses Ubuntu, but designed to work with any operating system\n\n## Design\n\n![Open Computer Use Architecture](./assets/architecture.png#gh-dark-mode-only)\n![Open Computer Use Architecture](./assets/architecture-light.png#gh-light-mode-only)\n\nThe details of the design are laid out in this article: [How I taught an AI to use a computer](https://blog.jamesmurdza.com/how-i-taught-an-ai-to-use-a-computer)\n\n## LLM support\n\nOpen Computer Use is designed to easily support new LLMs. The LLM and provider combinations are are defined in [models.py](/blob/master/os_computer_use/models.py). Following the comments in this file, one can easily add any LLM and provider that adheres to the OpenAI API specification.\n\nThe list of tested models and providers currently includes:\n\n| **Type**    | **Model**          | **Providers**                        |\n|-------------|--------------------|---------------------------------------|\n| Vision      | **Llama 3.2**      | **Fireworks**, OpenRouter, Llama API     |\n| Vision      | Gemini 2.0 Flash   | Google                             |\n| Action      | **Llama 3.3**      | **Fireworks**, Llama API                 |\n| Action      | DeepSeek           | DeepSeek                             |\n| Action      | Gemini 2.0 Flash   | Google                             |\n| Grounding   | **OS-Atlas**       | **HuggingFace Spaces**                   |\n| Grounding   | ShowUI             | HuggingFace Spaces                   |\n\nThe following lines of code in [models.py](/blob/master/os_computer_use/models.py) define the default LLMs and providers:\n\n```\ngrounding_model = OSAtlasProvider()\nvision_model = FireworksProvider(\"llama3.2\")\naction_model = FireworksProvider(\"llama3.3\")\n```\n\nIf you add a new model or provider, please make a PR to this repository!\n\n## Get started\n\n### Prerequisites\n\n- Python 3.10 or later\n- [git](https://git-scm.com/)\n- [E2B API key](https://e2b.dev/dashboard?tab=keys)\n- [Fireworks API key](https://fireworks.ai/account/api-keys)\n\n### 1. Install the prerequisites\n\nIn your terminal:\n\n```sh\nbrew install poetry ffmpeg\n```\n\n### 2. Clone the repository\n\nIn your terminal:\n\n```sh\ngit clone https://github.com/e2b-dev/open-computer-use/\n```\n\n### 3. Set the environment variables\n\nEnter the project directory:\n\n```\ncd open-computer-use\n```\n\nCreate a `.env` file in `open-computer-use` and set the following:\n\n```sh\n# Get your API key here - https://e2b.dev/\nE2B_API_KEY=\"your-e2b-api-key\"\nFIREWORKS_API_KEY=\"your-fireworks-api-key\"\n```\n\n### 4. Start the web interface\n\nRun the following command to start the agent:\n\n```sh\npoetry install\n```\n\n```sh\npoetry run start\n```\n\nThe agent will start and prompt you for its first instruction.\n","funding_links":[],"categories":["HarmonyOS","Python","GUI \u0026 Computer Control AI Agents"],"sub_categories":["Windows Manager","Desktop Automation"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe2b-dev%2Fopen-computer-use","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fe2b-dev%2Fopen-computer-use","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fe2b-dev%2Fopen-computer-use/lists"}