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

dev.langchain4j.store.embedding.vespa.QueryResponse Maven / Gradle / Ivy

package dev.langchain4j.store.embedding.vespa;

import java.util.List;

class QueryResponse {

  private RootNode root;

  public RootNode getRoot() {
    return root;
  }

  public void setRoot(RootNode root) {
    this.root = root;
  }

  public static class RootNode {

    private List children;

    public List getChildren() {
      return children;
    }

    public void setChildren(List children) {
      this.children = children;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy