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

com.launchableinc.openai.completion.chat.ChatFunctionCall Maven / Gradle / Ivy

The newest version!
package com.launchableinc.openai.completion.chat;

import com.fasterxml.jackson.databind.JsonNode;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
public class ChatFunctionCall {

	/**
	 * The name of the function being called
	 */
	String name;

	/**
	 * The arguments of the call produced by the model, represented as a JsonNode for easy
	 * manipulation.
	 */
	JsonNode arguments;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy