Group chat feature with ChatGPT and members

Can there be a feature where groups can be created with other members and use chatGPT ? This could be more collaborative for the specific interest groups to chat

2 Likes

I’m also interested in group chat case

I’ve also noticed that message type in openai-node npm package implies it supports (or will support) group conversations: openai-node/api.ts at master · openai/openai-node · GitHub

interface ChatCompletionRequestMessage {
    /**
     * The role of the author of this message.
     * @type {string}
     * @memberof ChatCompletionRequestMessage
     */
    'role': ChatCompletionRequestMessageRoleEnum;
    /**
     * The contents of the message
     * @type {string}
     * @memberof ChatCompletionRequestMessage
     */
    'content': string;
    /**
     * The name of the user in a multi-user chat
     * @type {string}
     * @memberof ChatCompletionRequestMessage
     */
    'name'?: string;
}

“The name of the user in a multi-user chat”

Yes please! That would be amazing for brainstorming :slight_smile: