Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Dragon Copilot Ambient SDK is published on Maven Central.
- Group ID:
com.microsoft.dragoncopilot.ambient - Artifact ID:
dragoncopilot-ambient - Hosted at: https://central.sonatype.com/artifact/com.microsoft.dragoncopilot.ambient/dragoncopilot-ambient
Use version catalogs to add the Ambient SDK as a dependency in your project:
Make sure Maven Central is included in your
settings.gradle.ktsfile, so that Gradle can resolve the dependency.dependencyResolutionManagement { repositories { google() mavenCentral() // Required for dragoncopilot-ambient } }Add the Ambient SDK version and library alias to your
gradle/libs.versions.tomlfile.[versions] dragoncopilot-ambient = "2.0.0" [libraries] dragoncopilot-ambient = { group = "com.microsoft.dragoncopilot.ambient", name = "dragoncopilot-ambient", version.ref = "daxkit" }Add the Ambient SDK dependency to your module-level
build.gradle.ktsfile.dependencies { implementation(libs.dragoncopilot-ambient) }