Ai Dreams Forum

Chatbots => General Chatbots and Software => Topic started by: Zero on July 03, 2018, 03:16:11 pm

Title: Do you think BBCode is cool for writing chatbot?
Post by: Zero on July 03, 2018, 03:16:11 pm
I don't think so personally, but do you think BBCode is appropriate as a chatbot authoring language?
Code
[io] * told me to say *
[o]Why would *1 tell you to say "*2"?[/o]
[o]Did you say "*2" after *1 told you to?[/o]
[/io]
Title: Re: Do you think BBCode is cool for writing chatbot?
Post by: Korrelan on July 03, 2018, 05:26:36 pm
I also wouldn't think so personally, though I've not got much experience with BBCode.  Looks like it was designed for a very narrow/ specific domain/ usage though.

I would use a 'proper' language, with plenty of flexibility and low level commands/ functions for writing those 'odd' functions that are usually required.

 :)
Title: Re: Do you think BBCode is cool for writing chatbot?
Post by: Freddy on July 03, 2018, 06:04:54 pm
Really it's just enclosing things in tags - AIML could be laid out the same way as that's just XML.

Code
<category>
<pattern>HELLO THERE</pattern>
<template>Hey, you are you ?</template>
</category>

Code
[c]
[p]HELLO THERE[/p]
[t]Hey, how are you ?[/t]
[/c]

With ElfScript I used short command names to minimise typing and ease readability.
Title: Re: Do you think BBCode is cool for writing chatbot?
Post by: ranch vermin on July 04, 2018, 02:13:20 am
depends does it have memory to fill in from an external environment/user talking to it...  then i guess it could,  thats all it needs.
Title: Re: Do you think BBCode is cool for writing chatbot?
Post by: Zero on July 05, 2018, 09:49:28 am
Thank you for your inputs.