chatbot

How to program simple chat bot AI?

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 do you setup the program to deal with the "state" of the conversation? EDIT: It will be a one-to-one conversation between a human and the bot. ...

Anyone found a way to download google chat logs?

I'd like to be able to get all my Google chat logs so that I can use them for training a chat bot type of thing. I am aware of the limitations that have been imposed by Google so that chats cannot be simply downloaded through IMAP. I'm looking for workarounds. ...

Openfire3.6.3 unable to connect to yahoo gateways

Hi, I am newbie as far as openfire is concerned. I want every user whether its on gtalk, yahoo, MSN to contact to my server but right now only gtalk users are able to connect and see presence connected. but yahoo users are able to add me as buddy but presence goes offline always. I have checked the connection in gateways tab it shows ...

Facebook status update through php

Hi, I want to develop a bot which will update the status of a facebook account using php. Please guide me on this ...

Integrating my program with a web2.0 website

I'm creating an ELIZA-like chatterbot, and I'd like to calibrate it with Omegle, using what the other person type as the input. If it was a regular HTML page, I could parse it and send back the response to some script, but checking the source code, I've noticed that the entire page is created using Javascript, but obfuscates the entire...

Feasibility of beating the Turing Test with modern software?

I ask this academically, I want to ask aloud a very important question and have the community try to answer it. Can we build a system that generates a scene to play out along a live anonymous group video chatroom that can read the text typed at it and respond with a chatbot? Live Internet video is often blurry and has low resolution. ...

How to create a smart chat-bot?

I know that it's still an open problem so I don't expect to see complete answers here. I just want to find some approaches to solve the next problem: I have a model (assume that is's bot's memory), and different words are associated with different objects in the model. Speaking with the bot is like executing sql-queries with a DB. Langu...

chatbot using twisted and wokkel

I am writing a chatbot using Twisted and wokkel and everything seems to be working except that bot periodically logs off. To temporarily fix that I set presence to available on every connection initialized. Does anyone know how to prevent going offline? (I assume if i keep sending available presence every minute or so bot wont go offline...

Problems with Ajax Chat version .8.3

I am not sure why, but my Ajax Chatroom ever once in awhile (once time ever other day on average I'd say), displays an connection error 503. Now doing some digging apparently 503 is an error for exceeding max connections, and the typical fix is increasing your limit to something like 400 but my max connections is already set to 1500. T...

Essential AIML responses?

What do you think are important pattern/temples to program. Like in a chatbot what does EVERY chatbot need a response for? Im just starting out making the aiml file and need some help... Heres the file now. <aiml> <category> <pattern>Hey</pattern> <template>Whats up?</template> <category> <category> <pattern>WHAT ARE YOU?...

ZeroConf Chat with Python

Hello all, I am trying to set up a Bonjour (or Ahavi) chatbot for our helpdesk system that would answer basic questions based on a menu system. The basis of my question is how do I get python to create the bot so that it connects to the network as a chat client. Basically, anyone on my network with iChat or Empathy (or any chat program...

Chatbot library

I'm trying to add some simple chatbot behavior to an existing C program. The chat bot doesn't have to be too sophisticated (Eliza level) but it needs to have been written with reuse in mind. Are there any existing chat bot libraries available for C? ...

Tutorial or Framework for a Very Simple Chatbot?

I've been doing some research into writing my own chatbot, and I've read quite a few posts on stackoverflow about them. However, none really seem to answer my somewhat basic question - is there a pre-built framework where I can simply type in something like "if user enters 'mother', respond with 'tell me more about your family'". My ques...