- Create new environment with python>=3.7.7
- Execute this command:
pip install -r requirements.txt
- Lastly, start the assistant with
python __init__.py
B - browser
C - console
- How are you?
- What time is it?
- Who made you?
- Where is? - Google Maps (B).
- What is the weather in? - OpenWeatherMap (C).
- Search? - Google (B).
- Calendar? - GCal (show next 5/10 events) (C).
- Sites? -> list possibilities.
- "Reddit"/"Golem" etc. to choose which site to open BY NAME (B).
- Open - Spotify/Messenger.
- Chuck Norris? - get a random joke (C).
- Numbers? - random number facts (C).
- Advice? - random advice (C).
- Who is + 2 names? - wikipedia (C)
- Stop Listening/Thank you.
- used to open browser like that location_url = "https://www.google.com/search?q=" + sentence site_arg = '/usr/bin/open -a "/Applications/Brave Browser.app" ' + location_url os.system(site_arg)
-> changed to: webbrowser.open(URL)
- Pick a random name from a list to call me.
- changed "news" to be "sites" command.
- changed the site references from triggers "1/2/3" to their respective names "reddit/golem" etc.
- changed some variables to constants.
- added a configurations file, moved the constants there.
- added json file for the greeting names/responses.
- added a requirements file.