From 94c10fb074eaddbea99e230329180dd3ee65bd45 Mon Sep 17 00:00:00 2001 From: Pazus Date: Thu, 2 Jul 2020 20:35:43 +0300 Subject: [PATCH] Add Yandex Alice to channels in README (#21) Co-authored-by: Pavel Kaplya --- README.md | 2 +- channels/README.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 88368142..3c8547e6 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ dependencies { ## Key features * Provides [Kotlin-based DSL](https://github.com/just-ai/jaicf-kotlin/wiki/Scenario-DSL) for writing context-aware dialogue scenarios in declarative style. -* Connects to any [voice and text channels](https://github.com/just-ai/jaicf-kotlin/wiki/Channels) like [Amazon Alexa](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/alexa), [Google Actions](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/google-actions), [Slack](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/slack), [Facebook Messenger](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/facebook) and [others](https://github.com/just-ai/jaicf-kotlin/wiki/Channels). +* Connects to any [voice and text channels](https://github.com/just-ai/jaicf-kotlin/wiki/Channels) like [Amazon Alexa](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/alexa), [Google Actions](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/google-actions), [Yandex Alice](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/yandex-alice), [Slack](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/slack), [Facebook Messenger](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/facebook) and [others](https://github.com/just-ai/jaicf-kotlin/wiki/Channels). * Works with any [NLU engines](https://github.com/just-ai/jaicf-kotlin/wiki/Natural-Language-Understanding) like [Dialogflow](https://github.com/just-ai/jaicf-kotlin/tree/master/activators/dialogflow) or [Rasa](https://github.com/just-ai/jaicf-kotlin/tree/master/activators/rasa). * Enables developer to create dialogue scenarios that work [simultaneously in multiple platforms](https://github.com/just-ai/jaicf-kotlin/wiki/Channels#multi-channel-support) without any restrictions of platform-related features. * Contains a [JUnit-based test suite](https://github.com/just-ai/jaicf-kotlin/wiki/Testing) to automate dialogue scenarios testing. diff --git a/channels/README.md b/channels/README.md index abde6a1c..5e5117a4 100644 --- a/channels/README.md +++ b/channels/README.md @@ -7,6 +7,7 @@ You can connect your JAICF conversational agent to the channels listed below. * [Aimybox](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/aimybox) * [Amazon Alexa](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/alexa) * [Google Actions](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/google-actions) +* [Yandex Alice](https://github.com/just-ai/jaicf-kotlin/tree/master/channels/yandex-alice) ### Messengers @@ -25,4 +26,4 @@ Please refer to the selected channel page to learn how to connect your JAICF con You can learn how to create a new channel connection investigating existing implementations source code. In general, every channel in JAICF contains its own [BotRequest](https://github.com/just-ai/jaicf-kotlin/blob/master/core/src/main/kotlin/com/justai/jaicf/api/BotRequest.kt) and [Reactions](https://github.com/just-ai/jaicf-kotlin/blob/master/core/src/main/kotlin/com/justai/jaicf/reactions/Reactions.kt). -Depending on the type of connection it can implement [HttpBotChannel](https://github.com/just-ai/jaicf-kotlin/blob/master/core/src/main/kotlin/com/justai/jaicf/channel/http/HttpBotChannel.kt) (in case of webhook type) or [BotChannel](https://github.com/just-ai/jaicf-kotlin/blob/master/core/src/main/kotlin/com/justai/jaicf/channel/BotChannel.kt) directly (in case of websocket or long polling). \ No newline at end of file +Depending on the type of connection it can implement [HttpBotChannel](https://github.com/just-ai/jaicf-kotlin/blob/master/core/src/main/kotlin/com/justai/jaicf/channel/http/HttpBotChannel.kt) (in case of webhook type) or [BotChannel](https://github.com/just-ai/jaicf-kotlin/blob/master/core/src/main/kotlin/com/justai/jaicf/channel/BotChannel.kt) directly (in case of websocket or long polling).