This SDK integrates a fully serviced chat experience on the BotStacks platform.

The android SDK is still in active development. Check in regularly for updates!

Installation

Compose Multiplatform

Add ai.botstacks:chat-sdk:{version} to your dependencies

val commonMain by getting {
    dependencies {
        [...]
+       implementation("ai.botstacks:chat-sdk:{version}")
        [...]
    }
}
To setup Compose Multiplatform click here

Android Only

If you are only targeting Android the dependency is:

dependencies {
    [...]
+   implementation("ai.botstacks:chat-sdk-android:{version}")
    [...]
}
To setup android click here