You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR was merged into the main branch.
Discussion
----------
[AI Bundle][Chat] Add lifecycle commands
| Q | A
| ------------- | ---
| Bug fix? | no
| New feature? | yes
| Docs? | yes
| Issues | Fix none
| License | MIT
Hi 👋🏻
This PR aims to introduce commands to handle message store lifecycle, it also introduce the configuration for message stores.
Commits
-------
0185201 feat(core): commands added for message store + configuration
Copy file name to clipboardExpand all lines: docs/components/chat.rst
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,3 +84,25 @@ This leads to a store implementing two methods::
84
84
// Implementation to drop the store (and related messages)
85
85
}
86
86
}
87
+
88
+
Commands
89
+
--------
90
+
91
+
While using the `Chat` component in your Symfony application along with the ``AiBundle``,
92
+
you can use the ``bin/console ai:message-store:setup`` command to initialize the message store and ``bin/console ai:message-store:drop`` to clean up the message store:
0 commit comments