googleLLMClient

@Bean
@ConditionalOnProperty(prefix = "ai.koog.google", name = ["enabled"], havingValue = "true")
fun googleLLMClient(): GoogleLLMClient(source)

Creates a GoogleLLMClient bean configured with application properties.

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

Return

A GoogleLLMClient instance configured with the provided settings.