Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Artificial Intelligence Markup Language lib for Node.js
npm install aiml
aiml.parse(xml, callback)
- parse string with AIML Xml.aiml.parseFiles(files, callback)
- parse file or files.aiml.parseDir(dir, callback)
- parse all files in specified directory.Engine constructor: var engine = new aiml.AiEngine(roomName, topics, botData)
roomName
- (required) name of chat room.topics
- (required) array of topics(parser results).botData
- (optional) bot metadata (name, version, gender, etc.).Main awesome function: engine.reply(authorData, message, callback)
authorData
- (required) message author metadata (name, age, etc.).message
- (required) just message.callback
- (required) classic js callback, nothing special: ).
var aiml = require('aiml')
aiml.parseFile('sample.aiml', function(err, topics){
var engine = new aiml.AiEngine('Default', topics, {name: 'Jonny'});
var responce = engine.reply({name: 'Billy'}, "Hi, dude", function(err, responce){
console.log(responce);
});
});
<bot name="*"/>
*
<bot name="*"/>
*
<srai>link</srai>
<get name="variable"/>
<set name="variable">value</set>
You are welcome ;)
FAQs
Artificial Intelligence Markup Language lib for Node.js
The npm package aiml receives a total of 5 weekly downloads. As such, aiml popularity was classified as not popular.
We found that aiml demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.