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

com.alibaba.dashscope.embeddings.MultiModalEmbeddingUsage Maven / Gradle / Ivy

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

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

// "usage":{"image":{"measure":1,"weight":1},
// "total_usage":4,
// "audio":{"measure":1,"weight":2},
// "text":{"measure":1,"weight":1}}
@Data
public class MultiModalEmbeddingUsage {
  @SerializedName("total_usage")
  private Integer totalUsage;

  private MultiModalEmbeddingsUsageInfo image;
  private MultiModalEmbeddingsUsageInfo audio;
  private MultiModalEmbeddingsUsageInfo text;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy