ee.carlrobert.llm.client.codegpt.request.chat.AdditionalRequestContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of llm-client Show documentation
Show all versions of llm-client Show documentation
Java http client wrapped around the OkHttp3 library
package ee.carlrobert.llm.client.codegpt.request.chat;
import java.util.ArrayList;
import java.util.List;
public class AdditionalRequestContext {
private final List files;
public AdditionalRequestContext(List files) {
this.files = files;
}
public List getFiles() {
return new ArrayList<>(files);
}
}