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

com.microsoft.semantickernel.orchestration.responseformat.JsonObjectResponseFormat Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
// Copyright (c) Microsoft. All rights reserved.
package com.microsoft.semantickernel.orchestration.responseformat;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
 * A response represented in a JSON format.
 */
public class JsonObjectResponseFormat extends ResponseFormat {

    /**
     * Used by Jackson deserialization to create a new instance
     * of the {@link JsonObjectResponseFormat} class.
     */
    @JsonCreator
    public JsonObjectResponseFormat() {
        super(Type.JSON_OBJECT);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy