agentworlds

1.3.0 • Public • Published

AgentWorlds

Demo Image
Build Status Demo

Usage

Ping Pong Bot:

  var AgentWorlds = require('agentworlds')
  var agentclient = AgentWorlds.start("AGENT_NAME") // default agent name is F1 and inculde the room
  agentclient.socket.on('r_speak',function(msg,id) {
  // easy way to use agentclient.speak('ping') in the browser console. not node.js client
     if (msg == "ping") {
     // reply to pong.
     agentclient.speak('pong!')
     }
  })

Echo Bot:

  var AgentWorlds = require('agentworlds')
  var agentclient = AgentWorlds.start("AGENT_NAME") // default agent name is F1 and inculde the room
  agentclient.socket.on('r_speak',function(msg,id) {
  // easy way to use agentclient.speak('ANYTHING') in the browser console. not node.js client
  // then echo to user
     agentclient.speak(msg)
     }
  })

Package Sidebar

Install

npm i agentworlds

Weekly Downloads

5

Version

1.3.0

License

none

Unpacked Size

7.21 kB

Total Files

7

Last publish

Collaborators

  • rickandress