com.theokanning.openai.completion.chat.ChatFunctionCall Maven / Gradle / Ivy
package com.theokanning.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 - 2025 Weber Informatics LLC | Privacy Policy