Install Dragon Copilot Ambient SDK

Dragon Copilot Ambient SDK is published on Maven Central.

Use version catalogs to add the Ambient SDK as a dependency in your project:

  1. Make sure Maven Central is included in your settings.gradle.kts file, so that Gradle can resolve the dependency.

    dependencyResolutionManagement {
        repositories {
            google()
            mavenCentral() // Required for dragoncopilot-ambient
        }
    }
    
  2. Add the Ambient SDK version and library alias to your gradle/libs.versions.toml file.

    [versions]
    dragoncopilot-ambient = "2.0.0"
    
    [libraries]
    dragoncopilot-ambient = { group = "com.microsoft.dragoncopilot.ambient", name = "dragoncopilot-ambient", version.ref = "daxkit" }
    
  3. Add the Ambient SDK dependency to your module-level build.gradle.kts file.

    dependencies {
      implementation(libs.dragoncopilot-ambient)
    }