Skip to content

Commit

Permalink
Add Yandex Alice to channels in README (#21)
Browse files Browse the repository at this point in the history
Co-authored-by: Pavel Kaplya <[email protected]>
  • Loading branch information
Pazus and Pavel Kaplya authored Jul 2, 2020
1 parent 4a60946 commit 94c10fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 2 additions & 1 deletion channels/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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).
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).

0 comments on commit 94c10fb

Please sign in to comment.