Settings

Theme

Jarvis: Personal Assistant in Python

pythonspot.com

65 points by gitcommit 10 years ago · 16 comments

Reader

adenadel 10 years ago

This is a small python script that uses Google Text To Speech API to identify what you say, and if it is one of three questions ("how are you", "what time is it", "where is") it gives canned responses. This is along the lines of the beginnings of very simple expert system, and seems like a fairly cool project to give someone when they are learning to program. This isn't exactly what I expected from a personal assistant called Jarvis, however.

schlomok 10 years ago

Page has been suspended.

amsheehan 10 years ago

Jasper is another cool project that has a bit better of a foundation. You can make little Python modules for pretty much anything.

anon86ksdf09 10 years ago

anyone get it working on a macbook?

jarvis.py", line 53, in <module> data = recordAudio() File "jarvis2.py", line 19, in recordAudio audio = r.listen(source) File "/Users/user/anaconda/lib/python2.7/site-packages/speech_recognition/__init__.py", line 377, in listen buffer = source.stream.read(source.CHUNK, exception_on_overflow = False) TypeError: read() got an unexpected keyword argument 'exception_on_overflow'

  • MikeTLive 10 years ago

    go to cache, copy cache

      $ mkdir jarvis; cd jarvis
      $ vi jarvis.py
    
    paste, then cleanup and read closely for badness

      $ chmod +x jarvis.py
      $ brew doctor
      $ brew update
      $ brew install python3
      $ pip  install --upgrade pip
      $ pip3 install --upgrade pip setuptools
      $ pip3 install --upgrade gTTS
      $ pip  install --upgrade gTTS
      $ brew install portaudio
      $ pip3 install pyaudio
      $ pip  install SpeechRecognition
      $ brew install flac
      $ brew install mpg321
    
      $ ./jarvis.py 
      Hi Mike, what can I do for you?
      Say something!
      You said: how are you
      I am fine
      Say something!
      ^
diegorbaquero 10 years ago

Hit me up if you want free hosting.

robbiet480 10 years ago

Link is down

  • tsaprailis 10 years ago
    • MikeTLive 10 years ago

      I used the cached script and after installing the various Python libs as it complained got it working. A neat little kit. Now I need to make it always running and listening for my command. "Jarvis?" "yes, sir?" "Jarvis, <commands>" To have it awaken and process follow on commands.

      Only process when the double Jarvis exchange has occurred. And then keep on processing, waiting for more leading "Jarvis, <command>"

      Putting this onto a RaspberryPi would be cool. Could even train it verbally. "Jarvis, 'let's try something new'"

      This is such a cool little simple toy with great potential.

  • civilian 10 years ago

    Here's a link to the general project: http://madlag.github.io/jarvis/

    ///edit: hmmm this might be a different project. Yay for namespace collisions...

    I think this is the actual personal assistant project: https://github.com/ajminich/Jarvis

    • erikb 10 years ago

      The jarvis github page talks about an IDE like debugging tool though, not a personal assistant.

    • soperj 10 years ago

      That one says it's python...

      • gitcommitOP 10 years ago

        Those ones are other programs. Server seems ddosed by silicon valley. Try the cached version

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection