AzureAIUsage.java 365 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package com.kwan.springbootkwan.entity.openai;

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

@Data
public class AzureAIUsage {

    @SerializedName("prompt_tokens")
    private int promptTokens;
    @SerializedName("completion_tokens")
    private int completionTokens;
    @SerializedName("total_tokens")
    private int totalTokens;

}