From 046df40f246f1b88460cee042902f92027c1f613 Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Mon, 24 Nov 2025 14:35:11 +0100 Subject: [PATCH] Fix Platform component dependency on Agent exceptions Remove incorrect import of RuntimeException from Agent component in MissingModelSupportException. The Platform component should use its own exception hierarchy and not depend on Agent exceptions. --- src/platform/src/Exception/MissingModelSupportException.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/platform/src/Exception/MissingModelSupportException.php b/src/platform/src/Exception/MissingModelSupportException.php index 55efe3fea..51b05f1ca 100644 --- a/src/platform/src/Exception/MissingModelSupportException.php +++ b/src/platform/src/Exception/MissingModelSupportException.php @@ -11,8 +11,6 @@ namespace Symfony\AI\Platform\Exception; -use Symfony\AI\Agent\Exception\RuntimeException; - /** * @author Christopher Hertel */