AIML – Tag
<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…
<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…
<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…
<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…
<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…
The PostgreSQL UPDATE Query is used to modify the existing records in a table. You can use WHERE clause with UPDATE query to update the selected rows. Otherwise, all the rows would…
<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…
<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 −…
The PostgreSQL AND and OR operators are used to combine multiple conditions to narrow down selected data in a PostgreSQL statement. These two operators are called conjunctive operators. These operators provide a means to…
<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…
The PostgreSQL WHERE clause is used to specify a condition while fetching the data from single table or joining with multiple tables. If the given condition is satisfied, only then…