From fba3a0a88cbf3f5422caa102134d03a0f826207d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Thu, 20 Nov 2025 15:42:18 +0100 Subject: [PATCH] [AiBundle] Fix ollama configuration when a custom http_client is set --- src/ai-bundle/src/AiBundle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ai-bundle/src/AiBundle.php b/src/ai-bundle/src/AiBundle.php index 64c5d3a32..61781371f 100644 --- a/src/ai-bundle/src/AiBundle.php +++ b/src/ai-bundle/src/AiBundle.php @@ -575,7 +575,7 @@ private function processPlatformConfig(string $type, array $platform, ContainerB ->setLazy(true) ->setArguments([ $platform['host_url'], - new Reference('http_client'), + new Reference($platform['http_client']), ]); $container->setDefinition('ai.platform.model_catalog.ollama', $catalogDefinition);