Package-level declarations

Types

Link copied to clipboard
@ConfigurationProperties(prefix = "ai.koog.deepseek", ignoreUnknownFields = true)
class DeepSeekKoogProperties(val enabled: Boolean, val apiKey: String, val baseUrl: String, val retry: RetryConfigKoogProperties? = null) : KoogLlmClientProperties

Configuration properties class for DeepSeek LLM provider integration within the Koog framework.

Link copied to clipboard
@AutoConfiguration
@PropertySource(value = ["classpath:/META-INF/config/koog/deepseek-llm.properties"])
@EnableConfigurationProperties(value = [DeepSeekKoogProperties::class])
class DeepSeekLLMAutoConfiguration(properties: DeepSeekKoogProperties)

Auto-configuration class for integrating with the DeepSeek LLM provider within a Spring Boot application.