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

dev.langchain4j.model.ollama.FunctionCall Maven / Gradle / Ivy

There is a newer version: 0.36.0
Show newest version
package dev.langchain4j.model.ollama;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.PropertyNamingStrategies;
import com.fasterxml.jackson.databind.annotation.JsonNaming;

import java.util.Map;

import static com.fasterxml.jackson.annotation.JsonInclude.Include.NON_NULL;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(NON_NULL)
@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)
class FunctionCall {

    private String name;
    private Map arguments;

    FunctionCall() {
    }

    FunctionCall(String name, Map arguments) {
        this.name = name;
        this.arguments = arguments;
    }

    static Builder builder() {
        return new Builder();
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Map getArguments() {
        return arguments;
    }

    public void setArguments(Map arguments) {
        this.arguments = arguments;
    }

    static class Builder {

        private String name;
        private Map arguments;

        Builder name(String name) {
            this.name = name;
            return this;
        }

        Builder arguments(Map arguments) {
            this.arguments = arguments;
            return this;
        }

        FunctionCall build() {
            return new FunctionCall(name, arguments);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy