How can I program a simple chat bot AI?

后端 未结 11 1852
一整个雨季
一整个雨季 2021-01-29 20:33

I want to build a bot that asks someone a few simple questions and branches based on the answer. I realize parsing meaning from the human responses will be challenging, but how

相关标签:
11条回答
  • 2021-01-29 21:03

    Folks have mentioned already that statefulness isn't a big component of typical chatbots:

    • a pure Markov implementations may express a very loose sort of state if it is growing its lexicon and table in real time—earlier utterances by the human interlocutor may get regurgitated by chance later in the conversation—but the Markov model doesn't have any inherent mechanism for selecting or producing such responses.

    • a parsing-based bot (e.g. ELIZA) generally attempts to respond to (some of the) semantic content of the most recent input from the user without significant regard for prior exchanges.

    That said, you certainly can add some amount of state to a chatbot, regardless of the input-parsing and statement-synthesis model you're using. How to do that depends a lot on what you want to accomplish with your statefulness, and that's not really clear from your question. A couple general ideas, however:

    • Create a keyword stack. As your human offers input, parse out keywords from their statements/questions and throw those keywords onto a stack of some sort. When your chatbot fails to come up with something compelling to respond to in the most recent input—or, perhaps, just at random, to mix things up—go back to your stack, grab a previous keyword, and use that to seed your next synthesis. For bonus points, have the bot explicitly acknowledge that it's going back to a previous subject, e.g. "Wait, HUMAN, earlier you mentioned foo. [Sentence seeded by foo]".

    • Build RPG-like dialogue logic into the bot. As your parsing human input, toggle flags for specific conversational prompts or content from the user and conditionally alter what the chatbot can talk about, or how it communicates. For example, a chatbot bristling (or scolding, or laughing) at foul language is fairly common; a chatbot that will get het up, and conditionally remain so until apologized to, would be an interesting stateful variation on this. Switch output to ALL CAPS, throw in confrontational rhetoric or demands or sobbing, etc.

    Can you clarify a little what you want the state to help you accomplish?

    0 讨论(0)
  • 2021-01-29 21:05

    If you do not require a learning bot, using AIML (http://www.aiml.net/) will most likely produce the result you want, at least with respect to the bot parsing input and answering based on it.

    You would reuse or create "brains" made of XML (in the AIML-format) and parse/run them in a program (parser). There are parsers made in several different languages to choose from, and as far as I can tell the code seems to be open source in most cases.

    0 讨论(0)
  • 2021-01-29 21:07

    I'm not sure this is what you're looking for, but there's an old program called ELIZA which could hold a conversation by taking what you said and spitting it back at you after performing some simple textual transformations.

    If I remember correctly, many people were convinced that they were "talking" to a real person and had long elaborate conversations with it.

    0 讨论(0)
  • 2021-01-29 21:09

    I think you can look at the code for Kooky, and IIRC it also uses Markov Chains.

    Also check out the kooky quotes, they were featured on Coding Horror not long ago and some are hilarious.

    0 讨论(0)
  • 2021-01-29 21:10

    I would suggest looking at Bayesian probabilities. Then just monitor the chat room for a period of time to create your probability tree.

    0 讨论(0)
提交回复
热议问题