AzureAIChatResponse.java 313 字节
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 lombok.Data;

import java.util.List;

@Data
public class AzureAIChatResponse {
    private String id;
    private String object;
    private String created;
    private String model;
    private AzureAIUsage usage;
    private List<AzureAIChoice> choices;
}