Skip to content

jabberzac/chat-agent-core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chat-agent-core

A platform for developing and testing Chat agents that can connect to multiple environments (Discord, Facebook, etc), react to messages and then output to the same or any other environment.

Setup and run

  • npm install
  • Create a config.json (example below)
  • npm run start:dev

config.json example

{
    "env": {
        "dungarmatic": {
            "type": "discord",
            "DISCORD_TOKEN": "blah"
        }
    },
    "bots": [
        {
            "id": "dungarmatic-discordzac",
            "env": [
                "dungarmatic"
            ],
            "inputs": [
                {
                    "type": "discord",
                    "config": {
                        "channels": [
                            "channel-id"
                        ]
                    }
                }
            ],
            "outputs": [
                {
                    "type": "discord"
                }
            ],
            "plugins": [
                {
                    "type": "simple-repeater"
                }
            ]
        }
    ]
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published