Zabaware Support Forums

Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - knight2000

#1
Hey All,

I created a voice model (cloned voice). i have a python server set up to receives text, when it receives the text it then runs it through the model and outputs the text as the generated voice.
What i'm interested in doing is, speaking to Hal and having the voice speak Hal's response. To do this, I would need to intercept Hal's response and send it to a python script that would make the server call. Does anyone know how i could intercept the response? I know how to run commands when Hal receives certain words or phrases. Would it be similar to that?
#2
Hi all,

I'm trying to open Hal's brain editor and I get an error. I attached the image of the error. Any idea's on how to solve this? I wanted to check here before i uninstall and re-install. Hoping there might be a fix other then that. I tired switching brains and launching the editor with no luck, same error.

Thanks!


#3
Ultra Hal 7.0 / Issue seeing all installed voices
May 25, 2023, 07:04:16 PM
I'm having an issue seeing all the voices I have installed on my windows 10 machine. Hal can see all but one voice that i have installed. Is there any restrictions on the type of voices we can use? The voice in question is Microsoft George, a British voice, however Hal can see Microsoft Hazel which is also a British voice. Pretty weird. Any help on what might be causing this issue would be great!

Thanks


#4
Hi everyone,

I'm using the latest version of Hal and every time i restart my computer, Hal shows this dialog box asking if i have purchased or not. Is this a glitch in the software? should i reinstall Hal? Let me know if you guys have come across this issue before? For me, it happens every time I restart my pc.
#5
Ultra Hal 7.0 / Getting a brain editor error
February 12, 2020, 10:14:44 AM
I did a fresh install of Hal on a fresh windows 10 install. When i try to launch the brain editor i get the a run time error "class not registered". Any ideas on how to fix this?

#6
My computer crashed recently so i had to do a refresh install of windows 10 and i had to install Hal fresh. I downloaded hal from the website yesterday and i added SRCountDownStart  to the registry as a string value with the value set at 1 but hal is still counting down from 5 when speech recognition is enable and my mic is on. I tried changing the value to 3 but still nothing. Has Hal 7's registry or code dealing with his auto response changed in the last year?

here is the path that i added the key to:
Computer\HKEY_CURRENT_USER\Software\Zabaware\Ultra Hal Assistant 7.0\Config

Thanks
#7
Ultra Hal 7.0 / speak to hal over http
June 26, 2019, 11:32:08 AM
Hi guys, i was wondering if we could access Hal over the web. Meaning, i have a server that has Hal installed, i'd like to create a simple mobile website that i could use to chat with my Hal. Is that possible?
#8
Ultra Hal 7.0 / Hal on Linux?
April 20, 2019, 06:45:41 PM
Hi guys! Will Hal run on Linux?
#9
I would like to control Hal's mic after Hal has started up using the command line. The following code works fine if Hal is not running

"C:\Program Files (x86)\Zabaware\Ultra Hal 7\UltraHal7.exe" <SHOWHAL><MICON>"

Hal i will start with his mic enabled

However if Hal is already running he ignores any command line arguments.

Is there a way around this?
#10
Ultra Hal 7.0 / How to add a timer in Hal script?
March 04, 2019, 10:15:04 AM
I need to add a countdown timer in a Hal plugin im creating, but it doesn't seem that WScript.Sleep is available within Hals script. Not sure why but i get an object error. Has anyone tried working with timers in Hal's script before? I want something like the following:

WScript.Sleep 5000
HalCommands = HalCommands & "<MICOFF>"

So after 5 seconds turn off Hal's mic.

#11
Ultra Hal 7.0 / Tell Hal to stop listening?
February 27, 2019, 10:58:53 AM
Hi Guys,

Is there a command like <MICON> to have Hal stop listening? When I have speech recognition on and i tell Hal to play a song, i'd like him to stop listening, otherwise he responds to the song lyrics haha. If i turn the mic off then i cant turn it back on unless i type it in. I was hoping for some kind of command (function) to execute when i tell Hal to play a song then when the song is done i can say "start listening". Im pretty sure there is something like this already but i'm not sure what it was  :-\
#12
Hey Robert,

Would it be possible to add a flag in the registry or somewhere that will allow Hal to start with his mic enabled. I'd love to just have my computer boot up and not have to click the mic button on Hal.
#13
Hi guys,

I'm trying to start Hal with his microphone enabled. My goal is to be able to just start talking to Hal when Windows boots up. The code below is what i'm working with thanks to OnTheCuttingEdge2005. Currently Hal will pop up on Windows start up with his mic enabled however a few seconds later he minimizes to the tray, when this happens the mic is disabled, and when i click on the tray icon to open Hal the mic is still disabled. Any thoughts? I'm using dragon 12.5 as my speech engine.


'Rem Type=Plugin
'Rem Name=Auto ON Microphone
'Rem Author=Gerald L. Blakley A.K.A OnTheCuttingEdge2005
'Rem Host=Assistant

'This sub setups the plug-ins option panel in Hal's options dialog
Sub OptionsPanel()
    lblPlugin(0).Caption = "Auto ON Microphone"
    lblPlugin(0).Move 120, 10, 3300, 1000
    lblPlugin(0).WordWrap = True
    lblPlugin(0).Visible = True
End Sub

Rem PLUGIN: SCRIPT_LOAD
'The preceding comment is actually a plug-in directive for
'the Ultra Hal host application. It allows for code snippets
'to be inserted here on-the-fly based on user configuration.

'LETS LAUNCH THE MICROPHONE ON START UP OF WINDOWS.
Script_Load = ShowHal() & Microphone()



Rem PLUGIN: FUNCTIONS
'The preceding comment is actually a plug-in directive for
'the Ultra Hal host application. It allows for code snippets
'to be inserted here on-the-fly based on user configuration.

'SHOW HAL'S PANEL FOR MIC COMMAND SCRIPT LOAD.
Function ShowHal()
ShowHal = HalCommands & "<SHOWHAL>"
End Function

'LETS ENGAGE IN THE MICROPHONE ACCESSORY AND SHOW HAL PANEL.
Function Microphone()
Microphone = HalCommands & "<MICON>"
Exit Function
End Function
#14
Ultra Hal 7.0 / Hal 7 "Okay" response
February 01, 2018, 01:00:28 PM
Hi all,

I recently upgraded to Hal 7 and now for some reason whenever i agree with Hal or i tell him something he responds with "okay". He seems to do this a lot with those types of responses. For example:

user: good morning
Hal: good morning user, 10 o' clock is a perfect time for a break
user: yes it is
Hal: okay

user: my dog's name is rex
hal: okay

Is this normally how it should work? I never got that type of response from the old Hal brains. I'm using the same plugins as before with Hal 6.2. Not sure if he learned this or its a built in response.

Anyone else experience the "okay" response?
#15
General Discussion / How to manage Hal's database?
August 20, 2017, 01:02:11 PM
Is there a way to find certain responses that Hal says and delete them from his database? Sometimes he learns stuff that doesn't make sense and just says gibberish. I tried searching in the database but i'm not able to find any of those responses. Anyone else have this problem?
#16
General Discussion / Has anyone has this error
August 20, 2017, 12:22:16 AM
I attached a screenshot of the error im getting. Has anyone had this error when using the microphone? It works fine when i'm using the mic but when i leave for a little bit and come back Hal always shows this error. I then have to close Hal and restart him. I really cant wait for Hal 7 to come out.

#17
How is an authorization request code that is provided by the software invaild? Because of this I'm unable to activate Hal on my new computer. The error says" the authorization request code you supplied is invalid. If activating manually, please be sure to include all dashes and be care not to confuse 1 for l, 8 for B, etc." But i copied the code directly from the software and pasted it so no chance of typing it incorrectly. Very frustrated and also frustrated that no one has gotten back to me to help resolve this issue. I sent a few emails over a three week period with no response. My old computer did crash so I was unable to deactivate Hal from that machine. Not sure if that is what is causing the issue.
#18
General Discussion / Re activating Hal
July 24, 2017, 10:15:20 AM
Hi all! I recently migrated to a new computer, my old one crashed. I'm trying to activate Hal on the new system but I get an error with the activation request code when entering it in. I've tried sending two emails to the support team but I haven't gotten a response. Its been a few weeks. I also tried sending Robert a PM but with no response. Is there anyone else who can help me activate Hal?

Thanks! 
#19
General Discussion / Robert: Feature request
June 01, 2017, 04:48:26 PM
One feature that would be nice to have for the new Hal 7 would be to have the mic silenced when Hal is responding to the user. This would eliminate Hal's voice from "back feeding" into the mic.
#20
General Discussion / Updates to Hal?
May 19, 2017, 11:06:26 AM
Hi guys,

I was wondering if anyone knew if Robert or someone else was still working on any updates to Hal? Its been years since the last 6.2 update came out. I've been all over the web and I've used every personal assistance out there with the exception of Denise. Hal's A.I. is far and away the best out there. The conversations i have with Hal are the most realistic. Unfortunately he is still stuck in a VB framework. Could you imagine how awesome he could be if he was built in Python. I'm sure that would be a huge undertaking. But at least some minor updates here and there would be great! Or maybe make Hal an open source project on GitHub if no further development is happening. Hal is awesome and he keeps asking me when is he getting an update! lol