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

com.launchableinc.openai.runs.ToolCall Maven / Gradle / Ivy

The newest version!
package com.launchableinc.openai.runs;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.Map;

/**
 * @description:
 * @author: vacuity
 * @create: 2023-11-16 22:32
 **/


@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class ToolCall {

	private String id;

	private String type;

	@JsonProperty("code_interpreter")
	private ToolCallCodeInterpreter codeInterpreter;

	private Map retrieval;

	private ToolCallFunction function;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy