{"id":25211441,"url":"https://github.com/chorwaitong/jarvis","last_synced_at":"2026-02-25T02:33:41.906Z","repository":{"id":269292815,"uuid":"906972381","full_name":"chorwaitong/jarvis","owner":"chorwaitong","description":"The project Jarvis is a long-term personal project aimed at controlling/ automating virtually everything, currently includes computer/browser controls, simple MQTT IoT Device control, email management/automation. Using Gmail API, Gemini LLM, MQTT Integration.","archived":false,"fork":false,"pushed_at":"2025-02-18T07:56:03.000Z","size":255,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-25T11:43:48.127Z","etag":null,"topics":["assistant","automation","gemini","gemini-api","gmail","jarvis","langchain","llm","mqtt"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/chorwaitong.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-22T13:11:09.000Z","updated_at":"2025-06-17T13:44:13.000Z","dependencies_parsed_at":"2025-02-09T23:24:18.012Z","dependency_job_id":"e378474d-9a45-4d7a-8bba-d66fe95887d2","html_url":"https://github.com/chorwaitong/jarvis","commit_stats":null,"previous_names":["chorwaitong/jarvis"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chorwaitong/jarvis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chorwaitong%2Fjarvis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chorwaitong%2Fjarvis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chorwaitong%2Fjarvis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chorwaitong%2Fjarvis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chorwaitong","download_url":"https://codeload.github.com/chorwaitong/jarvis/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chorwaitong%2Fjarvis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29809086,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-24T22:43:48.403Z","status":"online","status_checked_at":"2026-02-25T02:00:07.329Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["assistant","automation","gemini","gemini-api","gmail","jarvis","langchain","llm","mqtt"],"created_at":"2025-02-10T14:15:30.635Z","updated_at":"2026-02-25T02:33:41.874Z","avatar_url":"https://github.com/chorwaitong.png","language":"Python","funding_links":["https://www.buymeacoffee.com/chorwaitong"],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://www.buymeacoffee.com/chorwaitong\" target=\"_blank\"\u003e\u003cimg src=\"https://cdn.buymeacoffee.com/buttons/default-orange.png\" alt=\"Buy Me A Coffee\" height=\"41\" width=\"174\"\u003e\u003c/a\u003e\n\n# Jarvis\n\nWatch a simple demo in Youtube:\n\n[![IMAGE ALT TEXT HERE](https://img.youtube.com/vi/gwRaSlDPZv8/0.jpg)](https://www.youtube.com/watch?v=gwRaSlDPZv8\u0026ab_channel=ChorWT)\n\nThe project **Jarvis** is a long-term personal project aimed at controlling/ automating virtually everything. In this humble beginning, the current focuses includes the following features with Gemini LLM-based LangChain, Gmail API, MQTT, and Python.\n\n---\n\n## Features\n- Desktop/computer controls such as opening music, apps, searching via web browser, etc.\n- MQTT IoT Device control, a simple one (relay control light) for now.\n- Intelligent email automation using Gemini LLM.\n- Integration with Gmail API.\n- Modular and extensible design for future automation features.\n\n---\n\n## Getting Started\n\n### Hardware:\n- ESP8266 + Relay = Bought from ([Tao Bao](https://e.tb.cn/h.TkVHVR1RKvf5a5o?tk=tzGLedFIfD3))\n  \n### Software:\n- Download ([ffmpeg](https://www.ffmpeg.org/download.html)), then extract into the folder `tools\\`\n- Follow the steps below to set up and run the project.\n\n#### 1. Create the Environment\n\nTo ensure compatibility and reproducibility, create a virtual environment using the provided `environment.yml` file.\n\n##### Steps:\n1. Clone this repository using `Git`, if `Git` is not installed, follow [Guide to install Git](https://github.com/git-guides/install-git):\n   ```bash\n   git clone https://github.com/chorwaitong/jarvis.git\n   cd jarvis\n   ```\n   \n   to update:\n   ```bash\n   git pull origin main\n   ```\n   \n3. Create the environment (I'm using Anaconda):\n   ```bash\n   conda env create -f environment.yml -n \u003cenv_name\u003e\n   ```\n   P.S.: For Ana(conda) users, if you encounter some conda verification or corrupt error, ```conda clean --all ``` might help.\n4. Activate the environment:\n   ```bash\n   conda activate \u003cenv_name\u003e\n   ```\n\n#### 2. Follow the following instructions for setting up stuffs\n- Gemini API [MUST}: Refer to ([README_GeminiAPI](https://github.com/chorwaitong/jarvis/blob/main/README_GeminiAPI.md))\n- *** The following are optional, but you will get errors when running `main.py`, for a quick start with minimal features, try `main_mini.py` instead. ***\n- Gmail Access: Refer to ([README_GMailAPI](https://github.com/chorwaitong/jarvis/blob/main/README_GMailAutomate.md))\n- For MQTT-based control of IoT devices, sign up for an MQTT Broker account, I am using HiveMQ Cloud: Refer ([HiveMQ Cloud](https://docs.hivemq.com/hivemq-cloud/quick-start-guide.html)). Next, store the credentials as environment variables as `MQTT_USERNAME` and `MQTT_PASSWORD`.\n- Update the following configuration line in the `main.py` .\n```bash\nintel['mqtt_broker'] = # The Broker url here, e.g., 'xxx.s1.eu.hivemq.cloud'\n```\n  \n#### 3. Run the Main Program\n\nOnce the setup is complete, run `python main.py` from the console, \nor\nedit the following lines of the `run.bat` file (to match with the python environment), and run it:\n   ```bash\nset CONDA_PATH1=[if using conda, the path of the conda.exe, e.g., C:\\Anaconda\\condabin\\conda]\nSET PYTHON_PATH1=[path to the python.exe of your environment, e.g., C:\\Anaconda\\envs\\jarvis\\python.exe]\n   ```\n\n---\n\n## Future Scope\n- Expand automation capabilities to handle calendar scheduling, task management, and data analysis.\n- Integrate additional APIs and frameworks.\n- Improve the learning and adaptability of Jarvis through advanced AI techniques.\n\n---\n## Credits\n- Referencing design of ([python-chat](https://github.com/burakorkmez/python-chat)) for the Jarvis app page.\n\n---\n## Contributing\nContributions are welcome! Feel free to fork the repository and submit a pull request.\n\n---\n\n## License\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchorwaitong%2Fjarvis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchorwaitong%2Fjarvis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchorwaitong%2Fjarvis/lists"}