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;
}
}