├── .gitignore ├── README.md ├── main.py ├── requirements.txt └── tools ├── OCR.py ├── arp_scan.py ├── duckduckgo.py ├── matrix.py ├── screenshot.py └── time.py /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llm-guy/jarvis/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llm-guy/jarvis/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llm-guy/jarvis/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/OCR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llm-guy/jarvis/HEAD/tools/OCR.py -------------------------------------------------------------------------------- /tools/arp_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llm-guy/jarvis/HEAD/tools/arp_scan.py -------------------------------------------------------------------------------- /tools/duckduckgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llm-guy/jarvis/HEAD/tools/duckduckgo.py -------------------------------------------------------------------------------- /tools/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llm-guy/jarvis/HEAD/tools/matrix.py -------------------------------------------------------------------------------- /tools/screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llm-guy/jarvis/HEAD/tools/screenshot.py -------------------------------------------------------------------------------- /tools/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llm-guy/jarvis/HEAD/tools/time.py --------------------------------------------------------------------------------