{"id":24472435,"url":"https://github.com/captainigl00/deepseekcomputeruse","last_synced_at":"2026-05-19T06:05:52.700Z","repository":{"id":273428127,"uuid":"919684883","full_name":"CaptainIgl00/DeepseekComputerUse","owner":"CaptainIgl00","description":"Langchain Agent that can interact with a desktop environment in a secure container.","archived":false,"fork":false,"pushed_at":"2025-01-20T20:45:34.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-20T21:38:56.173Z","etag":null,"topics":["agent","computer-vision","deepseek","langchain"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CaptainIgl00.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-01-20T20:19:56.000Z","updated_at":"2025-01-20T20:48:53.000Z","dependencies_parsed_at":"2025-01-20T21:39:21.728Z","dependency_job_id":"e36b1c7c-c0a8-48b5-851d-05cf44cabfd6","html_url":"https://github.com/CaptainIgl00/DeepseekComputerUse","commit_stats":null,"previous_names":["captainigl00/deepseekcomputeruse"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CaptainIgl00%2FDeepseekComputerUse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CaptainIgl00%2FDeepseekComputerUse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CaptainIgl00%2FDeepseekComputerUse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CaptainIgl00%2FDeepseekComputerUse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CaptainIgl00","download_url":"https://codeload.github.com/CaptainIgl00/DeepseekComputerUse/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243591765,"owners_count":20315905,"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","computer-vision","deepseek","langchain"],"created_at":"2025-01-21T08:12:18.560Z","updated_at":"2026-05-19T06:05:52.667Z","avatar_url":"https://github.com/CaptainIgl00.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DeepSeek Computer Use Demo\n\n[![Tests](https://github.com/CaptainIgl00/DeepseekComputerUse/actions/workflows/test.yml/badge.svg)](https://github.com/CaptainIgl00/DeepseekComputerUse/actions/workflows/test.yml)\n[![codecov](https://codecov.io/gh/CaptainIgl00/DeepseekComputerUse/branch/main/graph/badge.svg)](https://codecov.io/gh/CaptainIgl00/DeepseekComputerUse)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit)](https://github.com/pre-commit/pre-commit)\n\nA containerized application that combines a LangChain-powered terminal assistant with a virtual desktop environment, accessible through a web browser. The assistant uses the DeepSeek LLM to understand and execute bash commands in a controlled Ubuntu environment. This project is highly inspired by the Anthropic Computer Use Demo [https://github.com/anthropics/anthropic-quickstarts/tree/main/computer-use-demo](https://github.com/anthropics/anthropic-quickstarts/tree/main/computer-use-demo).\n\n## Features\n\n- 🤖 AI-powered terminal assistant using DeepSeek LLM\n- 🖥️ Virtual Ubuntu desktop environment accessible via browser\n- 🔒 Secure containerized execution environment\n- 🌐 Web-based VNC access through noVNC\n- 🖱️ Pre-installed desktop applications (Firefox, LibreOffice, etc.)\n- 💻 Streamlit-based chat interface\n- 🧪 Comprehensive test suite with 80%+ coverage\n- 📊 Continuous Integration with GitHub Actions\n- 🔍 Code quality checks with pre-commit hooks\n\n## Prerequisites\n\n- Docker and Docker Compose\n- A DeepSeek API key\n- Python 3.12+ (for development)\n\n## Setup\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/CaptainIgl00/DeepseekComputerUse.git\ncd DeepseekComputerUse\n```\n\n2. Create a `.env` file with your DeepSeek API key:\n```bash\nDEEPSEEK_API_KEY=your_api_key_here\n```\n\n3. Build and start the container:\n```bash\ndocker-compose up --build\n```\n\n## Development Setup\n\n1. Install development dependencies:\n```bash\npip install -r requirements.txt\npip install pytest pytest-cov pytest-timeout pytest-mock pre-commit\n```\n\n2. Install pre-commit hooks:\n```bash\npre-commit install\n```\n\n3. Run tests:\n```bash\n# Run unit tests\npytest -v -m \"not integration\"\n\n# Run integration tests\npytest -v -m \"integration\"\n\n# Run all tests with coverage\npytest -v --cov=src\n```\n\n## Accessing the Application\n\nOnce the container is running, you can access:\n- Terminal assistant: http://localhost:8080\n- Virtual desktop (noVNC): http://localhost:6080\n- Streamlit interface: http://localhost:8501\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Run pre-commit hooks (`pre-commit run --all-files`)\n4. Commit your changes (`git commit -m 'Add some amazing feature'`)\n5. Push to the branch (`git push origin feature/amazing-feature`)\n6. Open a Pull Request\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaptainigl00%2Fdeepseekcomputeruse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcaptainigl00%2Fdeepseekcomputeruse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcaptainigl00%2Fdeepseekcomputeruse/lists"}