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

io.github.sashirestela.openai.common.function.FunctionCall Maven / Gradle / Ivy

The newest version!
package io.github.sashirestela.openai.common.function;

import io.github.sashirestela.slimvalidator.constraints.Required;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

@AllArgsConstructor
@NoArgsConstructor
@Getter
@Setter
public class FunctionCall {

    @Required
    private String name;

    @Required
    private String arguments;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy