deepSeekLLMClient

@Bean
@ConditionalOnProperty(prefix = "ai.koog.deepseek", name = ["enabled"], havingValue = "true")
fun deepSeekLLMClient(): DeepSeekLLMClient(source)

Creates a DeepSeekLLMClient bean configured with application properties.

This method initializes a DeepSeekLLMClient using the API key and base URL specified in the application's configuration. It is only executed if the koog.ai.deepseek.api-key property is defined and koog.ai.deepseek.enabled property is set to true in the application configuration.

Return

A DeepSeekLLMClient instance configured with the provided settings.