Interface LangChain4jMistralAiConfig.MistralAiConfig

Enclosing interface:
LangChain4jMistralAiConfig

public static interface LangChain4jMistralAiConfig.MistralAiConfig
  • Method Details

    • baseUrl

      @WithDefault("https://api.mistral.ai/v1/") String baseUrl()
      Base URL of Mistral API
    • apiKey

      @WithDefault("dummy") String apiKey()
      Mistral API key
    • timeout

      @WithDefault("10s") Duration timeout()
      Timeout for Mistral calls
    • chatModel

      ChatModelConfig chatModel()
      Chat model related settings
    • embeddingModel

      EmbeddingModelConfig embeddingModel()
      Embedding model related settings
    • logRequests

      @ConfigDocDefault("false") @WithDefault("${quarkus.langchain4j.log-requests}") Optional<Boolean> logRequests()
      Whether the Mistral client should log requests
    • logResponses

      @ConfigDocDefault("false") @WithDefault("${quarkus.langchain4j.log-responses}") Optional<Boolean> logResponses()
      Whether the Mistral client should log responses
    • enableIntegration

      @WithDefault("true") Boolean enableIntegration()
      Whether to enable the integration. Defaults to true, which means requests are made to the Mistral AI provider. Set to false to disable all requests.