mistralAILLMClient

@Bean
@ConditionalOnProperty(prefix = "ai.koog.mistral", name = ["enabled"], havingValue = "true")
fun mistralAILLMClient(): MistralAILLMClient(source)

Creates an MistralAILLMClient bean configured with application properties.

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

Return

An MistralAILLMClient instance configured with the provided settings.