AIML – Tag

  • Post author:
  • Post category:AIML
  • Post comments:0 Comments

<topic> Tag is used in AIML to store a context so that later conversation can be done based on that context. Usually, <topic> tag is used in Yes/No type conversation. It helps AIML to…

Continue ReadingAIML – Tag

AIML – Tag

  • Post author:
  • Post category:AIML
  • Post comments:0 Comments

<that> Tag is used in AIML to respond based on the context. Syntax <that> template </that> For example, consider the following conversation. Human: Hi Alice! What about movies? Robot: Do you…

Continue ReadingAIML – Tag

AIML – , Tags

  • Post author:
  • Post category:AIML
  • Post comments:0 Comments

<set> and <get> tags are used to work with variables in AIML. Variables can be predefined variables or programmer created variables. Syntax <set> tag is used to set value in a variable. <set…

Continue ReadingAIML – , Tags

AIML – Tag

  • Post author:
  • Post category:AIML
  • Post comments:0 Comments

<random> Tag is used to get random responses. This tag enables AIML to respond differently for the same input. <random> tag is used along with <li> tags. <li> tags carry different…

Continue ReadingAIML – Tag

AIML – Tag

  • Post author:
  • Post category:AIML
  • Post comments:0 Comments

<srai> Tag is a multipurpose tag. This tag enables AIML to define the different targets for the same template. Syntax <srai> pattern </srai> Following are the commonly used terms associated with srai −…

Continue ReadingAIML – Tag

AIML – Tag

  • Post author:
  • Post category:AIML
  • Post comments:0 Comments

<star> Tag is used to match wild card * character(s) in <pattern> Tag. Syntax <star index = "n"/> n signifies the position of * within the user input in <pattern> Tag. Consider the following…

Continue ReadingAIML – Tag

AIML – Basic Tags

  • Post author:
  • Post category:AIML
  • Post comments:0 Comments

In this tutorial, we'll discuss the basic tags of AIML. <aiml> − defines the beginning and end of a AIML document.<category> − defines the unit of knowledge in Alicebot's knowledge base.<pattern> − defines the pattern…

Continue ReadingAIML – Basic Tags