You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great to have a desktop voice assistant who could perform tasks like sending email, playing music, search wikipedia on its own when we ask it to. This desktop assistant does exactly that for the user.
6
6
7
-
# What tasks can it perform? #
7
+
8
+
# What tasks can it perform?
8
9
9
10
1. It can send emails on your behalf.
10
11
2. It can search wikipedia and read the first few lines for you.
@@ -14,27 +15,55 @@ It would be great to have a desktop voice assistant who could perform tasks like
14
15
6. Tell date and time for you.
15
16
7. Open apps on your device. (other.txt)
16
17
17
-
# How to use #
18
+
19
+
# How to use
18
20
19
21
1. Start the assistant.
20
22
2. Keep giving the required commands
21
23
3. If done say 'no thanks' and the assistant will stop itself
22
24
23
-
# Check requirements.txt and important.txt before using the assistant #
25
+
# Check requirements.txt and important.txt before using the assistant
24
26
25
-
# Side note #
27
+
28
+
# Side note
26
29
27
30
Make sure you set Master as your name. (line 21)
28
31
Enter the email and app password (check important,txt) (line 63)
29
32
Also before making it read any pdf, enter the name of the pdf. (line 70)
30
-
Check other.txt for opening some apps on your device.
33
+
You need to be logged into whatsapp for using the assistant to send whatsapp messages.
34
+
31
35
32
-
# Module used #
36
+
# Additional features:
37
+
You can use it to open apps on your device like word, one note, notepad, VS code etc
38
+
The path will vary from user to user
39
+
Here is the code you can use:
40
+
41
+
import os
42
+
elif 'Open <Appname>' in query:
43
+
path= "Location of the application"
44
+
os.startfile(path)
45
+
46
+
47
+
# For using the mailSent function:
48
+
Here for making the sent Email function work, there are certain changes that should be made in respective device or else the function won't work and a error will pop up
49
+
For the function to work:
50
+
1. In google search "Less secured apps in gmail"
51
+
2. Select "Control access to less secure apps"
52
+
3. Here enable the less secure apps for the account you will be using to send emails
53
+
Now its a concern of security if we have to write our password this way
54
+
for no privacy breach we can use the following steps:
55
+
1. Go to goole and search "App passwords google"
56
+
2. Open "App passwords-Sign in Google"
57
+
3. Sign in the with the account you want to use for sending emails using this
58
+
4.Under "select the app and device you want generate password for"
59
+
i> Select App= Mail Select Device= Windows 10
60
+
ii>Click on generate
61
+
5. Copy the app password and use it here.
33
62
34
-
Check requirement.txt for this.
35
63
36
64
# Development Status #
37
65
38
66
The amount of things that can be done with this AI assistant is endless. This is just a basic structure which is at present complete. It might be using hotwords in future that will trigger the assistant, , might be used in sending the system to sleep mode, set alarm, send text messages to contacts on your phone and lot more.
0 commit comments