179 """Validate configuration."""
180 api_key_str = self.mistral_api_key.get_secret_value()
181▶ # TODO: handle retries
182 if not self.client:
183 self.client = httpx.Client(
· · ·
190 timeout=self.timeout,
191 )
192▶ # TODO: handle retries and max_concurrency
193 if not self.async_client:
194 self.async_client = httpx.AsyncClient(