Search code examples
chatbotaiml

Can a AIML chatbot support unlimited queries from user?


I wanted to make a chatbot to answer questions from user with AIML but i was wondering if there is any limitation because i think i will need that the chatbot supports unlimited queries because we don't know how big this project will be


Solution

  • Humans have a limit to the number of clients they can handle at once. However, with chatbots, there is no such constraint and they can handle as many queries as required at once.

    You can use this kind of asset from the unity asset store to implement and customise the chatbot quickly.

    Do not worry about query limits. That can be easily scaled up.

    You can use the free A.L.I.C.E. AIML as well. It includes a knowledge base of approximately 41,000 categories. Here’s an example of one of them:

    <category>
    <pattern>WHAT ARE YOU</pattern>
    <template>
    <think><set name=”topic”>Me</set></think>
    I am the latest result in artificial intelligence,
    which can reproduce the capabilities of the human brain
    with greater speed and accuracy.
    </template>
    </category>