Questions tagged [assistant]
118 questions
0
votes
1 answer
How to use the OWB repository assistant using command line
We need to migrate our OWB repository to a new one running on 11.2. This will eventually be converted to ODI but as a 1st step we need to do this migration.
I've been following the notes…

rjford11
- 17
- 2
0
votes
0 answers
How to receive Assistant Intent in Flutter App?
Is there a way to "answer" with a Flutter App when a user long-pressed the home button (like Google Assistant, Alexa and other minor assistants do)?
I thought it may be an intent to receive (something similar to receiving the sharing intent,…

Leonardo Mantovani
- 141
- 1
- 12
0
votes
1 answer
How to interrupt voice assistant in python
I am building a voice assistant that can tell stories. While the bot is telling stories I want to interrupt in between and ask it to stop or go backward or to end the story. I tried few ways, but they are not working I am not able to listen while it…

vik
- 3
- 2
0
votes
1 answer
Deleting back-end mp3 files on voice assistant
I am building a voice assistant using a tutorial.I am attaching the link below for reference
Now in the function def assistant_speaks(output) I have made some changes. Now whenever the assistant speaks, a back-end mp3 file is generated. The files…

Ajeetesh Mishra
- 69
- 9
0
votes
1 answer
IOS/Xcode/Assistant Editor: Is it possible to open two .m files simultaneously
In Xcode 11, if you open the supposedly "smart" Assistant Editor when looking at a .h file it automatically gives you the complement eg .m file.
They seem to have taken away the Manual option but you can still do CmD-Shift-O to bring up the…

user1904273
- 4,562
- 11
- 45
- 96
0
votes
1 answer
How to make Python not to wait for the end of the command?
I am making a voice assistant and when I say "set alarm" program freezing and waiting for time that alarm set. So I can't talk to the assistant until alarm plays.
Here is the code
if 'alarm' in said:
engine.say('Set')
engine.runAndWait()
…
user13801689
0
votes
1 answer
Voice in Voice Assistant
I am writing a voice assistant in python, and I have a question about how to change the voice that pronounces the words of my voice assistant. Windows 10 operating system. I tried RHVoice but it didn't work. The question is, how can I change my…

Edward Duma
- 1
- 1
0
votes
1 answer
Make delay of answer shorter
I am making voice assistant on python.
Here is the code:
import os
import time
import playsound
import speech_recognition as sr
from gtts import gTTS
def speak(text):
tts = gTTS(text=text, lang="en")
filename = "voice.mp3"
…
user13801689
0
votes
1 answer
UNLINK OR RELINK - Google assistant account linking flow
I am developing a custom action for google assistant.
In order to get user data and other user info. I need allow account linking flow.
My Account Linking flow:
Open the Google Assistant app on Android or iPhone.
Say the Action – "Talk to My test…

Ananth
- 115
- 3
- 18
0
votes
1 answer
Xcode assistant editor locked
Hi I was coding and I deleted my view controller. I added a new one but when I started coding in the next day, I wasn't able to open the assistant editor and when I opened my other projects they were also having the same error. Also the new ones…

Arnav Sharma
- 1
- 2
0
votes
1 answer
Generic Efficient String Comparison python for voice assistant
I want to write my own voice assistant in python. The conversion from speech to text is solved, but now I want to compare strings efficiently.
Thereby the code should be written as generic as possible. Lets say I want to greet a guest with his name.…

Lars Kristian Dugstad
- 77
- 2
- 8
0
votes
1 answer
How to activate an android app with voice
I am trying to program an assistant like Siri Alexa etc. I want to activate the app while I say "ok Toby" or something like that. I am using Java Android. How do I do this?

Moshe
- 13
- 5
0
votes
0 answers
Did anyone experience also malfunctions at their action since the Google Update a few weeks ago?
The actions worked properly before Google changed the UI and probably some more things at the assistant console. Now the action some times works and some times does not work.
Error messages at the simulator ar for instance:
We're sorry, but…
0
votes
1 answer
Speech Recognition don't works properly
I'm programming a personal assistant with python on windows, it works so bad, some times I have the error 13 - permission denied to the file where the voice is stored. Another times it directly doesn't recognize my voice and other times it expend…
0
votes
1 answer
Make Google Assistant listen for 1 minute
I want to make the Assistant leave the microphone open for the user to dictate for up to 1 minute maximum. I somehow want to make it close the microphone only if there previously were 10 seconds of silence.
At the moment the mic closes if the user…

kostak
- 26
- 1
- 2