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

com.alibaba.dashscope.aigc.multimodalconversation.MultiModalConversationMessage Maven / Gradle / Ivy

The newest version!
// Copyright (c) Alibaba, Inc. and its affiliates.
package com.alibaba.dashscope.aigc.multimodalconversation;

import java.util.List;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.experimental.SuperBuilder;

@Data
@SuperBuilder
@NoArgsConstructor
@Deprecated
public class MultiModalConversationMessage {
  /** @Deprecated use MultiModalMessage instead. */

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

  /** The conversation content. */
  List content;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy