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

cn.homj.autogen4j.support.openai.chat.tool.FunctionCall Maven / Gradle / Ivy

The newest version!
package cn.homj.autogen4j.support.openai.chat.tool;

import lombok.Data;
import lombok.experimental.Accessors;

/**
 * @author jiehong.jh
 * @date 2023/11/27
 */
@Data
@Accessors(chain = true)
public class FunctionCall {
    /**
     * The name of the function to call.
     */
    private String name;
    /**
     * The arguments to call the function with, as generated by the model in JSON format.
     */
    private String arguments;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy