Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/polettix/bot-chatbots
Basic system for ChatBots
https://github.com/polettix/bot-chatbots
Last synced: 27 days ago
JSON representation
Basic system for ChatBots
- Host: GitHub
- URL: https://github.com/polettix/bot-chatbots
- Owner: polettix
- License: other
- Created: 2016-11-11T18:21:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-11T06:42:22.000Z (almost 7 years ago)
- Last Synced: 2024-10-27T12:32:50.759Z (3 months ago)
- Language: Perl
- Size: 156 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
# NAME
Bot::ChatBots - Basic system for ChatBots
# VERSION
This document describes Bot::ChatBots version {{\[ version \]}}.
# SYNOPSIS
use Bot::ChatBots;
# more will come, possibly in sub-modules# DESCRIPTION
The Bot::ChatBots family of modules aim to help setting up ChatBots in
different technologies.The basic model (still somehow in a state of flux) is an extension of
[Data::Tubes](https://metacpan.org/pod/Data::Tubes), with a few differences:- pipelines in [Data::Tubes](https://metacpan.org/pod/Data::Tubes) are usually assumed to know where to take
their inputs and aim at processing all of it as fast as possible, while in
this case the it generally comes asynchronously and over an indefinite
length of time. This means that the sources of records are usually coded
differently and then push records inside pipelines as they arrive;
- processing in [Data::Tubes](https://metacpan.org/pod/Data::Tubes) is generally synchronous for simplicity,
while in this case you might have longer running tasks. This can be
addressed in different ways, one of which might be to split your pipeline
into chunks, and decouple these chunks via some queuing mechanism.Apart from this, the suggested way to use Bot::ChatBots elements is
sticking to the [Data::Tubes](https://metacpan.org/pod/Data::Tubes) way of work: define your pipelines, reuse
already-available tube builders or code your own adhering to the (simple)
tube interface.# BUGS AND LIMITATIONS
Report bugs either GitHub (patches welcome).
# SEE ALSO
[Bot::ChatBots::Telegram](https://metacpan.org/pod/Bot::ChatBots::Telegram) should be the first implementation of a backend (for
Telegram).# AUTHOR
Flavio Poletti
# COPYRIGHT AND LICENSE
Copyright (C) 2016 by Flavio Poletti
This module is free software. You can redistribute it and/or modify it
under the terms of the Artistic License 2.0.This program is distributed in the hope that it will be useful, but
without any warranty; without even the implied warranty of
merchantability or fitness for a particular purpose.