AI Zone Admin Forum Add your forum

NEWS: Chatbots.org survey on 3000 US and UK consumers shows it is time for chatbot integration in customer service!read more..

Is there a market for Chatbot brains?
 
 

I would venture a guess that most people that get interested in chatbots have their interest wane upon discovering how hard it is to make their iteration of chatbot have an interesting personality.

While there are a number of open-source platforms to run a chatbot, there are no open-source “brain files” for fully mature bots that I know of.  I do not mean the basic chatbot files for ALICE or Rose(lite), I mean fully embodied personalities.  Are these being sold, or is there just no interest outside the “hobbyist” niche?

 

 
  [ # 1 ]

I guess the main reason these are not open source is simply due to the enormous amount of work it takes to develop a general conversational chatbot into a fully mature stage. You are correct, these are being sold instead.

[spam mode]
Mitsuku is available for licencing at https://www.pandorabots.com/docs/modules/#mitsuku
Its parameters can be altered to create your own individual character,(name, age, location, likes/dislikes etc)
Many companies use it as a general personality layer to answer off topic questions that their own bots can’t handle.
[/spam mode]

 

 
  [ # 2 ]

I have been thinking about this for Uberbot and I think there are two ways of looking at “Robot personalities”. Although Uberbot uses its own custom behavioral language, it was inspired by AIML so the following comments should be relevant.

1. There are “fixed” properties which in AIML are set up as AI properties. These include name, age, birthday, favorite color/football team/actor/actress/play/movie etc etc, location, possibly religion and many others. You can find these by searching all AIML files for the < bot name=“property” > element. Fixed properties are easy for the AI developer to code, and easy to be customized.

2. Then you have “behavioural” aspects which is how the AI replies to particular types of question. The AIs behaviour is defined by all AIML categories so this means you can’t separate the AI’s personality from the complete set of loaded AIML. But this is not useful as it means we would potentially have to re-write the entire AI to change its personality.

Now a lot of “factual” questions have answers that are the same for any (non-pathological) AI. Eg if you ask the AI “when is the next world cup” or “is 1234567 a prime number” it should give the same answer regardless of personality. So I think AIML categories relating to factual questions could be the same for any AI. This means we could have the AI’s personality contained in an AIML module designed to handle subjective/personality type of questions, and you only have one module to edit if you want to change the personality.

(Note: you could argue an AI’s personality might hate maths or football (or even being questioned at all) and give non-factual answers to factual questions. That’s why I said non-pathological, basically I am assuming any underlying AI personality is happy to answer any factual question accurately, if it knows the answer).

Finally, as Steve said this is an important issue if you want a marketable AI that can be customized for different clients.

 

 
  [ # 3 ]
Will Rayer - May 13, 2019:

... we could have the AI’s personality contained in an AIML module designed to handle subjective/personality type of questions, and you only have one module to edit if you want to change the personality…Finally, as Steve said this is an important issue if you want a marketable AI that can be customized for different clients.

This seems to encapsulate the real issue- not having a standard form of a “behavioral module” that controls the personality of the bot.  For my own bot, I needed to code the behavioral aspects myself (not AIML or CS, but the interpreter code itself), but this type of custom approach is inelegant at best.

 

 
  login or register to react