Skip to content

Commit 3c2c125

Browse files
committed
bug #1079 [Chat] Fix bridge component dependencies (OskarStark)
This PR was merged into the main branch. Discussion ---------- [Chat] Fix bridge component dependencies | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | -- | License | MIT Use Chat RuntimeException instead of Agent RuntimeException in Cache\Store and HttpFoundation\SessionStore. Commits ------- e9e520d Fix Chat bridge component dependencies
2 parents f61f648 + e9e520d commit 3c2c125

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/chat/src/Bridge/Cache/Store.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\AI\Chat\Bridge\Cache;
1313

1414
use Psr\Cache\CacheItemPoolInterface;
15-
use Symfony\AI\Agent\Exception\RuntimeException;
15+
use Symfony\AI\Chat\Exception\RuntimeException;
1616
use Symfony\AI\Chat\ManagedStoreInterface;
1717
use Symfony\AI\Chat\MessageStoreInterface;
1818
use Symfony\AI\Platform\Message\MessageBag;

src/chat/src/Bridge/HttpFoundation/SessionStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\AI\Chat\Bridge\HttpFoundation;
1313

14-
use Symfony\AI\Agent\Exception\RuntimeException;
14+
use Symfony\AI\Chat\Exception\RuntimeException;
1515
use Symfony\AI\Chat\ManagedStoreInterface;
1616
use Symfony\AI\Chat\MessageStoreInterface;
1717
use Symfony\AI\Platform\Message\MessageBag;

0 commit comments

Comments
 (0)