Questions tagged [aiml]

Artificial Intelligence Markup Language (AIML) is an XML dialect for creating natural language software agents. It was created by Dr. Richard S. Wallace, who created the A.L.I.C.E. Foundation, which supports AIML.

Artificial Intelligence Markup Language (AIML) is an XML dialect for creating natural language software agents. It was created by Dr. Richard S. Wallace, who created the A.L.I.C.E. Foundation, which supports AIML.

See: http://en.wikipedia.org/wiki/AIML

281 questions
2
votes
1 answer

AIML processorextension custom java method calls

I am using alice 2 aiml chatbot in android. My need is to be able to invoke certain methods when certain questions are asked by the users to return the answer after a few calculations. I followed this question posted earlier in the exact same…
Dev_Man
  • 847
  • 1
  • 10
  • 28
2
votes
3 answers

Am trying to built a chat bot using aiml with python

import aiml import os kernel = aiml.kernel() if os.path.isfile("bot_brain.brn"): kernel.bootstrap(brainFile = "bot_brain.brn") else: kernel.bootstrap(learnFiles = "std-startup.xml", commands = "load aiml b") …
kumararaja
  • 47
  • 8
2
votes
1 answer

AIMLProcessorExtension: tag not working in aiml

I am trying to create my own tag in aiml using program tab. The tag is not working. What is the problem? Java code: public class AIMLExtension implements AIMLProcessorExtension{ public Set extensionTagNames = Utilities.stringSet("check"); …
Kavipriya
  • 441
  • 4
  • 17
2
votes
1 answer

How do I build a chatbot interface to a database in Python?

Database queries can be highly technical. I wish to build a Python chatbot to query a database/csv data-frame. I do not wish to use any ready API services as the data could be proprietary. Sample example: with internal HR bot employees can ask…
2
votes
1 answer

AIML and python3

Hey I just started looking into programming Chatbots with python3 is there an interpreter for AIML files for python3. I tried looking in pip but I can only find it supported for python 2?
Hau5ratz
  • 41
  • 1
  • 4
2
votes
0 answers

Building chat bot with aiml vs nodejs

I have a requirement to service my website customers with queries regarding courses offered, its fees, course details and timings, etc. With aiml, I can put it my business logic straightup without any AI OR ML where as with Microsoft Bot Framework…
kittu
  • 6,662
  • 21
  • 91
  • 185
2
votes
2 answers

AIML - Changing bot properties

I found the bot.aiml file here, and it uses things such as . I assume this works similar to something like , which would get the client's name. So, how would I set properties such as genus for the bot, so that I…
Jacob Garby
  • 773
  • 7
  • 22
2
votes
1 answer

How to use program AB

I have downloaded program-ab-0.0.4.3, so that I can make use of AIML 2.0 features. I want to make a API call based on users input. Any guidance on how do i do it ? I read about oob tags and sraix, there are some oob tag examples in aiml folder in…
2
votes
0 answers

How to create our own TAG in AIML?

bot in Python for which I need to create custom tag in AIML. I have created some basic skeleton but I need to work for advancement.
Sudhir Kumar
  • 301
  • 2
  • 9
2
votes
1 answer

How can we use AIML for making a chatbot?

Can we give random responses for a single question in AIML. For "Hi", I need random replies like "hey", "hello", "hi", etc.
user6671441
2
votes
3 answers

pyaiml does not respond on tag

I am trying the PyAiml package to write a chatbot. I wrote a very basic program with all those default aiml files from A.L.I.C.E. Everything works fine so far except the tag. I thought it was the session problem. Then I fixed the session. But…
moshfiqur
  • 2,065
  • 3
  • 24
  • 27
2
votes
2 answers

How to publish AIML embedded with javascript?

I've written an AIML file for a chat bot and I'd like to build an interactive web application which allows me to chat with the bot in the web browser. Is it possible to achieve this with HTML & Javascript?
2
votes
1 answer

tag not working with punctuation?

I can't figure out a way around making the following work after adding '!' in the mids of it test gg
MrGuy
  • 654
  • 1
  • 5
  • 18
2
votes
2 answers

How to find multiple patterns in single category using AIML

I have been using AIML to make chatbot. I am unable to find multiple patterns in same category. How can we use OR clause in the pattern?
naik899
  • 98
  • 8
2
votes
2 answers

ImportError: No module named 'Kernel'

I'm using windows 10 and working on a chatbot project and use aiml integrated with python I got this error import aiml File"C:\Python34\lib\site-packages\aiml\__init__.py", line 4, in from Kernel import Kernel ImportError: No module…
user3625558
  • 31
  • 1
  • 2
1 2
3
18 19