├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── config.yml ├── data ├── jarvis.brn └── jarvis.cred ├── excp ├── __init__.py └── exception.py ├── jarvis.py ├── requirements.txt ├── src ├── __init__.py ├── brain.py ├── common.py ├── commonsense.py ├── google_stt.py ├── google_tts.py ├── microphone.py ├── network.py ├── some_functions.py ├── wikipedia │ ├── __init__.py │ ├── exceptions.py │ ├── util.py │ └── wikipedia.py └── wolfram.py └── wav ├── sleepy ├── sleep1.wav ├── sleep2.wav ├── sleep3.wav ├── sleep4.wav └── sleep5.wav ├── sorry ├── sorry1.wav ├── sorry2.wav ├── sorry3.wav ├── sorry4.wav └── sorry5.wav └── uhoh └── sorry4.wav /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/config.yml -------------------------------------------------------------------------------- /data/jarvis.brn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/data/jarvis.brn -------------------------------------------------------------------------------- /data/jarvis.cred: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/data/jarvis.cred -------------------------------------------------------------------------------- /excp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /excp/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/excp/exception.py -------------------------------------------------------------------------------- /jarvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/jarvis.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/brain.py -------------------------------------------------------------------------------- /src/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/common.py -------------------------------------------------------------------------------- /src/commonsense.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/commonsense.py -------------------------------------------------------------------------------- /src/google_stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/google_stt.py -------------------------------------------------------------------------------- /src/google_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/google_tts.py -------------------------------------------------------------------------------- /src/microphone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/microphone.py -------------------------------------------------------------------------------- /src/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/network.py -------------------------------------------------------------------------------- /src/some_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/some_functions.py -------------------------------------------------------------------------------- /src/wikipedia/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/wikipedia/__init__.py -------------------------------------------------------------------------------- /src/wikipedia/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/wikipedia/exceptions.py -------------------------------------------------------------------------------- /src/wikipedia/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/wikipedia/util.py -------------------------------------------------------------------------------- /src/wikipedia/wikipedia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/wikipedia/wikipedia.py -------------------------------------------------------------------------------- /src/wolfram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/src/wolfram.py -------------------------------------------------------------------------------- /wav/sleepy/sleep1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sleepy/sleep1.wav -------------------------------------------------------------------------------- /wav/sleepy/sleep2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sleepy/sleep2.wav -------------------------------------------------------------------------------- /wav/sleepy/sleep3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sleepy/sleep3.wav -------------------------------------------------------------------------------- /wav/sleepy/sleep4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sleepy/sleep4.wav -------------------------------------------------------------------------------- /wav/sleepy/sleep5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sleepy/sleep5.wav -------------------------------------------------------------------------------- /wav/sorry/sorry1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sorry/sorry1.wav -------------------------------------------------------------------------------- /wav/sorry/sorry2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sorry/sorry2.wav -------------------------------------------------------------------------------- /wav/sorry/sorry3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sorry/sorry3.wav -------------------------------------------------------------------------------- /wav/sorry/sorry4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sorry/sorry4.wav -------------------------------------------------------------------------------- /wav/sorry/sorry5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/sorry/sorry5.wav -------------------------------------------------------------------------------- /wav/uhoh/sorry4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debugger22/Jarvis/HEAD/wav/uhoh/sorry4.wav --------------------------------------------------------------------------------