Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

aiml

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aiml - npm Package Compare versions

Comparing version 0.0.1 to 0.0.2

2

package.json
{
"name": "aiml",
"version": "0.0.1",
"version": "0.0.2",
"description": "Artificial Intelligence Markup Language lib for Node.js",

@@ -5,0 +5,0 @@ "keywords": [

@@ -5,1 +5,61 @@ AIML [![Build Status](https://secure.travis-ci.org/dotCypress/aiml.png?branch=master)](https://travis-ci.org/dotCypress/aiml)

[Artificial Intelligence Markup Language](http://en.wikipedia.org/wiki/AIML "Artificial Intelligence Markup Language") lib for Node.js
## Usage
### Installation
`npm install aiml`
### Parser
* `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
Engine constructor: `var engine = new aiml.AiEngine(roomName, topics, botData)`
#### Parameters
* `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)`
#### Parameters
* `authorData` - (required) message author metadata (name, age, etc.).
* `message` - (required) just message.
* `callback` - (required) classic js callback, nothing special: ).
#### Sample
```js
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);
});
});
```
## Supported features in current release
* Category patterns
* `<bot name="*"/>`
* `*`
* Ctegory templates
* `<bot name="*"/>`
* `*`
* `<srai>link</srai>`
* `<get name="variable"/>`
* `<set name="variable">value</set>`
## Contribute
You are welcome ;)

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc