com.launchableinc.openai.completion.chat.ChatFunctionCall Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Basic java objects for the OpenAI GPT APIs
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;
}