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

com.alibaba.dashscope.aigc.codegeneration.models.OtherRoleContentMessageParam Maven / Gradle / Ivy

The newest version!
package com.alibaba.dashscope.aigc.codegeneration.models;

import lombok.Data;

@Data
public class OtherRoleContentMessageParam extends MessageParamBase {

  private String content;

  public OtherRoleContentMessageParam(String role, String content) {
    super(role);
    this.content = content;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy