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..

Bot Specific Concepts
 
 

We have multiple (but similar) bots running on the same instance of Chatscript. Most of their topics are common, and there are a few which are bot specific using bot=.

In the same was as you can with topics, is there any way to make a concept bot specific as well - e.g Bot A has one list of product names, Bot B has a different list of product names, but both store them in a ~products concept so that a common ProductInfo topic can access both but give different answers depending on whether Bot A or Bot B is being talked to? Realise we could do with separate concept lists and if statements, but would rather have something that scales.

Any help or better work-arounds appreciated!

David

 

 

 
  [ # 1 ]

one can build concept specific and function specific compiles as well.  And you dont have to use bot= on topics. One mechanism can manage all of these….
A makefile for this looks like this:

bot: 0
private/harry/CONTROL/botmacro.top
private/georgina/CONTROL/botmacro.top

bot: 65536 harry
private/harry/concepts.top
private/harry/functions.top
private/harry/introductions.top
bot: 1 georgina
private/georgina/concepts.top
private/georgina/functions.top
private/georgina/introductions.top

There is a discussion of this in documentation

 

 
  [ # 2 ]

Thanks, will check it out.

David

 

 
  login or register to react