Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/theopenconversationkit/tock

Tock, the open source conversational AI toolkit.
https://github.com/theopenconversationkit/tock

ai alexa apple-business-chat assistant bot chatbot google-assistant kotlin messenger-bot nlp opensource rocketchat slack-bot teams tock twitter whatsapp

Last synced: 7 days ago
JSON representation

Tock, the open source conversational AI toolkit.

Awesome Lists containing this project

README

        

[![Build Status](https://app.travis-ci.com/theopenconversationkit/tock.png)](https://app.travis-ci.com/github/theopenconversationkit/tock)
[![Maven Central](https://img.shields.io/maven-central/v/ai.tock/tock-root.svg)](https://search.maven.org/search?q=tock)
[![Release Date](https://img.shields.io/github/release-date/theopenconversationkit/tock)](https://github.com/theopenconversationkit/tock/releases)

[![Gitter](https://badges.gitter.im/tockchat/Lobby.svg)](https://gitter.im/tockchat/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=body_badge)
[![Contributors](https://img.shields.io/github/contributors-anon/theopenconversationkit/tock)](https://github.com/theopenconversationkit/tock/graphs/contributors)
[![Commit Activity](https://img.shields.io/github/commit-activity/m/theopenconversationkit/tock)](https://github.com/theopenconversationkit/tock/pulse/monthly)

[![Home](https://img.shields.io/website?label=home&down_message=offline&up_message=doc.tock.ai&url=https%3A%2F%2Fdoc.tock.ai)](https://doc.tock.ai)
[![Demo](https://img.shields.io/badge/demo-live-blue)](https://demo.tock.ai)
[![License](https://img.shields.io/github/license/theopenconversationkit/tock)](https://github.com/theopenconversationkit/tock/blob/master/LICENSE)

# Tock - The Open Conversation Kit

Tock Logo

_Curious about what Tock is or, who is using it? Check out our [website](https://doc.tock.ai)!_

Open Conversational AI platform to build Bots:

* _Natural Language Processing_ open source stack, compatible with OpenNLP, Stanford, Rasa and more
* _Tock Studio_ user interface to build stories and analytics
* _Conversational DSL_ for Kotlin, Nodejs, Python and REST API
* _Built-in connectors_ for numerous text/voice channels: Messenger, WhatsApp, Google Assistant, Alexa, Twitter and more
* _Provided toolkits_ for custom Web/Mobile integration with React and Flutter
* _Deploy anywhere_ in the Cloud or On-Premise with Docker

🏠 Home: [https://doc.tock.ai](https://doc.tock.ai)

🕮 Documentation: [https://doc.tock.ai/tock](https://doc.tock.ai/tock/index.html)

🐋 Docker configurations: [https://github.com/theopenconversationkit/tock-docker](https://github.com/theopenconversationkit/tock-docker)

▶️ Live demo: [https://demo.tock.ai](https://demo.tock.ai)

💬 Contact: [https://gitter.im/tockchat/Lobby](https://gitter.im/tockchat/Lobby)

## Using Pre-commit

This project uses **pre-commit** to automate code checks and formatting before each commit, ensuring consistent code quality and reducing errors.

It is very important to always execute these hooks to maintain the quality of the code.

### Installation
1. Install `pre-commit`:
```bash
pip install pre-commit
```
2. Set up the hooks in your repository:
```bash
pre-commit install
```
### Usage

Hooks will run automatically on each commit.

To run them manually on all files, use:
```bash
pre-commit run --all-files
```