All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.dashscope.aigc.conversation.ChatMessage Maven / Gradle / Ivy

// Copyright (c) Alibaba, Inc. and its affiliates.
package com.alibaba.dashscope.aigc.conversation;

import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;

@Data
@SuperBuilder
@NoArgsConstructor
public class ChatMessage {

  /** The role, can be `user` and `bot`. */
  String role;

  /** The conversation content. */
  String payload;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy