├── .gitignore ├── README.md ├── __pycache__ ├── ai_handler.cpython-313.pyc ├── config.cpython-313.pyc ├── conversation_manager.cpython-313.pyc ├── desktop_agent.cpython-313.pyc ├── jarvis.cpython-313.pyc ├── speech_handler.cpython-313.pyc └── tools.cpython-313.pyc ├── ai_handler.py ├── config.py ├── conversation_manager.py ├── desktop_agent.py ├── jarvis.py ├── main.py ├── requirements.txt ├── speech_handler.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/ai_handler.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/__pycache__/ai_handler.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/config.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/__pycache__/config.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/conversation_manager.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/__pycache__/conversation_manager.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/desktop_agent.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/__pycache__/desktop_agent.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/jarvis.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/__pycache__/jarvis.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/speech_handler.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/__pycache__/speech_handler.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/tools.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/__pycache__/tools.cpython-313.pyc -------------------------------------------------------------------------------- /ai_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/ai_handler.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/config.py -------------------------------------------------------------------------------- /conversation_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/conversation_manager.py -------------------------------------------------------------------------------- /desktop_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/desktop_agent.py -------------------------------------------------------------------------------- /jarvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/jarvis.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/requirements.txt -------------------------------------------------------------------------------- /speech_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/speech_handler.py -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VineeTagarwaL-code/jarvis/HEAD/tools.py --------------------------------------------------------------------------------