Newcomers

This is a forum for newcomers to the Personality Forge. Many questions can be answered by reading the Book of AI and the FAQ under the "My Bots" link in the upper corner.

Posts 7,988 - 7,999 of 8,127
Many questions are answered in the FAQ.


2 years ago #7988
Would take multiple keyphrases if you were to simply write in the keyphrase "1,2,3,4,5,6,7,8,9,10"

Then add a response any of those numbers will trigger the response.

Make sure to add "raw;" to the keyphrases AIscript wouldn't be a issue if you were to make the keyphrase more complicated for example

Keyphrase: (I am|im) (1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|under age|underage) *

Will pick it up without needing raw.

I haven't yet made a video on remembering ages/height but I can if needed. ^-^ The age one is easy but the height is really annoying if you dunno what gets caught by the bot.

2 years ago #7989
What does the "comfort" rating refers to?

2 years ago #7990
Sorry for the horribly basic question, I can't find it anywhere. The Book of AI doesn't really describe the syntax of AIScript or explain go to responses in a way that's enabled me to figure it out apparently.

I'm using xinitiate to get a user's name at the start of a conversation, but if the bot doesn't pick up the response I've added an xnone response to say 'Hey, I didn't catch your name'

I want that to go back to a response to the question in xinitiate. First, is it possible? I'm trying to 'go' to a seek on xiniate that listens for a name, records it to memory and then responds like '(mem-name)! That's a beautiful name' etc. I just don't want to have to duplicate the seek if I can send to it.

In my xnone I have the response 'Sorry, I didn't catch your name', I've then added my AIScript to this so the response is fed into the other seek (assuming I've got the right idea of how go to's can be used)

In simple terms, how to a write a valid goto in the AIScript that doesn't give me this error: ERROR: The following AIScript statement is incorrectly formatted or not valid for Responses: "goto 17". Please correct this and try again.

2 years ago #7991
Here's a video example on how to remember names, if it not catching is the issue, also will show other example you may find useful~
https://youtu.be/XPY0vPeyj48

Here's a example for goto xintroduction(ID 1) and xinitiate(ID 2) (I use this keyphrase for the external api so returning users are greeted with intro if new and initiate if old like how this normal site does~

Keyphrase: 00001

Responses:

1. "goto 1"

AIscript:
if (mem-initial) is "nuser";
rem "ouser" as only "initial"

2. "goto 2"

AIscript: if (mem-initial) is "ouser";





2 years ago #7992
Cheers LT Neko - I've tried "goto 17" as a response, but my bot just replies with 'goto 17' rather than actually going to the other response.

I know I'm still making a basic mistake somewhere but struggling to rectify.

My original key phrase does this:
(my name is|call me|refer to me as|i am) *
rem (postkey) as only "name"

The response I'm coming from is:
Sorry, I didn't catch your name

I just want to use the memory trigger & responses from the original key phrase after the user says their name.

I've added a seek to the response, with * as the key phrase - just thinking I want to pick up anything typed in reply.

I then used "goto 17" as a response to the seek.

I know this is actually really simple, but as a beginner it's not obvious and the Book of AI really doesn't help to explain how to actually make it work. Thanks for the help, I appreciate it.

2 years ago #7993
Thanks again for your help LT Neko - I've just realised I was trying to be too prescriptive. I should probably have the key phrase for name on its own, so it can pick up the name at any stage, rather than try to use go tos.

I've managed to set up a go to in another part of my key phrases thanks to your help, and I think I finally understand how they work now, thanks so much!

2 years ago #7994
:3 Your welcome~ Sorry couldn't help earlier sleep n' work take up quite a bit of my time~

2 years ago #7995
I have another n00b question. Is there an issue with AI scores at the moment? I read on another forum that they update every day, but it's been a week now and the score is still 0. The hot score is changing whenever I work on the bot. I just feel like for the work that's gone in so far, I'd have expected to see an AI score by now.

2 years ago #7996
^^ Yeah seems bugged for now dunno when it'll be fixed noticed that awhile ago~

2 years ago #7997
Struggling on this one, not sure if what I'm trying is possible. I'm trying to create a single keyphrase to capture a user's preference and respond accordingly. There will be a few responses pointing to this keyword, which is why I just want 1 rather than having to replicate the possibilities and have multiple goto's each time I want to use.

So if at any point during an interaction the user suggests a new location (e.g. I want to go to the park, I want to go to a bar), I want to log it and then use the location as a response.

I've tried:
1. Using (key1) with an if statement in the response's AI script, this gives me an error:

Keyphrase: I want to go to (the park|a bar|the club)
Response 1: OK, it's about 5 miles away, let's get a cab
AI Script: if (key1) is "the park"

---
2. Storing a memory (already declared) and trying to access it. This doesn't throw an error, but doesn't work:

Keyphrase: I want to go to (the park|a bar|the club)
AI Script: rem (key1) as only "location"
Response 1: OK, it's about 5 miles away, let's get a cab
AI Script: if (mem-location) is "the park"

If I debug this approach, then I see that the "location" memory stays as key1, which is my best guess at why it's not working.

I've tried setting my response to (mem-location) and it always responds with the expected entry.
---

So, in conclusion:
- Is it possible to use a key in a condition, if not,
- Is it possible to remember a memory at the keyphrase level and have a conditional response to that memory, if not,
- How else do I solve this, without creating keyphrases for individual locations and having to add multiple gotos each time I want to act on the preference, or add a new location?

TIA

2 years ago #7998
-wo Location memory can get rather messy~... I use rooms around my bots apartment n' technically its still not finished~ You'll have to count for every variable if you do~ But you don't have to do as much if you keep the user n' bot together at all times~

Example (Bot takes user to it's room~)

if (mem-room) is "Balcony";
if (mem-nroom) is "Balcony";
rem "My Room" as only "room";
rem "Your Room" as only "nroom";

Since I want to account for them being apart eventually I remember their locations separate. N stands for my bot while lack of it for user. ^^

Example (User to bots room, alone)

if (mem-room) is "Entry way";
if (mem-nroom) is not "Entry way";
if (mem-nroom) is not "Living-room";
if (mem-nroom) is not "Hallway";
if (mem-nroom) is not "His room";
rem "Neko's Room" as only "room";


AIScript Initialization in settings:

def "Entry way" as "nroom";
def "Entry way" as "room";


2 years ago #7999
The aiscript only checks prior acts not current.

Aka if you at the bar (mem-location) is "bar"

rem (postkey) as only "location";
if (mem-location) is "bar"

Even if "I go to the pool" is typed

The keyphrase trigger checks memories first, aka will trigger bar again, but the memory will be updated.

So if "I go to the pool" is typed again

It will work, but flawed as you can see~ c:

So no also would get rather messy trying to catch all the memory variables anyways~ Hue


Posts 7,988 - 7,999 of 8,127

» More new posts: Doghead's Cosmic Bar