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

com.alibaba.dashscope.common.ResponseFormat Maven / Gradle / Ivy

The newest version!
// Copyright (c) Alibaba, Inc. and its affiliates.
package com.alibaba.dashscope.common;

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

@SuperBuilder
@Data
public class ResponseFormat {
  public static final String TEXT = "text";

  public static final String JSON_OBJECT = "json_object";

  @SerializedName("type")
  private Object type;

  public static ResponseFormat from(Object type) {
    return ResponseFormat.builder().type(type).build();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy