Questions tagged [pandorabots]

Pandorabots is a RESTful API for integrating artificially intelligent chatbots into applications.

29 questions
1
vote
1 answer

How can my aiml interpreter in Android get to know the ' é ' character?

I created a chatbot with aiml in pandorabots having French as a language. Then I bought an API so I can implement it in an android application. But it doesn't recognize some words having an "é" in the pattern. How can my aiml interpreter in Android…
chaymaFr
  • 11
  • 1
1
vote
1 answer

AIML v2: Pandorabots - Two words keyword

When I try to use FAVOURITE GAME as keyword in AIML v2 (using Pandorabots) I get matches from * category, but not favourite game category. I have no idea what can be wrong. For example for favourite game I get: Sorry, could you repeat in an other…
user3565923
  • 153
  • 2
  • 12
1
vote
2 answers

How to handle multiple questions within one utterance?

Sample: User: How old are you and where do you live ? Alice: I'm 7 months old. I live on earth. My try: WHERE DO YOU LIVE HOW OLD ARE…
Stephan
  • 41,764
  • 65
  • 238
  • 329
1
vote
1 answer

Get actions/variables using a Bot with AIML

I'm totally new to chatbots and I've started looking at AIML and Pandorabots with the idea of integrate its API to my App. After some reading, I'm not sure if it's the best option. What I'd like to do is something like that (think as if my App was a…
Emi
  • 4,597
  • 2
  • 31
  • 34
1
vote
1 answer

PandoraBot API: Invalid botname

I got the following error: { "status": "error", "message": "Invalid botname"} When I am using the Pandorabot CLI. My bot name and my setting name are the same, so do you have any idea on where the problem is?
Bogo
  • 688
  • 1
  • 6
  • 15
1
vote
2 answers

AIML - Parsing user inputs as variable to Python

I am working on an AIML project for leisure and came across pandorabots. I was wondering if there is a way to parse a variable from the user inputs into other languages (in this case python) or framework so that we can do further manipulation…
1
vote
0 answers

Process inputs to pandorabot using JavaScript

On my webpage I have a form that accesses a bot API via talk.js var pb = new Pandorabot("aiaas.pandorabots.com","1409611418607", "botipiranga" etc); I have a series of .txt documents on a server, say, lyrics to songs. I want to query the…
8-Bit Borges
  • 9,643
  • 29
  • 101
  • 198
1
vote
3 answers

Problems while connecting to pandorbot server in android

I am trying to make a chatbot in android. So, I am trying to connect pandorabot with my android app. public class Brain { public String defaultCustid = "0"; public String custid = defaultCustid; public String responseFailed = "RESPONSE…
Ishwor
  • 13
  • 4
1
vote
1 answer

XML-RPC Error, org.xmlpull.v1.XmlPullParserException

I'm try make an application chatbot in Android. I use Pandorabots as Chatbot server. To connect between Device Android with the Server. I use pandorabot XML-RPC API, and i use xml-rpc library from android-xmlrpc. so this my code: public class…
mas_bejo
  • 597
  • 2
  • 6
  • 22
0
votes
1 answer

C++ XML-RPC Calling

I haven't seen any documentation for calling XML-RPC by inputing certain strings and get respone of some strings in c++ by connecting to an XML API. This is a documentation provided by the server. I can't figure out how to do this A client can…
0
votes
1 answer

How to connect to XML-RPC from c#

How to connect to XML-RPC Api from c# , A client can interact with a Pandorabot by POST'ing to: http://www.pandorabots.com/pandora/talk-xml The form variables the client needs to POST are: botid - see H.1 above. input - what you want said to the…
0
votes
0 answers

integrating videos in chatbot using pandorabots

I’m developing with pandorabots and I really like it, but I have one problem. It’s integrating videos into the chatbot. The only format that works is, for example. http://www.alex-bernardini.fr/videos/Wildlife.mp4 Any other URL format doesn’t…
0
votes
2 answers

I am trying to make a discord chatbot but I am facing a problem

I have been trying to make a discord chatbot I finished the code "technically" it should work Here's my code : import asyncio, aiohttp, discord, re class FrostCleverbot(discord.Client): async def on_ready(self): print('Logging In...') …
Jake
  • 13
  • 1
  • 4
0
votes
1 answer

How can i use loop in aiml pandorabots for countries population?

i am creating a chat bot with aiml in pandorabots who knows the population of all countries and cities . How can i ask the chat bot "tell me the 10 countries with the largest population"? I have created a map file with the countries and the…
0
votes
1 answer

Could I export the things that I taught my chatbot at Pandorabots?

I already uploaded a bunch of AIML files to pandorabots. But I can't see where I could export the things I taught it. I understand from this doc, I could update my chatbot's "brain" such as from chatlogs. But could I export the teachings out…
codanad376
  • 65
  • 6
1
2