Jaycf Kotlin
1.3.8
JAICF is a comprehensive enterprise-level framework from Just AI for conversational voice assistants and chatbots development using Kotlin-based DSL.
val HelloWorldScenario = Scenario {
state("main") {
activators {
event(AlexaEvent.LAUNCH)
intent(DialogflowIntent.WELCOME)
regex("/start")
}
action {
reactions.run {
sayRandom("Hi!", "Hello there!")
say("How are you?")
telegram?.image("https://somecutecats.com/cat.jpg")
}
}
}
}
repositories {
mavenCentral()
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("com.just-ai.jaicf:core:$jaicfVersion")
}
Or using Maven configuration
The latest version is
Please visit JAICF documentation for Quick Start and detailed explanations of how to start using this framework in your projects.
Here are some examples you can find helpful to dive into the framework.
Please see the contribution guide to learn how you can be involved in JAICF development.
You're welcome to join a Slack community to share your ideas or ask questions regarding the JAICF usage.
JAICF is under Apache 2.0 license meaning you are free to use and modify it without the need to open your project source code.