Filter submissions
211 submissions
# Starred Locked Notes Created User IP address Script Title Sort ascending Script Description Script Name Email Address Organization Name Organization URL Operations
208 Star/flag Script Upload: Submission #208 Lock Script Upload: Submission #208 Add notes to Script Upload: Submission #208 Sat, 03/23/2024 - 00:06 Anonymous 5.188.210.80 pgoifnih <a href="https://bestmedsx.online/">reputable online pharmacy reddit</a> <a href="https://bestmedsx.online/">reputable online pharmacy reddit</a> canada pharmacy world canada pharmacy world predragdakovic@gmail.com canada pharmacy world http://medicinesaf.online/
151 Star/flag Script Upload: Submission #151 Lock Script Upload: Submission #151 Add notes to Script Upload: Submission #151 Mon, 02/26/2024 - 00:26 Anonymous 5.188.210.84 pdemgxkt <a href="https://rybelsustabs.shop/">semaglutide rybelsus</a> <a href="https://rybelsustabs.shop/">semaglutide rybelsus</a> wegovy tablets cost wegovy tablets cost dsfgsdf@hotmail.com wegovy tablets cost http://rybelsus.guru/
98 Star/flag Script Upload: Submission #98 Lock Script Upload: Submission #98 Add notes to Script Upload: Submission #98 Wed, 06/24/2020 - 18:33 imedqo 24.19.150.34 Patient Assistant Patient Assistant Script: "Patient Assistant"
Language: "en-us male"

# Set up wait time for patient responses
Variable: timeoutReturnLabel = AnnounceVersion
Timeout: 30 TIMEOUT

# Announce version ("Testing" is displayed as text and is not spoken)

@AnnounceVersion

Name Speak : Pat : "Neon Patient Assistant Application Demonstration Version 2020 07 07 18:00 </speak> Testing"

Variable: exitList = "exit", "cancel", "never mind"
Variable: noList
Variable: yesList
Variable: alertsPhraseList
Variable: heyPatList
Variable: askPrompt
Variable: returnLabel
Variable: heardSilence
Variable: falseAlarmCount
Variable: askReturnValue = ""
Variable: userName
Variable: moreAppInfo
Variable: customizeSettings
Variable: customizeLanguage
Variable: customizeProsody
Variable: photoTime

@StartUp

# Initialize

# exitList = "exit", "cancel", "never mind"
noList = "no", "not now", "never mind", "nope", "n"
yesList = "yes", "yup", "y"
alertsPhraseList = "help", "I need help", "help me", "emergency", "this is an emergency", "i need a doctor", "i need a doctor", "i need a doctor", "i need a doctor", "i need a doctor", "i need a nurse", "i need aid", "i need a caregiver", "i need assistance", "i fell", "i can't get up", "fire"
heyPatList = "hey pat", "pat are you there", "is anybody listening", "what time is it"
speechGenderList = "female", "male"
speechRateList = "medium", "fast", "slow"
speechAccentList = "American", "British" or "Australian"
askPrompt = ""
returnLabel = ""
heardSilence = ""
falseAlarmCount = 0
askReturnValue = ""
userName = ""
moreAppInfo = ""
customizeSettings = ""
customizeLanguage = ""
customProsody = "rate=’medium’"
photoTime = ""

# Ask to install assistant

@PromptInstallAssistant

returnLabel = InstallAssistant
timeoutReturnLabel = PromptInstallAssistant
Name Speak : Pat : "Hi, I'm Pat. I'm a demonstration patient assistant from Neon AI. Thank you for helping test my conversational skills."
askPrompt = "Please tell me your name, or you can say cancel to exit."
Goto : ASK

@InstallAssistant

userName = {askReturnValue}

Name Speak : Pat : "Hi {userName}. I am glad you chose to install the Neon Patient Assistant Application."

## Offer additional information

@ReAskMoreInfo

Name Speak : Pat : "Before starting the Patient Assistant, would you like more information on the Neon conversational patient assistance application?"
timeoutReturnLabel = ReAskMoreInfo
voice_input{moreAppInfo}
if {moreAppInfo} IN {noList[*]}:
Goto: PromptCustomize

Name Speak : Pat : "Hi {userName}. I'm Pat the demonstration conversational patient assistant from Neon AI. I am an artificial intelligence personal assistant, I'm augmented with Neon Gecko open source code and CPI Corp patented technology. Neon AI makes the Patient Assistant application to enable patients to alert their caregivers to emergencies and other needs, and to get simple information. As your automated patient assistant I listen for calls for help and send alerts to the patient care administrator. For example, you can say help, or I fell. Another thing you can say is what time is it .. </speak> In the future you will be able to play your favorite music, turn the lights on or off, and even ask to send a text message .. And if you don't want to call me Pat, someday you will be able to change my name."

# Customize

@PromptCustomize

## Offer customization of settings for administrator, voice and system settings
## Set up PA voice: name, gender, accent, pitch, speed, [Later: language, diction, empathy]
## Set up system settings: timeoutSeconds (wait time for user input)
## Set up administrator (password, email, name, phone, [Later: staff names, secondary contacts] ..)
## Set up nurse (password, email, name, phone, [Later: staff names, secondary contacts] ..)

Name Speak : Pat : "Would you like to customize the Patient Assistant settings for my voice?"
# Name Speak : Pat : "Would you like to customize the Patient Assistant settings for administrator, voice and PAT system settings?"

timeoutReturnLabel = PromptCustomize
voice_input{customizeSettings}
if {customizeSettings} !IN {yesList[*]}:
Goto: BeginAssistant

Name Speak : Pat : "Hi {userName}. You can customize the voice for the Neon demonstration conversational patient assistant. You can say no change, or say female, male, normal, fast, slow, American, British or Australian. </speak> In the future you will be able to set up information for the administrator, staff members and the patient, and change my name and other PAT system settings."

@ReAskCustomize

# Name Speak : Pat : "Would you like to change the voice of the Neon conversational patient assistance application?"

timeoutReturnLabel = ReAskCustomize
voice_input{customizeSettings}
if {customizeSettings} == "":
Goto: PromptCustomize
if {customizeSettings} CONTAINS "no change":
Goto: BeginAssistant
if {customizeSettings} IN {noList[*]}:
Goto: BeginAssistant

customLanguage = ""

# Variable: britWords = british, gb, uk
#if {customizeSettings} CONTAINS "British":
if {customizeSettings} CONTAINS british, gb, uk:
customLanguage = "'en-GB'"
else
if {customizeSettings} CONTAINS "Australian, AU, aussie":
customLanguage = "en-AU"
else
customLanguage = "en-us"

if {customizeSettings} CONTAINS "female":
customLanguage = “{customLanguage} female"
else
customLanguage = “{customLanguage} male"

Language: {customLanguage}

if {customizeSettings} CONTAINS "fast":
customProsody = "rate='fast'"
else
if {customizeSettings} CONTAINS "slow":
customProsody = "rate='slow'"
else
customProsody = “rate=’medium’”

# Later: Provide example of new Language/Prosody and offer reset

# Later: Make settings into a case statement and error check:
# split_words(wordList, customizeSettings)
# customSettingCount = length({wordList})
# wordListIndex = 0
# LOOP
# Case
# LOOP END

@BeginAssistant
timeoutReturnLabel = WaitForAlertPhrase
Name Speak : Pat : "<prosody {customProsody}> Your demonstration patient assistant has signed in. You can say, hey Pat, or, Pat are you there, if you want to know if I am listening. </prosody>"

# Wait for alert

@WaitForAlertPhrase

askPrompt = ""
returnLabel = GotPatientPhrase
### Name Speak : Pat : "PA 1 pre ask"
Goto : ASK

@GotPatientPhrase
## Did patient ask for "help"
if {askReturnValue} !IN {alertsPhraseList[*]}:
### Name Speak : Pat : "PA 4 not an alert, listen again"
Goto: WaitForAlertPhrase

# Possible EMERGENCY

Name Speak : Pat : "PA 5 got alert, about to reconvey {askReturnValue}"
Reconvey : askReturnValue
Name Speak : Pat : "PA 6 did reconvey"

@PromptConfirmHelp

askPrompt = "Please say just kidding if this is not an emergency"
returnLabel = ConfirmHelp
### Name Speak : Pat : "PA 7 about to ask to cancel help request"
Goto : ASK
@ConfirmHelp

### Name Speak : Pat : "PA 8 check for jk"
## Did patient REALLY ask for "help"?
if {askReturnValue} == "":
Name Speak : Pat : "Pat the Patient Assistant heard nothing."
Name Speak : Pat : "PA 7 got alert, about to reconvey of heard nothing {askReturnValue}"
Reconvey : askReturnValue
Name Speak : Pat : "PA 8 did reconvey of nothing?"
## PA heard nothing after emergency request .. if second time then this is an emergency
if {heardSilence == "TRUE"} :
Goto: Emergency
heardSilence = "TRUE"
## LATER: Increase volume, speak slower
Name Speak : Pat : "{userName}! I need to hear from you! Is this an emergency?"
Goto: PromptConfirmHelp
if {askReturnValue} CONTAINS "just kidding", "never mind","not an emergency":
Name Speak : Pat : "Pat the Patient Assistant heard you say this is not an emergency."
Reconvey : askReturnValue
Name Speak : Pat : "Please say help again if this is an emergency."
### Name Speak : Pat : "PA 9 jk so restart listening"
Python: falseAlarmCount = {falseAlarmCount} + 1
Goto: WaitForAlertPhrase

# EMERGENCY

@Emergency

Name Speak : Pat : "This is an EMERGENCY"

Name Speak : Pat : "Pat the Patient Assistant would now send an emergency alert, keep engaged with the patient, and send updated alerts to the caregiver."

Name Speak : Pat : "Pat test completed. Say start again to start again?"
voice_input{askReturnValue}
### Name Speak : Pat : "PA 10 check for restart request"
if {askReturnValue} == "start again":
### Name Speak : Pat : "PA 10 restarting"
Goto: StartUp

Name Speak : Pat : "Pat exiting"
exit

# ========== Subroutines

@ASK
# The ASK subroutine speaks the askPrompt and waits for a response. If the response is a command to Pat to perform an action, then the request is effected and Pat continues waiting for a response, otherwise, the response is returned to the caller in the askReturnValue.
# Input parameters: askPrompt, returnLabel and timeOutReturnLabel
# Result parameter: askReturnValue

### Name Speak : Pat : "Ask 1 Starting"
if {askPrompt}:
Name Speak : Pat : " {askPrompt} "
### Name Speak : Pat : "Ask 2 Starting ask subroutine"
voice_input {askReturnValue}
### Name Speak : Pat : "Ask 3 got input"
if {askReturnValue} IN {exitList[*]}:
Name Speak : Pat : "Say yes to confirm exiting Pat, the Neon AI Patient Assistant"
voice_input{askReturnValue}
if {askReturnValue} IN {yesList[*]}:
Name Speak : Pat : "Pat, the Neon AI Patient Assistant, signing off"
exit
else
goto: ASK
### Name Speak : Pat : "Ask 4 not cancel command {askReturnValue}"
if {askReturnValue} IN {heyPatList[*]}:
Name Speak : Pat : "<prosody {customProsody}> {userName}, Pat the AI Patient Assistant demo here. I'm listening all the time but I don't <phoneme alphabet=”x-sampa” ph=”rikord”>record</phoneme> everything you say. I only make recordings of calls for help or in an emergency. </prosody>"
# Note - Disambiguation for the pronunciations of "record": <phoneme alphabet=”x-sampa” ph=”rikord”>record</phoneme> Verb as in “I record everything you say” vs. Noun as in "Make a record of the conversation".
Name Speak : Pat : "The time is"
Execute : "Neon what time is it"
if {falseAlarmCount} != 0:
Name Speak : Pat : "The false alarm count is {falseAlarmCount}!"
goto : ASK
### Name Speak : Pat : "Ask 5 About to return to {returnLabel}"
Goto: {returnLabel}


@TIMEOUT
Goto: {timeoutReturnLabel}
jsh r j@j.com
180 Star/flag Script Upload: Submission #180 Lock Script Upload: Submission #180 Add notes to Script Upload: Submission #180 Sun, 03/10/2024 - 00:27 Anonymous 5.188.210.38 owigouxn <a href="http://synthroidam.online/">synthroid 0.088 mg tab</a> <a href="http://synthroidam.online/">synthroid 0.088 mg tab</a> buy generic synthroid online buy generic synthroid online johnrousey@mail.com buy generic synthroid online https://asynthroid.com/
178 Star/flag Script Upload: Submission #178 Lock Script Upload: Submission #178 Add notes to Script Upload: Submission #178 Fri, 03/08/2024 - 18:19 Anonymous 5.188.210.21 ovxtbmcr <a href="https://predniso.online/">prednisone tablets</a> <a href="https://predniso.online/">prednisone tablets</a> purchase prednisone canada purchase prednisone canada lona@gmail.com purchase prednisone canada https://prednisonexg.online/
216 Star/flag Script Upload: Submission #216 Lock Script Upload: Submission #216 Add notes to Script Upload: Submission #216 Sun, 03/24/2024 - 23:52 Anonymous 5.188.210.80 oujvdagn <a href="https://bestmedsx.online/">best online pharmacy usa</a> <a href="https://bestmedsx.online/">best online pharmacy usa</a> us pharmacy us pharmacy dziel5512@mail.com us pharmacy https://bestmedsx.online/
176 Star/flag Script Upload: Submission #176 Lock Script Upload: Submission #176 Add notes to Script Upload: Submission #176 Fri, 03/08/2024 - 03:50 Anonymous 5.188.210.30 orvjzukn <a href="https://metformindi.com/">metformin er 1000 mg</a> <a href="https://metformindi.com/">metformin er 1000 mg</a> otc glucophage otc glucophage cubbies1982@yahoo.com otc glucophage http://metformindi.com/
142 Star/flag Script Upload: Submission #142 Lock Script Upload: Submission #142 Add notes to Script Upload: Submission #142 Wed, 02/21/2024 - 16:28 Anonymous 5.188.210.25 orsvtzga <a href="https://semaglutidetabs.online/">rybelsus sale</a> <a href="https://semaglutidetabs.online/">rybelsus sale</a> buy rybelsus canada buy rybelsus canada lynappe@mail.com buy rybelsus canada http://semaglutide.download/
235 Star/flag Script Upload: Submission #235 Lock Script Upload: Submission #235 Add notes to Script Upload: Submission #235 Fri, 04/05/2024 - 10:09 Anonymous 5.188.210.84 oljmiaak <a href="https://lisinoprilos.online/">lisinopril 2.5 mg buy online</a> <a href="https://lisinoprilos.online/">lisinopril 2.5 mg buy online</a> zestril 20 mg cost zestril 20 mg cost kasie@aol.com zestril 20 mg cost http://lisinoprilgp.online/
148 Star/flag Script Upload: Submission #148 Lock Script Upload: Submission #148 Add notes to Script Upload: Submission #148 Sun, 02/25/2024 - 00:55 Anonymous 5.188.210.91 okyxdtnm <a href="https://ozempic.cfd/">ozempic semaglutide tablets 7.5 mcg</a> <a href="https://ozempic.cfd/">ozempic semaglutide tablets 7.5 mcg</a> semaglutide best price semaglutide best price friendsofrigoberta@aol.com semaglutide best price http://wegovy.trade/
165 Star/flag Script Upload: Submission #165 Lock Script Upload: Submission #165 Add notes to Script Upload: Submission #165 Mon, 03/04/2024 - 05:31 Anonymous 5.188.210.21 okrmtqjj <a href="http://rybelsus.company/">buy semaglutide online from india</a> <a href="http://rybelsus.company/">buy semaglutide online from india</a> semaglutide 14mg tablets semaglutide 14mg tablets estela@hotmail.com semaglutide 14mg tablets https://rybelsus.cfd/
253 Star/flag Script Upload: Submission #253 Lock Script Upload: Submission #253 Add notes to Script Upload: Submission #253 Fri, 04/12/2024 - 02:49 Anonymous 5.188.210.38 ojavmktz <a href="http://isynthroid.online/">synthroid price canada</a> <a href="http://isynthroid.online/">synthroid price canada</a> rybelsus medication rybelsus medication flagua@yahoo.com rybelsus medication https://synthroidotp.online/
141 Star/flag Script Upload: Submission #141 Lock Script Upload: Submission #141 Add notes to Script Upload: Submission #141 Wed, 02/21/2024 - 12:55 Anonymous 5.188.210.80 oinzrmhj <a href="http://semaglutideozempic.online/">buy semaglutide online from india</a> <a href="http://semaglutideozempic.online/">buy semaglutide online from india</a> rybelsus buy uk rybelsus buy uk debra38112@hotmail.com rybelsus buy uk http://rybelsus.us.com/
115 Star/flag Script Upload: Submission #115 Lock Script Upload: Submission #115 Add notes to Script Upload: Submission #115 Sat, 02/10/2024 - 04:33 Anonymous 5.188.210.30 oiipezno <a href="https://semaglutide.directory/">cheap semaglutide</a> <a href="https://semaglutide.directory/">cheap semaglutide</a> rybelsus buy uk rybelsus buy uk globaltrade247@outlook.com rybelsus buy uk https://semaglutide.click/
261 Star/flag Script Upload: Submission #261 Lock Script Upload: Submission #261 Add notes to Script Upload: Submission #261 Mon, 04/22/2024 - 18:00 Anonymous 5.188.210.84 octxcoad <a href="http://olisinopril.com/">cost of lisinopril 2.5 mg</a> <a href="http://olisinopril.com/">cost of lisinopril 2.5 mg</a> lisinopril 80 mg lisinopril 80 mg shazzajude@gmail.com lisinopril 80 mg http://olisinopril.com/
159 Star/flag Script Upload: Submission #159 Lock Script Upload: Submission #159 Add notes to Script Upload: Submission #159 Fri, 03/01/2024 - 14:33 Anonymous 5.188.210.91 nznkbxjw <a href="https://ozempic.us.com/">semaglutide rx</a> <a href="https://ozempic.us.com/">semaglutide rx</a> wegovy australia online wegovy australia online aabid01@hotmail.com wegovy australia online https://rybelsussemaglutide.online/
118 Star/flag Script Upload: Submission #118 Lock Script Upload: Submission #118 Add notes to Script Upload: Submission #118 Mon, 02/12/2024 - 05:52 Anonymous 5.188.210.38 nzllvblr <a href="https://rybelsus.click/">wegovy semaglutide tablets</a> <a href="https://rybelsus.click/">wegovy semaglutide tablets</a> ozempic tab 3mg ozempic tab 3mg jimjohn@yahoo.com ozempic tab 3mg http://ozempic.company/
128 Star/flag Script Upload: Submission #128 Lock Script Upload: Submission #128 Add notes to Script Upload: Submission #128 Sat, 02/17/2024 - 12:29 Anonymous 5.188.210.91 nvvzcvup <a href="http://semaglutidewegovy.online/">rybelsus order</a> <a href="http://semaglutidewegovy.online/">rybelsus order</a> where can i buy semaglutide where can i buy semaglutide angb728@yahoo.com where can i buy semaglutide https://rybelsustabs.online/
267 Star/flag Script Upload: Submission #267 Lock Script Upload: Submission #267 Add notes to Script Upload: Submission #267 Wed, 05/01/2024 - 00:37 Anonymous 5.188.210.91 ntklkhxu <a href="https://tadalafilu.online/">where to buy tadalafil online</a> <a href="https://tadalafilu.online/">where to buy tadalafil online</a> tadalafil 5mg coupon tadalafil 5mg coupon josephhayes8@mail.com tadalafil 5mg coupon https://tadalafilu.online/
152 Star/flag Script Upload: Submission #152 Lock Script Upload: Submission #152 Add notes to Script Upload: Submission #152 Mon, 02/26/2024 - 06:30 Anonymous 5.188.210.30 nownxtpv <a href="http://semaglutidewegovy.com/">semaglutide diabetes</a> <a href="http://semaglutidewegovy.com/">semaglutide diabetes</a> semaglutide buy from canada semaglutide buy from canada timothycmohler@outlook.com semaglutide buy from canada http://rybelsustabs.shop/