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

com.alibaba.dashscope.threads.FileCitationAnnotation Maven / Gradle / Ivy

The newest version!
package com.alibaba.dashscope.threads;

import com.google.gson.annotations.SerializedName;
import lombok.Data;
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = true)
public class FileCitationAnnotation extends AnnotationBase {
  private Long index = null;

  @Data
  public class FileCitation {
    @SerializedName("file_id")
    private String fileId;

    private String quote;
  }

  @SerializedName("file_citation")
  private FileCitation fileCitation;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy