https://github.com/ispyhumanfly/gobots
A declarative framework for creating intelligent chatbots.
https://github.com/ispyhumanfly/gobots
artificial-intelligence bots chatbot-framework discord irc
Last synced: about 2 months ago
JSON representation
A declarative framework for creating intelligent chatbots.
- Host: GitHub
- URL: https://github.com/ispyhumanfly/gobots
- Owner: ispyhumanfly
- License: mit
- Created: 2017-10-09T07:25:38.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-10T17:25:47.000Z (about 4 years ago)
- Last Synced: 2024-10-18T20:48:27.906Z (7 months ago)
- Topics: artificial-intelligence, bots, chatbot-framework, discord, irc
- Language: TypeScript
- Homepage:
- Size: 165 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gobots
A declarative framework for creating intelligent chatbots.
## Synopsis
import * as Gobot from "gobots"
new Gobot.Server({
name: "Eliza",
description: "Communication between man and machine.",
author: "Dan Stephenson",
version: "2.0.0",
services: {
enabled: ["discord", "irc"],
discord: {
token: "super_crazy_long_string"
},
irc: {
servers: [
{
address: "irc.freenode.net",
nickname: `${this.name}`,
password: "bar",
channels: ["#gobot", "#gobots"]
}
]
}
},
actions: [
{
"Eliza, what version are you?": `Hi, I am version ${this.version}.`,
"Eliza, who created you?": `Hi, I was created by ${this.author}.`
}
]
}).start({verbose: true})# License
MIT
# Copyright
2017 - 2919 Dan Stephenson (ispyhumanfly)