com.launchableinc.openai.runs.ToolCallFunction 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.runs;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @description:
* @author: vacuity
* @create: 2023-11-16 22:38
**/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ToolCallFunction {
private String name;
private String arguments;
private String output;
}