Skip to content

--8<-- [start:prerequisites]

환경과 프로젝트가 다음 요구 사항을 충족하는지 확인하세요:

  • JDK 17+
  • Kotlin 2.2.0+
  • Gradle 8.0+ 또는 Maven 3.8+

--8<-- [end:prerequisites]

--8<-- [start:dependencies]

Koog 패키지를 의존성으로 추가하세요:

dependencies {
    // 안정 버전
    implementation("ai.koog:koog-agents:1.0.0")

    // 베타 버전
    implementation("ai.koog:koog-agents-additions:1.0.0-beta")
}
dependencies {
    // 안정 버전
    implementation 'ai.koog:koog-agents:1.0.0'

    // 베타 버전
    implementation 'ai.koog:koog-agents-additions:1.0.0-beta'
}
xml
<dependency>
    <!-- 안정 버전 -->
    <dependency>
        <groupId>ai.koog</groupId>
        <artifactId>koog-agents-jvm</artifactId>
        <version>1.0.0</version>
    </dependency>

    <!-- 베타 버전 -->
    <dependency>
        <groupId>ai.koog</groupId>
        <artifactId>koog-agents-additions-jvm</artifactId>
        <version>1.0.0-beta</version>
    </dependency>
</dependency>

--8<-- [end:dependencies]

--8<-- [start:api-key]

LLM 제공업체로부터 API 키를 발급받거나 Ollama를 통해 로컬 LLM을 실행하세요. 자세한 내용은 Quickstart를 참고하세요.

--8<-- [end:api-key]