Feat: Users can chat directly without first creating a conversation. #11768 (#11769)

### What problem does this PR solve?

Feat: Users can chat directly without first creating a conversation.
#11768
### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-12-05 17:34:41 +08:00
committed by GitHub
parent 885eb2eab9
commit ea38e12d42
20 changed files with 410 additions and 308 deletions

View File

@ -26,7 +26,7 @@ export const buildMessageListWithUuid = (messages?: Message[]) => {
);
};
export const getConversationId = () => {
export const generateConversationId = () => {
return uuid().replace(/-/g, '');
};