@@ -34,6 +34,7 @@ with a ``Symfony\AI\Agent\AgentInterface`` and a ``Symfony\AI\Chat\MessageStoreI
3434You can find more advanced usage in combination with an Agent using the store for long-term context:
3535
3636* `External services storage with Cache `_
37+ * `Long-term context with Doctrine Dbal `_
3738* `Current session context storage with HttpFoundation session `_
3839* `Current process context storage with InMemory `_
3940* `Long-term context with Meilisearch `_
@@ -44,6 +45,7 @@ Supported Message stores
4445------------------------
4546
4647* `Cache `_
48+ * `Doctrine Dbal `_
4749* `HttpFoundation session `_
4850* `InMemory `_
4951* `Meilisearch `_
@@ -125,12 +127,14 @@ store and ``bin/console ai:message-store:drop`` to clean up the message store:
125127 $ php bin/console ai:message-store:drop symfonycon
126128
127129 .. _`External services storage with Cache` : https://github.com/symfony/ai/blob/main/examples/chat/persistent-chat-cache.php
130+ .. _`Long-term context with Doctrine Dbal` : https://github.com/symfony/ai/blob/main/examples/chat/persistent-chat-doctrine-dbal.php
128131.. _`Current session context storage with HttpFoundation session` : https://github.com/symfony/ai/blob/main/examples/chat/persistent-chat-session.php
129132.. _`Current process context storage with InMemory` : https://github.com/symfony/ai/blob/main/examples/chat/persistent-chat.php
130133.. _`Long-term context with Meilisearch` : https://github.com/symfony/ai/blob/main/examples/chat/persistent-chat-meilisearch.php
131134.. _`Long-term context with Pogocache` : https://github.com/symfony/ai/blob/main/examples/chat/persistent-chat-pogocache.php
132135.. _`Long-term context with Redis` : https://github.com/symfony/ai/blob/main/examples/chat/persistent-chat-redis.php
133136.. _`Cache` : https://symfony.com/doc/current/components/cache.html
137+ .. _`Doctrine Dbal` : https://www.doctrine-project.org/projects/dbal.html
134138.. _`InMemory` : https://www.php.net/manual/en/language.types.array.php
135139.. _`HttpFoundation session` : https://developers.cloudflare.com/vectorize/
136140.. _`Meilisearch` : https://www.meilisearch.com/
0 commit comments